blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bd5aece6fd26943b44f25aefd8dd465ab7187e7c | af278a0a4521a1b7373d27cfc81f26c1c41d8b44 | /framework/common/QEScaling.h | 45b1f31ed66d0dbb23601ba43bebddc039d33841 | [] | no_license | TDControlsGroup/CLARA_RGA | 0cb90a130c5d64d75a263ae517b5f43f4ff6d06f | 31c92e97e3037f60f7bd1551979ca1771c3ee437 | refs/heads/master | 2021-01-13T05:20:24.894596 | 2017-03-27T16:42:42 | 2017-03-27T16:42:42 | 81,346,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,800 | h | QEScaling.h | /* QEScaling.h
*
* This file is part of the EPICS QT Framework, initially developed at the Australian Synchrotron.
*
* The EPICS QT Framework 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.
*
* The EPICS QT Framework 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 the EPICS QT Framework. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (c) 2013 Australian Synchrotron
*
* Author:
* Andrew Starritt
* Contact details:
* andrew.starritt@synchrotron.org.au
*
*/
#ifndef QE_SCALING_H
#define QE_SCALING_H
#include <QObject>
#include <QPoint>
#include <QRect>
#include <QSize>
#include <QEPluginLibrary_global.h>
/// The scaling is defined using a rational number specifed by two integers (m, d).
/// The first (m) integer is the multiplier and the second (d) integer is the divisor.
/// For example, if m = 4 and d = 5, then this specifies an 80%; and if m = 5 and d = 4,
/// this specifies that a 125% scaling is required.
///
/// Scaling is deemed to be application wide, hence all scaling data (and functions)
/// are static.
///
// Note: This was formerly part of QECommon.
//
class QEPLUGINLIBRARYSHARED_EXPORT QEScaling {
public:
/// Set currently applied scaling.
/// Both values default to 1, which is a null scaling.
/// Only valid scaling values (m > 0, d > 0) are accepted.
///
static void setScaling (const int m, const int d);
/// Extract currently applied scaling - allows widgets to perform widget class
/// specific scaling functionality.
///
static void getScaling (int& m, int& d);
/// Adjust the geometry and font scaling of the widget and all child widgets
/// by the defined scaling parameters (m, d). Unless m and d different, no scaling occurs.
/// The function tree walks the hiearchy of widgets paranted by the specified widget.
/// This function is idempotent.
//
static void applyToWidget (QWidget* widget);
/// Conveniance functions for widget specific 'scaleBy' functions.
///
/// Scales a single value. Note: all other scaling functions take a object by reference
/// and modify that object. Only this function returns a scaled value.
///
static inline int scale (const int v) { return (v * QEScaling::currentScaleM) /
QEScaling::currentScaleD; }
/// Scales a point.
///
static void applyToPoint (QPoint& point);
private:
static int currentScaleM;
static int currentScaleD;
/// Tree walks the QWidget hierarchy in order to apply supplied scaling finction.
///
typedef void (*ScalingFunction) (QWidget* widget);
static void widgetTreeWalk (QWidget* widget, ScalingFunction sf);
/// Captures scaling info as property, if not already done so.
///
static void widgetCapture (QWidget* widget);
/// Scales a single widget
/// Applies some special processing above and beyond size, min size, max size and font
/// depending on the type of widget. Also if is a QEWidget then calls QEWidget's scaleBy
/// method.
///
static void widgetScale (QWidget* widget);
/// Static functions create an instance of this object. This object use to
/// hold base line widget sizing data. The data is encoded and store in a
/// property associated with the widget.
///
private:
int firstMember; // used in conjection with lastMember to define size.
explicit QEScaling (QWidget* widget);
~QEScaling ();
void extractFromWidget (const QWidget* widget);
bool decodeProperty (const QVariant& property);
QVariant encodeProperty () const;
bool isDefined;
// basic geomertry and size constraints.
//
QRect geometry;
QSize minimumSize;
QSize maximumSize;
// Font size inofrmation.
//
int pointSize;
int pixelSize;
// Layouts
//
bool layoutIsDefined;
int layoutMarginLeft;
int layoutMarginTop;
int layoutMarginRight;
int layoutMarginBottom;
int layoutSpacing;
// Specials - for particular widget types.
//
int labelIndent;
int resizeFrameAllowedMin;
int resizeFrameAllowedMax;
int tableDefaultHorizontalSectionSize;
int tableDefaultVerticalSectionSize;
int treeViewIndentation;
private:
int lastMember;
};
# endif // QE_SCALING_H
|
e03bcf915cfae876268d25f2adb68c5d59370910 | 9935f02e0ba72a6f8d66016a93a98e7a1eb4aa47 | /src/TownCenter.h | eadf0f07f1aa64a7bf5cb1b4a10dd9c9932ed161 | [] | no_license | MegaR/ARiseofWar | 373cd3136c29e436af75ddfc41d4cce62e10b0c0 | ed5d49fef9e9f2ef35f738faaea71a1409be82e3 | refs/heads/master | 2021-04-24T17:50:47.852788 | 2014-01-29T12:57:43 | 2014-01-29T12:57:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 456 | h | TownCenter.h | #pragma once
#include "building.h"
#include "button.h"
#define defaultincome -5,-5,-5,-5
class TownCenter :
public Building
{
public:
TownCenter(int tileX, int tileY, int player, Scene* scene);
~TownCenter(void);
void update();
void createUnit();
void addtoqueue();
void selected();
void deselected();
void startTurn();
bool enemyTurn();
bool allowBuild();
int buildturn;
IGUIStaticText* txt;
IGUIImage* GUI;
Button* peasantButton;
};
|
7095738358eb4c8f7a8f5173e16d13a891e77e4d | e48a40b19ebe1ca64d877885f9f19e9a78b192c3 | /Utilities/tkcon/vtkKWTkconInit.cxx | 8e437a608e4d0b99c4f632f475c6c5cce8c1edd7 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | SIVICLab/KWWidgets | dbe2034caf065c30eafed92d73e9df9ff60a6565 | f5a3e16063db773eaf79736ec31314d392fa934d | refs/heads/master | 2021-01-18T20:08:02.372034 | 2017-04-01T20:57:19 | 2017-04-01T20:57:19 | 86,941,196 | 1 | 0 | null | 2017-04-01T20:34:24 | 2017-04-01T20:34:23 | null | UTF-8 | C++ | false | false | 1,987 | cxx | vtkKWTkconInit.cxx | /*=========================================================================
Module: $RCSfile: vtkKWTkconInit.cxx,v $
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkKWTkconInit.h"
#include "vtkObjectFactory.h"
#include "vtkKWTkUtilities.h"
#include "vtkTk.h"
#include "Utilities/tkcon/vtkKWTkconTclLibrary.h"
//----------------------------------------------------------------------------
vtkStandardNewMacro( vtkKWTkconInit );
//vtkCxxRevisionMacro(vtkKWTkconInit, "$Revision: 1.3 $");
int vtkKWTkconInit::Initialized = 0;
//----------------------------------------------------------------------------
void vtkKWTkconInit::Initialize(Tcl_Interp* interp)
{
if (vtkKWTkconInit::Initialized)
{
return;
}
if (!interp)
{
vtkGenericWarningMacro(
"An interpreter is needed to initialize the tkcon library.");
return;
}
vtkKWTkconInit::Initialized = 1;
// Evaluate the library
unsigned char *buffer =
new unsigned char [file_tkcon_tcl_length];
unsigned int i;
unsigned char *cur_pos = buffer;
for (i = 0; i < file_tkcon_tcl_nb_sections; i++)
{
size_t len = strlen((const char*)file_tkcon_tcl_sections[i]);
memcpy(cur_pos, file_tkcon_tcl_sections[i], len);
cur_pos += len;
}
vtkKWTkUtilities::EvaluateEncodedString(
interp,
buffer,
file_tkcon_tcl_length,
file_tkcon_tcl_decoded_length);
delete [] buffer;
}
//----------------------------------------------------------------------------
void vtkKWTkconInit::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
|
d7d9c01d60f03887e81a5e1d2d08e13a0c01c710 | 02c903559fa3fb525b12572e2c63896d50f7e3d0 | /protobuf_defs.pb.cc | b8aa20d7643248ac79dfaca6f8ebd609692b0280 | [] | no_license | fkdbyEE/matlab-bridge | 50842b9e26bae35024785e232cb39fdbf74e9764 | 8fac80115e832275c9e2ddd5d5765366bd4f28c4 | refs/heads/master | 2020-05-17T04:20:36.356491 | 2015-02-28T01:46:16 | 2015-02-28T01:46:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 165,082 | cc | protobuf_defs.pb.cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
#define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
#include "algorithms/matlab_bridge/protobuf_defs.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/once.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/wire_format_lite_inl.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
namespace {
const ::google::protobuf::Descriptor* MatlabBridgeMsg_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
MatlabBridgeMsg_reflection_ = NULL;
const ::google::protobuf::Descriptor* Model_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Model_reflection_ = NULL;
const ::google::protobuf::Descriptor* ServiceDefinition_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
ServiceDefinition_reflection_ = NULL;
const ::google::protobuf::Descriptor* Result_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Result_reflection_ = NULL;
const ::google::protobuf::Descriptor* ResultList_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
ResultList_reflection_ = NULL;
const ::google::protobuf::Descriptor* ResultSet_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
ResultSet_reflection_ = NULL;
const ::google::protobuf::Descriptor* DirectoryPath_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
DirectoryPath_reflection_ = NULL;
const ::google::protobuf::Descriptor* FilePath_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
FilePath_reflection_ = NULL;
const ::google::protobuf::Descriptor* Substrate_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Substrate_reflection_ = NULL;
const ::google::protobuf::Descriptor* Semantics_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Semantics_reflection_ = NULL;
const ::google::protobuf::Descriptor* LabelProperties_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
LabelProperties_reflection_ = NULL;
const ::google::protobuf::Descriptor* Label_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Label_reflection_ = NULL;
const ::google::protobuf::Descriptor* Labelable_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Labelable_reflection_ = NULL;
const ::google::protobuf::Descriptor* LabelableList_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
LabelableList_reflection_ = NULL;
const ::google::protobuf::Descriptor* Purpose_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
Purpose_reflection_ = NULL;
const ::google::protobuf::EnumDescriptor* Purpose_PurposeType_descriptor_ = NULL;
const ::google::protobuf::Descriptor* PurposedLabelableSeq_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
PurposedLabelableSeq_reflection_ = NULL;
const ::google::protobuf::Descriptor* PurposedListSequence_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
PurposedListSequence_reflection_ = NULL;
const ::google::protobuf::Descriptor* RunSet_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
RunSet_reflection_ = NULL;
} // namespace
void protobuf_AssignDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto() {
protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto();
const ::google::protobuf::FileDescriptor* file =
::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
"algorithms/matlab_bridge/protobuf_defs.proto");
GOOGLE_CHECK(file != NULL);
MatlabBridgeMsg_descriptor_ = file->message_type(0);
static const int MatlabBridgeMsg_offsets_[4] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MatlabBridgeMsg, run_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MatlabBridgeMsg, servicedef_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MatlabBridgeMsg, res_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MatlabBridgeMsg, model_),
};
MatlabBridgeMsg_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
MatlabBridgeMsg_descriptor_,
MatlabBridgeMsg::default_instance_,
MatlabBridgeMsg_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MatlabBridgeMsg, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MatlabBridgeMsg, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(MatlabBridgeMsg));
Model_descriptor_ = file->message_type(1);
static const int Model_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Model, mpath_),
};
Model_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Model_descriptor_,
Model::default_instance_,
Model_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Model, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Model, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Model));
ServiceDefinition_descriptor_ = file->message_type(2);
static const int ServiceDefinition_offsets_[2] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceDefinition, key_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceDefinition, value_),
};
ServiceDefinition_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
ServiceDefinition_descriptor_,
ServiceDefinition::default_instance_,
ServiceDefinition_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceDefinition, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceDefinition, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(ServiceDefinition));
Result_descriptor_ = file->message_type(3);
static const int Result_offsets_[2] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Result, original_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Result, foundlabels_),
};
Result_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Result_descriptor_,
Result::default_instance_,
Result_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Result, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Result, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Result));
ResultList_descriptor_ = file->message_type(4);
static const int ResultList_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ResultList, rslt_),
};
ResultList_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
ResultList_descriptor_,
ResultList::default_instance_,
ResultList_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ResultList, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ResultList, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(ResultList));
ResultSet_descriptor_ = file->message_type(5);
static const int ResultSet_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ResultSet, results_),
};
ResultSet_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
ResultSet_descriptor_,
ResultSet::default_instance_,
ResultSet_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ResultSet, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ResultSet, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(ResultSet));
DirectoryPath_descriptor_ = file->message_type(6);
static const int DirectoryPath_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DirectoryPath, relativepath_),
};
DirectoryPath_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
DirectoryPath_descriptor_,
DirectoryPath::default_instance_,
DirectoryPath_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DirectoryPath, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DirectoryPath, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(DirectoryPath));
FilePath_descriptor_ = file->message_type(7);
static const int FilePath_offsets_[2] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FilePath, directory_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FilePath, filename_),
};
FilePath_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
FilePath_descriptor_,
FilePath::default_instance_,
FilePath_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FilePath, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FilePath, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(FilePath));
Substrate_descriptor_ = file->message_type(8);
static const int Substrate_offsets_[5] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, isimage_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, isvideo_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, path_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, width_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, height_),
};
Substrate_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Substrate_descriptor_,
Substrate::default_instance_,
Substrate_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Substrate, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Substrate));
Semantics_descriptor_ = file->message_type(9);
static const int Semantics_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Semantics, url_),
};
Semantics_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Semantics_descriptor_,
Semantics::default_instance_,
Semantics_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Semantics, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Semantics, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Semantics));
LabelProperties_descriptor_ = file->message_type(10);
static const int LabelProperties_offsets_[2] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelProperties, key_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelProperties, value_),
};
LabelProperties_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
LabelProperties_descriptor_,
LabelProperties::default_instance_,
LabelProperties_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelProperties, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelProperties, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(LabelProperties));
Label_descriptor_ = file->message_type(11);
static const int Label_offsets_[4] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Label, haslabel_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Label, name_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Label, properties_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Label, semantix_),
};
Label_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Label_descriptor_,
Label::default_instance_,
Label_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Label, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Label, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Label));
Labelable_descriptor_ = file->message_type(12);
static const int Labelable_offsets_[3] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Labelable, confidence_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Labelable, lab_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Labelable, sub_),
};
Labelable_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Labelable_descriptor_,
Labelable::default_instance_,
Labelable_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Labelable, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Labelable, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Labelable));
LabelableList_descriptor_ = file->message_type(13);
static const int LabelableList_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelableList, labelable_),
};
LabelableList_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
LabelableList_descriptor_,
LabelableList::default_instance_,
LabelableList_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelableList, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(LabelableList, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(LabelableList));
Purpose_descriptor_ = file->message_type(14);
static const int Purpose_offsets_[2] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Purpose, ptype_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Purpose, classid_),
};
Purpose_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
Purpose_descriptor_,
Purpose::default_instance_,
Purpose_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Purpose, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Purpose, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(Purpose));
Purpose_PurposeType_descriptor_ = Purpose_descriptor_->enum_type(0);
PurposedLabelableSeq_descriptor_ = file->message_type(15);
static const int PurposedLabelableSeq_offsets_[2] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedLabelableSeq, pur_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedLabelableSeq, labeledartifacts_),
};
PurposedLabelableSeq_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
PurposedLabelableSeq_descriptor_,
PurposedLabelableSeq::default_instance_,
PurposedLabelableSeq_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedLabelableSeq, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedLabelableSeq, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(PurposedLabelableSeq));
PurposedListSequence_descriptor_ = file->message_type(16);
static const int PurposedListSequence_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedListSequence, purlist_),
};
PurposedListSequence_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
PurposedListSequence_descriptor_,
PurposedListSequence::default_instance_,
PurposedListSequence_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedListSequence, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(PurposedListSequence, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(PurposedListSequence));
RunSet_descriptor_ = file->message_type(17);
static const int RunSet_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RunSet, purposedlists_),
};
RunSet_reflection_ =
new ::google::protobuf::internal::GeneratedMessageReflection(
RunSet_descriptor_,
RunSet::default_instance_,
RunSet_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RunSet, _has_bits_[0]),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RunSet, _unknown_fields_),
-1,
::google::protobuf::DescriptorPool::generated_pool(),
::google::protobuf::MessageFactory::generated_factory(),
sizeof(RunSet));
}
namespace {
GOOGLE_PROTOBUF_DECLARE_ONCE(protobuf_AssignDescriptors_once_);
inline void protobuf_AssignDescriptorsOnce() {
::google::protobuf::GoogleOnceInit(&protobuf_AssignDescriptors_once_,
&protobuf_AssignDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto);
}
void protobuf_RegisterTypes(const ::std::string&) {
protobuf_AssignDescriptorsOnce();
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
MatlabBridgeMsg_descriptor_, &MatlabBridgeMsg::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Model_descriptor_, &Model::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
ServiceDefinition_descriptor_, &ServiceDefinition::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Result_descriptor_, &Result::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
ResultList_descriptor_, &ResultList::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
ResultSet_descriptor_, &ResultSet::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
DirectoryPath_descriptor_, &DirectoryPath::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
FilePath_descriptor_, &FilePath::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Substrate_descriptor_, &Substrate::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Semantics_descriptor_, &Semantics::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
LabelProperties_descriptor_, &LabelProperties::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Label_descriptor_, &Label::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Labelable_descriptor_, &Labelable::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
LabelableList_descriptor_, &LabelableList::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
Purpose_descriptor_, &Purpose::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
PurposedLabelableSeq_descriptor_, &PurposedLabelableSeq::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
PurposedListSequence_descriptor_, &PurposedListSequence::default_instance());
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
RunSet_descriptor_, &RunSet::default_instance());
}
} // namespace
void protobuf_ShutdownFile_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto() {
delete MatlabBridgeMsg::default_instance_;
delete MatlabBridgeMsg_reflection_;
delete Model::default_instance_;
delete Model_reflection_;
delete ServiceDefinition::default_instance_;
delete ServiceDefinition_reflection_;
delete Result::default_instance_;
delete Result_reflection_;
delete ResultList::default_instance_;
delete ResultList_reflection_;
delete ResultSet::default_instance_;
delete ResultSet_reflection_;
delete DirectoryPath::default_instance_;
delete DirectoryPath_reflection_;
delete FilePath::default_instance_;
delete FilePath_reflection_;
delete Substrate::default_instance_;
delete Substrate_reflection_;
delete Semantics::default_instance_;
delete Semantics_reflection_;
delete LabelProperties::default_instance_;
delete LabelProperties_reflection_;
delete Label::default_instance_;
delete Label_reflection_;
delete Labelable::default_instance_;
delete Labelable_reflection_;
delete LabelableList::default_instance_;
delete LabelableList_reflection_;
delete Purpose::default_instance_;
delete Purpose_reflection_;
delete PurposedLabelableSeq::default_instance_;
delete PurposedLabelableSeq_reflection_;
delete PurposedListSequence::default_instance_;
delete PurposedListSequence_reflection_;
delete RunSet::default_instance_;
delete RunSet_reflection_;
}
void protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto() {
static bool already_here = false;
if (already_here) return;
already_here = true;
GOOGLE_PROTOBUF_VERIFY_VERSION;
::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
"\n,algorithms/matlab_bridge/protobuf_defs"
".proto\"\177\n\017MatlabBridgeMsg\022\024\n\003run\030\001 \001(\0132\007"
".RunSet\022&\n\nserviceDef\030\002 \003(\0132\022.ServiceDef"
"inition\022\027\n\003res\030\003 \001(\0132\n.ResultSet\022\025\n\005mode"
"l\030\004 \001(\0132\006.Model\"!\n\005Model\022\030\n\005mPath\030\001 \001(\0132"
"\t.FilePath\"3\n\021ServiceDefinition\022\r\n\003key\030\001"
" \001(\t:\000\022\017\n\005value\030\002 \001(\t:\000\"K\n\006Result\022\034\n\010ori"
"ginal\030\001 \001(\0132\n.Labelable\022#\n\013foundLabels\030\002"
" \001(\0132\016.LabelableList\"#\n\nResultList\022\025\n\004rs"
"lt\030\001 \003(\0132\007.Result\")\n\tResultSet\022\034\n\007result"
"s\030\001 \001(\0132\013.ResultList\"\'\n\rDirectoryPath\022\026\n"
"\014relativePath\030\001 \001(\t:\000\"A\n\010FilePath\022!\n\tdir"
"ectory\030\001 \001(\0132\016.DirectoryPath\022\022\n\010filename"
"\030\002 \001(\t:\000\"x\n\tSubstrate\022\025\n\007isImage\030\001 \001(\010:\004"
"true\022\026\n\007isVideo\030\002 \001(\010:\005false\022\027\n\004path\030\003 \001"
"(\0132\t.FilePath\022\020\n\005width\030\004 \001(\005:\0010\022\021\n\006heigh"
"t\030\005 \001(\005:\0010\"\032\n\tSemantics\022\r\n\003url\030\001 \001(\t:\000\"1"
"\n\017LabelProperties\022\r\n\003key\030\001 \001(\t:\000\022\017\n\005valu"
"e\030\002 \001(\t:\000\"t\n\005Label\022\027\n\010hasLabel\030\001 \001(\010:\005fa"
"lse\022\016\n\004name\030\002 \001(\t:\000\022$\n\nproperties\030\003 \001(\0132"
"\020.LabelProperties\022\034\n\010semantix\030\004 \001(\0132\n.Se"
"mantics\"P\n\tLabelable\022\025\n\nconfidence\030\001 \001(\002"
":\0010\022\023\n\003lab\030\002 \001(\0132\006.Label\022\027\n\003sub\030\003 \001(\0132\n."
"Substrate\".\n\rLabelableList\022\035\n\tlabelable\030"
"\001 \003(\0132\n.Labelable\"\242\001\n\007Purpose\022/\n\005ptype\030\001"
" \001(\0162\024.Purpose.PurposeType:\nUNPURPOSED\022\022"
"\n\007classID\030\002 \001(\005:\0010\"R\n\013PurposeType\022\016\n\nUNP"
"URPOSED\020\000\022\014\n\010POSITIVE\020\001\022\014\n\010NEGATIVE\020\002\022\016\n"
"\nMULTICLASS\020\003\022\007\n\003ANY\020\004\"W\n\024PurposedLabela"
"bleSeq\022\025\n\003pur\030\001 \001(\0132\010.Purpose\022(\n\020labeled"
"Artifacts\030\002 \001(\0132\016.LabelableList\">\n\024Purpo"
"sedListSequence\022&\n\007purlist\030\001 \003(\0132\025.Purpo"
"sedLabelableSeq\"6\n\006RunSet\022,\n\rpurposedLis"
"ts\030\001 \001(\0132\025.PurposedListSequence", 1351);
::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
"algorithms/matlab_bridge/protobuf_defs.proto", &protobuf_RegisterTypes);
MatlabBridgeMsg::default_instance_ = new MatlabBridgeMsg();
Model::default_instance_ = new Model();
ServiceDefinition::default_instance_ = new ServiceDefinition();
Result::default_instance_ = new Result();
ResultList::default_instance_ = new ResultList();
ResultSet::default_instance_ = new ResultSet();
DirectoryPath::default_instance_ = new DirectoryPath();
FilePath::default_instance_ = new FilePath();
Substrate::default_instance_ = new Substrate();
Semantics::default_instance_ = new Semantics();
LabelProperties::default_instance_ = new LabelProperties();
Label::default_instance_ = new Label();
Labelable::default_instance_ = new Labelable();
LabelableList::default_instance_ = new LabelableList();
Purpose::default_instance_ = new Purpose();
PurposedLabelableSeq::default_instance_ = new PurposedLabelableSeq();
PurposedListSequence::default_instance_ = new PurposedListSequence();
RunSet::default_instance_ = new RunSet();
MatlabBridgeMsg::default_instance_->InitAsDefaultInstance();
Model::default_instance_->InitAsDefaultInstance();
ServiceDefinition::default_instance_->InitAsDefaultInstance();
Result::default_instance_->InitAsDefaultInstance();
ResultList::default_instance_->InitAsDefaultInstance();
ResultSet::default_instance_->InitAsDefaultInstance();
DirectoryPath::default_instance_->InitAsDefaultInstance();
FilePath::default_instance_->InitAsDefaultInstance();
Substrate::default_instance_->InitAsDefaultInstance();
Semantics::default_instance_->InitAsDefaultInstance();
LabelProperties::default_instance_->InitAsDefaultInstance();
Label::default_instance_->InitAsDefaultInstance();
Labelable::default_instance_->InitAsDefaultInstance();
LabelableList::default_instance_->InitAsDefaultInstance();
Purpose::default_instance_->InitAsDefaultInstance();
PurposedLabelableSeq::default_instance_->InitAsDefaultInstance();
PurposedListSequence::default_instance_->InitAsDefaultInstance();
RunSet::default_instance_->InitAsDefaultInstance();
::google::protobuf::internal::OnShutdown(&protobuf_ShutdownFile_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto);
}
// Force AddDescriptors() to be called at static initialization time.
struct StaticDescriptorInitializer_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto {
StaticDescriptorInitializer_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto() {
protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto();
}
} static_descriptor_initializer_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto_;
// ===================================================================
#ifndef _MSC_VER
const int MatlabBridgeMsg::kRunFieldNumber;
const int MatlabBridgeMsg::kServiceDefFieldNumber;
const int MatlabBridgeMsg::kResFieldNumber;
const int MatlabBridgeMsg::kModelFieldNumber;
#endif // !_MSC_VER
MatlabBridgeMsg::MatlabBridgeMsg()
: ::google::protobuf::Message() {
SharedCtor();
}
void MatlabBridgeMsg::InitAsDefaultInstance() {
run_ = const_cast< ::RunSet*>(&::RunSet::default_instance());
res_ = const_cast< ::ResultSet*>(&::ResultSet::default_instance());
model_ = const_cast< ::Model*>(&::Model::default_instance());
}
MatlabBridgeMsg::MatlabBridgeMsg(const MatlabBridgeMsg& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void MatlabBridgeMsg::SharedCtor() {
_cached_size_ = 0;
run_ = NULL;
res_ = NULL;
model_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
MatlabBridgeMsg::~MatlabBridgeMsg() {
SharedDtor();
}
void MatlabBridgeMsg::SharedDtor() {
if (this != default_instance_) {
delete run_;
delete res_;
delete model_;
}
}
void MatlabBridgeMsg::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* MatlabBridgeMsg::descriptor() {
protobuf_AssignDescriptorsOnce();
return MatlabBridgeMsg_descriptor_;
}
const MatlabBridgeMsg& MatlabBridgeMsg::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
MatlabBridgeMsg* MatlabBridgeMsg::default_instance_ = NULL;
MatlabBridgeMsg* MatlabBridgeMsg::New() const {
return new MatlabBridgeMsg;
}
void MatlabBridgeMsg::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_run()) {
if (run_ != NULL) run_->::RunSet::Clear();
}
if (has_res()) {
if (res_ != NULL) res_->::ResultSet::Clear();
}
if (has_model()) {
if (model_ != NULL) model_->::Model::Clear();
}
}
servicedef_.Clear();
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool MatlabBridgeMsg::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .RunSet run = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_run()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_serviceDef;
break;
}
// repeated .ServiceDefinition serviceDef = 2;
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_serviceDef:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, add_servicedef()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_serviceDef;
if (input->ExpectTag(26)) goto parse_res;
break;
}
// optional .ResultSet res = 3;
case 3: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_res:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_res()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(34)) goto parse_model;
break;
}
// optional .Model model = 4;
case 4: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_model:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_model()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void MatlabBridgeMsg::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .RunSet run = 1;
if (has_run()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->run(), output);
}
// repeated .ServiceDefinition serviceDef = 2;
for (int i = 0; i < this->servicedef_size(); i++) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
2, this->servicedef(i), output);
}
// optional .ResultSet res = 3;
if (has_res()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
3, this->res(), output);
}
// optional .Model model = 4;
if (has_model()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
4, this->model(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* MatlabBridgeMsg::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .RunSet run = 1;
if (has_run()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->run(), target);
}
// repeated .ServiceDefinition serviceDef = 2;
for (int i = 0; i < this->servicedef_size(); i++) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
2, this->servicedef(i), target);
}
// optional .ResultSet res = 3;
if (has_res()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
3, this->res(), target);
}
// optional .Model model = 4;
if (has_model()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
4, this->model(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int MatlabBridgeMsg::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .RunSet run = 1;
if (has_run()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->run());
}
// optional .ResultSet res = 3;
if (has_res()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->res());
}
// optional .Model model = 4;
if (has_model()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->model());
}
}
// repeated .ServiceDefinition serviceDef = 2;
total_size += 1 * this->servicedef_size();
for (int i = 0; i < this->servicedef_size(); i++) {
total_size +=
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->servicedef(i));
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void MatlabBridgeMsg::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const MatlabBridgeMsg* source =
::google::protobuf::internal::dynamic_cast_if_available<const MatlabBridgeMsg*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void MatlabBridgeMsg::MergeFrom(const MatlabBridgeMsg& from) {
GOOGLE_CHECK_NE(&from, this);
servicedef_.MergeFrom(from.servicedef_);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_run()) {
mutable_run()->::RunSet::MergeFrom(from.run());
}
if (from.has_res()) {
mutable_res()->::ResultSet::MergeFrom(from.res());
}
if (from.has_model()) {
mutable_model()->::Model::MergeFrom(from.model());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void MatlabBridgeMsg::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void MatlabBridgeMsg::CopyFrom(const MatlabBridgeMsg& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool MatlabBridgeMsg::IsInitialized() const {
return true;
}
void MatlabBridgeMsg::Swap(MatlabBridgeMsg* other) {
if (other != this) {
std::swap(run_, other->run_);
servicedef_.Swap(&other->servicedef_);
std::swap(res_, other->res_);
std::swap(model_, other->model_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata MatlabBridgeMsg::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = MatlabBridgeMsg_descriptor_;
metadata.reflection = MatlabBridgeMsg_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int Model::kMPathFieldNumber;
#endif // !_MSC_VER
Model::Model()
: ::google::protobuf::Message() {
SharedCtor();
}
void Model::InitAsDefaultInstance() {
mpath_ = const_cast< ::FilePath*>(&::FilePath::default_instance());
}
Model::Model(const Model& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Model::SharedCtor() {
_cached_size_ = 0;
mpath_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Model::~Model() {
SharedDtor();
}
void Model::SharedDtor() {
if (this != default_instance_) {
delete mpath_;
}
}
void Model::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Model::descriptor() {
protobuf_AssignDescriptorsOnce();
return Model_descriptor_;
}
const Model& Model::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Model* Model::default_instance_ = NULL;
Model* Model::New() const {
return new Model;
}
void Model::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_mpath()) {
if (mpath_ != NULL) mpath_->::FilePath::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Model::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .FilePath mPath = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_mpath()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Model::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .FilePath mPath = 1;
if (has_mpath()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->mpath(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Model::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .FilePath mPath = 1;
if (has_mpath()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->mpath(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Model::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .FilePath mPath = 1;
if (has_mpath()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->mpath());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Model::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Model* source =
::google::protobuf::internal::dynamic_cast_if_available<const Model*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Model::MergeFrom(const Model& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_mpath()) {
mutable_mpath()->::FilePath::MergeFrom(from.mpath());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Model::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Model::CopyFrom(const Model& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Model::IsInitialized() const {
return true;
}
void Model::Swap(Model* other) {
if (other != this) {
std::swap(mpath_, other->mpath_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Model::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Model_descriptor_;
metadata.reflection = Model_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int ServiceDefinition::kKeyFieldNumber;
const int ServiceDefinition::kValueFieldNumber;
#endif // !_MSC_VER
ServiceDefinition::ServiceDefinition()
: ::google::protobuf::Message() {
SharedCtor();
}
void ServiceDefinition::InitAsDefaultInstance() {
}
ServiceDefinition::ServiceDefinition(const ServiceDefinition& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void ServiceDefinition::SharedCtor() {
_cached_size_ = 0;
key_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
value_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
ServiceDefinition::~ServiceDefinition() {
SharedDtor();
}
void ServiceDefinition::SharedDtor() {
if (key_ != &::google::protobuf::internal::kEmptyString) {
delete key_;
}
if (value_ != &::google::protobuf::internal::kEmptyString) {
delete value_;
}
if (this != default_instance_) {
}
}
void ServiceDefinition::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* ServiceDefinition::descriptor() {
protobuf_AssignDescriptorsOnce();
return ServiceDefinition_descriptor_;
}
const ServiceDefinition& ServiceDefinition::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
ServiceDefinition* ServiceDefinition::default_instance_ = NULL;
ServiceDefinition* ServiceDefinition::New() const {
return new ServiceDefinition;
}
void ServiceDefinition::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_key()) {
if (key_ != &::google::protobuf::internal::kEmptyString) {
key_->clear();
}
}
if (has_value()) {
if (value_ != &::google::protobuf::internal::kEmptyString) {
value_->clear();
}
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool ServiceDefinition::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional string key = 1 [default = ""];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_key()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->key().data(), this->key().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_value;
break;
}
// optional string value = 2 [default = ""];
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_value:
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_value()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->value().data(), this->value().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void ServiceDefinition::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional string key = 1 [default = ""];
if (has_key()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->key().data(), this->key().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
1, this->key(), output);
}
// optional string value = 2 [default = ""];
if (has_value()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->value().data(), this->value().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
2, this->value(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* ServiceDefinition::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional string key = 1 [default = ""];
if (has_key()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->key().data(), this->key().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->key(), target);
}
// optional string value = 2 [default = ""];
if (has_value()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->value().data(), this->value().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
2, this->value(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int ServiceDefinition::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional string key = 1 [default = ""];
if (has_key()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->key());
}
// optional string value = 2 [default = ""];
if (has_value()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->value());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void ServiceDefinition::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const ServiceDefinition* source =
::google::protobuf::internal::dynamic_cast_if_available<const ServiceDefinition*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void ServiceDefinition::MergeFrom(const ServiceDefinition& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_key()) {
set_key(from.key());
}
if (from.has_value()) {
set_value(from.value());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void ServiceDefinition::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void ServiceDefinition::CopyFrom(const ServiceDefinition& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool ServiceDefinition::IsInitialized() const {
return true;
}
void ServiceDefinition::Swap(ServiceDefinition* other) {
if (other != this) {
std::swap(key_, other->key_);
std::swap(value_, other->value_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata ServiceDefinition::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = ServiceDefinition_descriptor_;
metadata.reflection = ServiceDefinition_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int Result::kOriginalFieldNumber;
const int Result::kFoundLabelsFieldNumber;
#endif // !_MSC_VER
Result::Result()
: ::google::protobuf::Message() {
SharedCtor();
}
void Result::InitAsDefaultInstance() {
original_ = const_cast< ::Labelable*>(&::Labelable::default_instance());
foundlabels_ = const_cast< ::LabelableList*>(&::LabelableList::default_instance());
}
Result::Result(const Result& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Result::SharedCtor() {
_cached_size_ = 0;
original_ = NULL;
foundlabels_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Result::~Result() {
SharedDtor();
}
void Result::SharedDtor() {
if (this != default_instance_) {
delete original_;
delete foundlabels_;
}
}
void Result::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Result::descriptor() {
protobuf_AssignDescriptorsOnce();
return Result_descriptor_;
}
const Result& Result::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Result* Result::default_instance_ = NULL;
Result* Result::New() const {
return new Result;
}
void Result::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_original()) {
if (original_ != NULL) original_->::Labelable::Clear();
}
if (has_foundlabels()) {
if (foundlabels_ != NULL) foundlabels_->::LabelableList::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Result::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .Labelable original = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_original()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_foundLabels;
break;
}
// optional .LabelableList foundLabels = 2;
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_foundLabels:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_foundlabels()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Result::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .Labelable original = 1;
if (has_original()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->original(), output);
}
// optional .LabelableList foundLabels = 2;
if (has_foundlabels()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
2, this->foundlabels(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Result::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .Labelable original = 1;
if (has_original()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->original(), target);
}
// optional .LabelableList foundLabels = 2;
if (has_foundlabels()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
2, this->foundlabels(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Result::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .Labelable original = 1;
if (has_original()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->original());
}
// optional .LabelableList foundLabels = 2;
if (has_foundlabels()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->foundlabels());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Result::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Result* source =
::google::protobuf::internal::dynamic_cast_if_available<const Result*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Result::MergeFrom(const Result& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_original()) {
mutable_original()->::Labelable::MergeFrom(from.original());
}
if (from.has_foundlabels()) {
mutable_foundlabels()->::LabelableList::MergeFrom(from.foundlabels());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Result::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Result::CopyFrom(const Result& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Result::IsInitialized() const {
return true;
}
void Result::Swap(Result* other) {
if (other != this) {
std::swap(original_, other->original_);
std::swap(foundlabels_, other->foundlabels_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Result::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Result_descriptor_;
metadata.reflection = Result_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int ResultList::kRsltFieldNumber;
#endif // !_MSC_VER
ResultList::ResultList()
: ::google::protobuf::Message() {
SharedCtor();
}
void ResultList::InitAsDefaultInstance() {
}
ResultList::ResultList(const ResultList& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void ResultList::SharedCtor() {
_cached_size_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
ResultList::~ResultList() {
SharedDtor();
}
void ResultList::SharedDtor() {
if (this != default_instance_) {
}
}
void ResultList::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* ResultList::descriptor() {
protobuf_AssignDescriptorsOnce();
return ResultList_descriptor_;
}
const ResultList& ResultList::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
ResultList* ResultList::default_instance_ = NULL;
ResultList* ResultList::New() const {
return new ResultList;
}
void ResultList::Clear() {
rslt_.Clear();
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool ResultList::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// repeated .Result rslt = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_rslt:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, add_rslt()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(10)) goto parse_rslt;
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void ResultList::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// repeated .Result rslt = 1;
for (int i = 0; i < this->rslt_size(); i++) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->rslt(i), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* ResultList::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// repeated .Result rslt = 1;
for (int i = 0; i < this->rslt_size(); i++) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->rslt(i), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int ResultList::ByteSize() const {
int total_size = 0;
// repeated .Result rslt = 1;
total_size += 1 * this->rslt_size();
for (int i = 0; i < this->rslt_size(); i++) {
total_size +=
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->rslt(i));
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void ResultList::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const ResultList* source =
::google::protobuf::internal::dynamic_cast_if_available<const ResultList*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void ResultList::MergeFrom(const ResultList& from) {
GOOGLE_CHECK_NE(&from, this);
rslt_.MergeFrom(from.rslt_);
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void ResultList::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void ResultList::CopyFrom(const ResultList& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool ResultList::IsInitialized() const {
return true;
}
void ResultList::Swap(ResultList* other) {
if (other != this) {
rslt_.Swap(&other->rslt_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata ResultList::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = ResultList_descriptor_;
metadata.reflection = ResultList_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int ResultSet::kResultsFieldNumber;
#endif // !_MSC_VER
ResultSet::ResultSet()
: ::google::protobuf::Message() {
SharedCtor();
}
void ResultSet::InitAsDefaultInstance() {
results_ = const_cast< ::ResultList*>(&::ResultList::default_instance());
}
ResultSet::ResultSet(const ResultSet& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void ResultSet::SharedCtor() {
_cached_size_ = 0;
results_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
ResultSet::~ResultSet() {
SharedDtor();
}
void ResultSet::SharedDtor() {
if (this != default_instance_) {
delete results_;
}
}
void ResultSet::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* ResultSet::descriptor() {
protobuf_AssignDescriptorsOnce();
return ResultSet_descriptor_;
}
const ResultSet& ResultSet::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
ResultSet* ResultSet::default_instance_ = NULL;
ResultSet* ResultSet::New() const {
return new ResultSet;
}
void ResultSet::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_results()) {
if (results_ != NULL) results_->::ResultList::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool ResultSet::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .ResultList results = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_results()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void ResultSet::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .ResultList results = 1;
if (has_results()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->results(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* ResultSet::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .ResultList results = 1;
if (has_results()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->results(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int ResultSet::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .ResultList results = 1;
if (has_results()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->results());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void ResultSet::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const ResultSet* source =
::google::protobuf::internal::dynamic_cast_if_available<const ResultSet*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void ResultSet::MergeFrom(const ResultSet& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_results()) {
mutable_results()->::ResultList::MergeFrom(from.results());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void ResultSet::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void ResultSet::CopyFrom(const ResultSet& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool ResultSet::IsInitialized() const {
return true;
}
void ResultSet::Swap(ResultSet* other) {
if (other != this) {
std::swap(results_, other->results_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata ResultSet::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = ResultSet_descriptor_;
metadata.reflection = ResultSet_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int DirectoryPath::kRelativePathFieldNumber;
#endif // !_MSC_VER
DirectoryPath::DirectoryPath()
: ::google::protobuf::Message() {
SharedCtor();
}
void DirectoryPath::InitAsDefaultInstance() {
}
DirectoryPath::DirectoryPath(const DirectoryPath& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void DirectoryPath::SharedCtor() {
_cached_size_ = 0;
relativepath_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
DirectoryPath::~DirectoryPath() {
SharedDtor();
}
void DirectoryPath::SharedDtor() {
if (relativepath_ != &::google::protobuf::internal::kEmptyString) {
delete relativepath_;
}
if (this != default_instance_) {
}
}
void DirectoryPath::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* DirectoryPath::descriptor() {
protobuf_AssignDescriptorsOnce();
return DirectoryPath_descriptor_;
}
const DirectoryPath& DirectoryPath::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
DirectoryPath* DirectoryPath::default_instance_ = NULL;
DirectoryPath* DirectoryPath::New() const {
return new DirectoryPath;
}
void DirectoryPath::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_relativepath()) {
if (relativepath_ != &::google::protobuf::internal::kEmptyString) {
relativepath_->clear();
}
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool DirectoryPath::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional string relativePath = 1 [default = ""];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_relativepath()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->relativepath().data(), this->relativepath().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void DirectoryPath::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional string relativePath = 1 [default = ""];
if (has_relativepath()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->relativepath().data(), this->relativepath().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
1, this->relativepath(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* DirectoryPath::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional string relativePath = 1 [default = ""];
if (has_relativepath()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->relativepath().data(), this->relativepath().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->relativepath(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int DirectoryPath::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional string relativePath = 1 [default = ""];
if (has_relativepath()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->relativepath());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void DirectoryPath::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const DirectoryPath* source =
::google::protobuf::internal::dynamic_cast_if_available<const DirectoryPath*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void DirectoryPath::MergeFrom(const DirectoryPath& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_relativepath()) {
set_relativepath(from.relativepath());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void DirectoryPath::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void DirectoryPath::CopyFrom(const DirectoryPath& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool DirectoryPath::IsInitialized() const {
return true;
}
void DirectoryPath::Swap(DirectoryPath* other) {
if (other != this) {
std::swap(relativepath_, other->relativepath_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata DirectoryPath::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = DirectoryPath_descriptor_;
metadata.reflection = DirectoryPath_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int FilePath::kDirectoryFieldNumber;
const int FilePath::kFilenameFieldNumber;
#endif // !_MSC_VER
FilePath::FilePath()
: ::google::protobuf::Message() {
SharedCtor();
}
void FilePath::InitAsDefaultInstance() {
directory_ = const_cast< ::DirectoryPath*>(&::DirectoryPath::default_instance());
}
FilePath::FilePath(const FilePath& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void FilePath::SharedCtor() {
_cached_size_ = 0;
directory_ = NULL;
filename_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
FilePath::~FilePath() {
SharedDtor();
}
void FilePath::SharedDtor() {
if (filename_ != &::google::protobuf::internal::kEmptyString) {
delete filename_;
}
if (this != default_instance_) {
delete directory_;
}
}
void FilePath::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* FilePath::descriptor() {
protobuf_AssignDescriptorsOnce();
return FilePath_descriptor_;
}
const FilePath& FilePath::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
FilePath* FilePath::default_instance_ = NULL;
FilePath* FilePath::New() const {
return new FilePath;
}
void FilePath::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_directory()) {
if (directory_ != NULL) directory_->::DirectoryPath::Clear();
}
if (has_filename()) {
if (filename_ != &::google::protobuf::internal::kEmptyString) {
filename_->clear();
}
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool FilePath::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .DirectoryPath directory = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_directory()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_filename;
break;
}
// optional string filename = 2 [default = ""];
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_filename:
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_filename()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->filename().data(), this->filename().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void FilePath::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .DirectoryPath directory = 1;
if (has_directory()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->directory(), output);
}
// optional string filename = 2 [default = ""];
if (has_filename()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->filename().data(), this->filename().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
2, this->filename(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* FilePath::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .DirectoryPath directory = 1;
if (has_directory()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->directory(), target);
}
// optional string filename = 2 [default = ""];
if (has_filename()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->filename().data(), this->filename().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
2, this->filename(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int FilePath::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .DirectoryPath directory = 1;
if (has_directory()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->directory());
}
// optional string filename = 2 [default = ""];
if (has_filename()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->filename());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void FilePath::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const FilePath* source =
::google::protobuf::internal::dynamic_cast_if_available<const FilePath*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void FilePath::MergeFrom(const FilePath& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_directory()) {
mutable_directory()->::DirectoryPath::MergeFrom(from.directory());
}
if (from.has_filename()) {
set_filename(from.filename());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void FilePath::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void FilePath::CopyFrom(const FilePath& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool FilePath::IsInitialized() const {
return true;
}
void FilePath::Swap(FilePath* other) {
if (other != this) {
std::swap(directory_, other->directory_);
std::swap(filename_, other->filename_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata FilePath::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = FilePath_descriptor_;
metadata.reflection = FilePath_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int Substrate::kIsImageFieldNumber;
const int Substrate::kIsVideoFieldNumber;
const int Substrate::kPathFieldNumber;
const int Substrate::kWidthFieldNumber;
const int Substrate::kHeightFieldNumber;
#endif // !_MSC_VER
Substrate::Substrate()
: ::google::protobuf::Message() {
SharedCtor();
}
void Substrate::InitAsDefaultInstance() {
path_ = const_cast< ::FilePath*>(&::FilePath::default_instance());
}
Substrate::Substrate(const Substrate& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Substrate::SharedCtor() {
_cached_size_ = 0;
isimage_ = true;
isvideo_ = false;
path_ = NULL;
width_ = 0;
height_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Substrate::~Substrate() {
SharedDtor();
}
void Substrate::SharedDtor() {
if (this != default_instance_) {
delete path_;
}
}
void Substrate::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Substrate::descriptor() {
protobuf_AssignDescriptorsOnce();
return Substrate_descriptor_;
}
const Substrate& Substrate::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Substrate* Substrate::default_instance_ = NULL;
Substrate* Substrate::New() const {
return new Substrate;
}
void Substrate::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
isimage_ = true;
isvideo_ = false;
if (has_path()) {
if (path_ != NULL) path_->::FilePath::Clear();
}
width_ = 0;
height_ = 0;
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Substrate::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional bool isImage = 1 [default = true];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
input, &isimage_)));
set_has_isimage();
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(16)) goto parse_isVideo;
break;
}
// optional bool isVideo = 2 [default = false];
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
parse_isVideo:
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
input, &isvideo_)));
set_has_isvideo();
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(26)) goto parse_path;
break;
}
// optional .FilePath path = 3;
case 3: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_path:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_path()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(32)) goto parse_width;
break;
}
// optional int32 width = 4 [default = 0];
case 4: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
parse_width:
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
input, &width_)));
set_has_width();
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(40)) goto parse_height;
break;
}
// optional int32 height = 5 [default = 0];
case 5: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
parse_height:
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
input, &height_)));
set_has_height();
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Substrate::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional bool isImage = 1 [default = true];
if (has_isimage()) {
::google::protobuf::internal::WireFormatLite::WriteBool(1, this->isimage(), output);
}
// optional bool isVideo = 2 [default = false];
if (has_isvideo()) {
::google::protobuf::internal::WireFormatLite::WriteBool(2, this->isvideo(), output);
}
// optional .FilePath path = 3;
if (has_path()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
3, this->path(), output);
}
// optional int32 width = 4 [default = 0];
if (has_width()) {
::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->width(), output);
}
// optional int32 height = 5 [default = 0];
if (has_height()) {
::google::protobuf::internal::WireFormatLite::WriteInt32(5, this->height(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Substrate::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional bool isImage = 1 [default = true];
if (has_isimage()) {
target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(1, this->isimage(), target);
}
// optional bool isVideo = 2 [default = false];
if (has_isvideo()) {
target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(2, this->isvideo(), target);
}
// optional .FilePath path = 3;
if (has_path()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
3, this->path(), target);
}
// optional int32 width = 4 [default = 0];
if (has_width()) {
target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->width(), target);
}
// optional int32 height = 5 [default = 0];
if (has_height()) {
target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(5, this->height(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Substrate::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional bool isImage = 1 [default = true];
if (has_isimage()) {
total_size += 1 + 1;
}
// optional bool isVideo = 2 [default = false];
if (has_isvideo()) {
total_size += 1 + 1;
}
// optional .FilePath path = 3;
if (has_path()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->path());
}
// optional int32 width = 4 [default = 0];
if (has_width()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::Int32Size(
this->width());
}
// optional int32 height = 5 [default = 0];
if (has_height()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::Int32Size(
this->height());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Substrate::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Substrate* source =
::google::protobuf::internal::dynamic_cast_if_available<const Substrate*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Substrate::MergeFrom(const Substrate& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_isimage()) {
set_isimage(from.isimage());
}
if (from.has_isvideo()) {
set_isvideo(from.isvideo());
}
if (from.has_path()) {
mutable_path()->::FilePath::MergeFrom(from.path());
}
if (from.has_width()) {
set_width(from.width());
}
if (from.has_height()) {
set_height(from.height());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Substrate::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Substrate::CopyFrom(const Substrate& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Substrate::IsInitialized() const {
return true;
}
void Substrate::Swap(Substrate* other) {
if (other != this) {
std::swap(isimage_, other->isimage_);
std::swap(isvideo_, other->isvideo_);
std::swap(path_, other->path_);
std::swap(width_, other->width_);
std::swap(height_, other->height_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Substrate::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Substrate_descriptor_;
metadata.reflection = Substrate_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int Semantics::kUrlFieldNumber;
#endif // !_MSC_VER
Semantics::Semantics()
: ::google::protobuf::Message() {
SharedCtor();
}
void Semantics::InitAsDefaultInstance() {
}
Semantics::Semantics(const Semantics& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Semantics::SharedCtor() {
_cached_size_ = 0;
url_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Semantics::~Semantics() {
SharedDtor();
}
void Semantics::SharedDtor() {
if (url_ != &::google::protobuf::internal::kEmptyString) {
delete url_;
}
if (this != default_instance_) {
}
}
void Semantics::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Semantics::descriptor() {
protobuf_AssignDescriptorsOnce();
return Semantics_descriptor_;
}
const Semantics& Semantics::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Semantics* Semantics::default_instance_ = NULL;
Semantics* Semantics::New() const {
return new Semantics;
}
void Semantics::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_url()) {
if (url_ != &::google::protobuf::internal::kEmptyString) {
url_->clear();
}
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Semantics::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional string url = 1 [default = ""];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_url()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->url().data(), this->url().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Semantics::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional string url = 1 [default = ""];
if (has_url()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->url().data(), this->url().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
1, this->url(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Semantics::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional string url = 1 [default = ""];
if (has_url()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->url().data(), this->url().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->url(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Semantics::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional string url = 1 [default = ""];
if (has_url()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->url());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Semantics::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Semantics* source =
::google::protobuf::internal::dynamic_cast_if_available<const Semantics*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Semantics::MergeFrom(const Semantics& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_url()) {
set_url(from.url());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Semantics::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Semantics::CopyFrom(const Semantics& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Semantics::IsInitialized() const {
return true;
}
void Semantics::Swap(Semantics* other) {
if (other != this) {
std::swap(url_, other->url_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Semantics::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Semantics_descriptor_;
metadata.reflection = Semantics_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int LabelProperties::kKeyFieldNumber;
const int LabelProperties::kValueFieldNumber;
#endif // !_MSC_VER
LabelProperties::LabelProperties()
: ::google::protobuf::Message() {
SharedCtor();
}
void LabelProperties::InitAsDefaultInstance() {
}
LabelProperties::LabelProperties(const LabelProperties& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void LabelProperties::SharedCtor() {
_cached_size_ = 0;
key_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
value_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
LabelProperties::~LabelProperties() {
SharedDtor();
}
void LabelProperties::SharedDtor() {
if (key_ != &::google::protobuf::internal::kEmptyString) {
delete key_;
}
if (value_ != &::google::protobuf::internal::kEmptyString) {
delete value_;
}
if (this != default_instance_) {
}
}
void LabelProperties::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* LabelProperties::descriptor() {
protobuf_AssignDescriptorsOnce();
return LabelProperties_descriptor_;
}
const LabelProperties& LabelProperties::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
LabelProperties* LabelProperties::default_instance_ = NULL;
LabelProperties* LabelProperties::New() const {
return new LabelProperties;
}
void LabelProperties::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_key()) {
if (key_ != &::google::protobuf::internal::kEmptyString) {
key_->clear();
}
}
if (has_value()) {
if (value_ != &::google::protobuf::internal::kEmptyString) {
value_->clear();
}
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool LabelProperties::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional string key = 1 [default = ""];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_key()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->key().data(), this->key().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_value;
break;
}
// optional string value = 2 [default = ""];
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_value:
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_value()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->value().data(), this->value().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void LabelProperties::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional string key = 1 [default = ""];
if (has_key()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->key().data(), this->key().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
1, this->key(), output);
}
// optional string value = 2 [default = ""];
if (has_value()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->value().data(), this->value().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
2, this->value(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* LabelProperties::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional string key = 1 [default = ""];
if (has_key()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->key().data(), this->key().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->key(), target);
}
// optional string value = 2 [default = ""];
if (has_value()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->value().data(), this->value().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
2, this->value(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int LabelProperties::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional string key = 1 [default = ""];
if (has_key()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->key());
}
// optional string value = 2 [default = ""];
if (has_value()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->value());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void LabelProperties::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const LabelProperties* source =
::google::protobuf::internal::dynamic_cast_if_available<const LabelProperties*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void LabelProperties::MergeFrom(const LabelProperties& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_key()) {
set_key(from.key());
}
if (from.has_value()) {
set_value(from.value());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void LabelProperties::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void LabelProperties::CopyFrom(const LabelProperties& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool LabelProperties::IsInitialized() const {
return true;
}
void LabelProperties::Swap(LabelProperties* other) {
if (other != this) {
std::swap(key_, other->key_);
std::swap(value_, other->value_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata LabelProperties::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = LabelProperties_descriptor_;
metadata.reflection = LabelProperties_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int Label::kHasLabelFieldNumber;
const int Label::kNameFieldNumber;
const int Label::kPropertiesFieldNumber;
const int Label::kSemantixFieldNumber;
#endif // !_MSC_VER
Label::Label()
: ::google::protobuf::Message() {
SharedCtor();
}
void Label::InitAsDefaultInstance() {
properties_ = const_cast< ::LabelProperties*>(&::LabelProperties::default_instance());
semantix_ = const_cast< ::Semantics*>(&::Semantics::default_instance());
}
Label::Label(const Label& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Label::SharedCtor() {
_cached_size_ = 0;
haslabel_ = false;
name_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
properties_ = NULL;
semantix_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Label::~Label() {
SharedDtor();
}
void Label::SharedDtor() {
if (name_ != &::google::protobuf::internal::kEmptyString) {
delete name_;
}
if (this != default_instance_) {
delete properties_;
delete semantix_;
}
}
void Label::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Label::descriptor() {
protobuf_AssignDescriptorsOnce();
return Label_descriptor_;
}
const Label& Label::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Label* Label::default_instance_ = NULL;
Label* Label::New() const {
return new Label;
}
void Label::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
haslabel_ = false;
if (has_name()) {
if (name_ != &::google::protobuf::internal::kEmptyString) {
name_->clear();
}
}
if (has_properties()) {
if (properties_ != NULL) properties_->::LabelProperties::Clear();
}
if (has_semantix()) {
if (semantix_ != NULL) semantix_->::Semantics::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Label::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional bool hasLabel = 1 [default = false];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
input, &haslabel_)));
set_has_haslabel();
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_name;
break;
}
// optional string name = 2 [default = ""];
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_name:
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_name()));
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->name().data(), this->name().length(),
::google::protobuf::internal::WireFormat::PARSE);
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(26)) goto parse_properties;
break;
}
// optional .LabelProperties properties = 3;
case 3: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_properties:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_properties()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(34)) goto parse_semantix;
break;
}
// optional .Semantics semantix = 4;
case 4: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_semantix:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_semantix()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Label::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional bool hasLabel = 1 [default = false];
if (has_haslabel()) {
::google::protobuf::internal::WireFormatLite::WriteBool(1, this->haslabel(), output);
}
// optional string name = 2 [default = ""];
if (has_name()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->name().data(), this->name().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
::google::protobuf::internal::WireFormatLite::WriteString(
2, this->name(), output);
}
// optional .LabelProperties properties = 3;
if (has_properties()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
3, this->properties(), output);
}
// optional .Semantics semantix = 4;
if (has_semantix()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
4, this->semantix(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Label::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional bool hasLabel = 1 [default = false];
if (has_haslabel()) {
target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(1, this->haslabel(), target);
}
// optional string name = 2 [default = ""];
if (has_name()) {
::google::protobuf::internal::WireFormat::VerifyUTF8String(
this->name().data(), this->name().length(),
::google::protobuf::internal::WireFormat::SERIALIZE);
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
2, this->name(), target);
}
// optional .LabelProperties properties = 3;
if (has_properties()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
3, this->properties(), target);
}
// optional .Semantics semantix = 4;
if (has_semantix()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
4, this->semantix(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Label::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional bool hasLabel = 1 [default = false];
if (has_haslabel()) {
total_size += 1 + 1;
}
// optional string name = 2 [default = ""];
if (has_name()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->name());
}
// optional .LabelProperties properties = 3;
if (has_properties()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->properties());
}
// optional .Semantics semantix = 4;
if (has_semantix()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->semantix());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Label::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Label* source =
::google::protobuf::internal::dynamic_cast_if_available<const Label*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Label::MergeFrom(const Label& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_haslabel()) {
set_haslabel(from.haslabel());
}
if (from.has_name()) {
set_name(from.name());
}
if (from.has_properties()) {
mutable_properties()->::LabelProperties::MergeFrom(from.properties());
}
if (from.has_semantix()) {
mutable_semantix()->::Semantics::MergeFrom(from.semantix());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Label::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Label::CopyFrom(const Label& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Label::IsInitialized() const {
return true;
}
void Label::Swap(Label* other) {
if (other != this) {
std::swap(haslabel_, other->haslabel_);
std::swap(name_, other->name_);
std::swap(properties_, other->properties_);
std::swap(semantix_, other->semantix_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Label::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Label_descriptor_;
metadata.reflection = Label_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int Labelable::kConfidenceFieldNumber;
const int Labelable::kLabFieldNumber;
const int Labelable::kSubFieldNumber;
#endif // !_MSC_VER
Labelable::Labelable()
: ::google::protobuf::Message() {
SharedCtor();
}
void Labelable::InitAsDefaultInstance() {
lab_ = const_cast< ::Label*>(&::Label::default_instance());
sub_ = const_cast< ::Substrate*>(&::Substrate::default_instance());
}
Labelable::Labelable(const Labelable& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Labelable::SharedCtor() {
_cached_size_ = 0;
confidence_ = 0;
lab_ = NULL;
sub_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Labelable::~Labelable() {
SharedDtor();
}
void Labelable::SharedDtor() {
if (this != default_instance_) {
delete lab_;
delete sub_;
}
}
void Labelable::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Labelable::descriptor() {
protobuf_AssignDescriptorsOnce();
return Labelable_descriptor_;
}
const Labelable& Labelable::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Labelable* Labelable::default_instance_ = NULL;
Labelable* Labelable::New() const {
return new Labelable;
}
void Labelable::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
confidence_ = 0;
if (has_lab()) {
if (lab_ != NULL) lab_->::Label::Clear();
}
if (has_sub()) {
if (sub_ != NULL) sub_->::Substrate::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Labelable::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional float confidence = 1 [default = 0];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_FIXED32) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
float, ::google::protobuf::internal::WireFormatLite::TYPE_FLOAT>(
input, &confidence_)));
set_has_confidence();
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_lab;
break;
}
// optional .Label lab = 2;
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_lab:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_lab()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(26)) goto parse_sub;
break;
}
// optional .Substrate sub = 3;
case 3: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_sub:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_sub()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Labelable::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional float confidence = 1 [default = 0];
if (has_confidence()) {
::google::protobuf::internal::WireFormatLite::WriteFloat(1, this->confidence(), output);
}
// optional .Label lab = 2;
if (has_lab()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
2, this->lab(), output);
}
// optional .Substrate sub = 3;
if (has_sub()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
3, this->sub(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Labelable::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional float confidence = 1 [default = 0];
if (has_confidence()) {
target = ::google::protobuf::internal::WireFormatLite::WriteFloatToArray(1, this->confidence(), target);
}
// optional .Label lab = 2;
if (has_lab()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
2, this->lab(), target);
}
// optional .Substrate sub = 3;
if (has_sub()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
3, this->sub(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Labelable::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional float confidence = 1 [default = 0];
if (has_confidence()) {
total_size += 1 + 4;
}
// optional .Label lab = 2;
if (has_lab()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->lab());
}
// optional .Substrate sub = 3;
if (has_sub()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->sub());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Labelable::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Labelable* source =
::google::protobuf::internal::dynamic_cast_if_available<const Labelable*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Labelable::MergeFrom(const Labelable& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_confidence()) {
set_confidence(from.confidence());
}
if (from.has_lab()) {
mutable_lab()->::Label::MergeFrom(from.lab());
}
if (from.has_sub()) {
mutable_sub()->::Substrate::MergeFrom(from.sub());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Labelable::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Labelable::CopyFrom(const Labelable& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Labelable::IsInitialized() const {
return true;
}
void Labelable::Swap(Labelable* other) {
if (other != this) {
std::swap(confidence_, other->confidence_);
std::swap(lab_, other->lab_);
std::swap(sub_, other->sub_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Labelable::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Labelable_descriptor_;
metadata.reflection = Labelable_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int LabelableList::kLabelableFieldNumber;
#endif // !_MSC_VER
LabelableList::LabelableList()
: ::google::protobuf::Message() {
SharedCtor();
}
void LabelableList::InitAsDefaultInstance() {
}
LabelableList::LabelableList(const LabelableList& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void LabelableList::SharedCtor() {
_cached_size_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
LabelableList::~LabelableList() {
SharedDtor();
}
void LabelableList::SharedDtor() {
if (this != default_instance_) {
}
}
void LabelableList::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* LabelableList::descriptor() {
protobuf_AssignDescriptorsOnce();
return LabelableList_descriptor_;
}
const LabelableList& LabelableList::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
LabelableList* LabelableList::default_instance_ = NULL;
LabelableList* LabelableList::New() const {
return new LabelableList;
}
void LabelableList::Clear() {
labelable_.Clear();
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool LabelableList::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// repeated .Labelable labelable = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_labelable:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, add_labelable()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(10)) goto parse_labelable;
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void LabelableList::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// repeated .Labelable labelable = 1;
for (int i = 0; i < this->labelable_size(); i++) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->labelable(i), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* LabelableList::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// repeated .Labelable labelable = 1;
for (int i = 0; i < this->labelable_size(); i++) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->labelable(i), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int LabelableList::ByteSize() const {
int total_size = 0;
// repeated .Labelable labelable = 1;
total_size += 1 * this->labelable_size();
for (int i = 0; i < this->labelable_size(); i++) {
total_size +=
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->labelable(i));
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void LabelableList::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const LabelableList* source =
::google::protobuf::internal::dynamic_cast_if_available<const LabelableList*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void LabelableList::MergeFrom(const LabelableList& from) {
GOOGLE_CHECK_NE(&from, this);
labelable_.MergeFrom(from.labelable_);
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void LabelableList::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void LabelableList::CopyFrom(const LabelableList& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool LabelableList::IsInitialized() const {
return true;
}
void LabelableList::Swap(LabelableList* other) {
if (other != this) {
labelable_.Swap(&other->labelable_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata LabelableList::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = LabelableList_descriptor_;
metadata.reflection = LabelableList_reflection_;
return metadata;
}
// ===================================================================
const ::google::protobuf::EnumDescriptor* Purpose_PurposeType_descriptor() {
protobuf_AssignDescriptorsOnce();
return Purpose_PurposeType_descriptor_;
}
bool Purpose_PurposeType_IsValid(int value) {
switch(value) {
case 0:
case 1:
case 2:
case 3:
case 4:
return true;
default:
return false;
}
}
#ifndef _MSC_VER
const Purpose_PurposeType Purpose::UNPURPOSED;
const Purpose_PurposeType Purpose::POSITIVE;
const Purpose_PurposeType Purpose::NEGATIVE;
const Purpose_PurposeType Purpose::MULTICLASS;
const Purpose_PurposeType Purpose::ANY;
const Purpose_PurposeType Purpose::PurposeType_MIN;
const Purpose_PurposeType Purpose::PurposeType_MAX;
const int Purpose::PurposeType_ARRAYSIZE;
#endif // _MSC_VER
#ifndef _MSC_VER
const int Purpose::kPtypeFieldNumber;
const int Purpose::kClassIDFieldNumber;
#endif // !_MSC_VER
Purpose::Purpose()
: ::google::protobuf::Message() {
SharedCtor();
}
void Purpose::InitAsDefaultInstance() {
}
Purpose::Purpose(const Purpose& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void Purpose::SharedCtor() {
_cached_size_ = 0;
ptype_ = 0;
classid_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
Purpose::~Purpose() {
SharedDtor();
}
void Purpose::SharedDtor() {
if (this != default_instance_) {
}
}
void Purpose::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* Purpose::descriptor() {
protobuf_AssignDescriptorsOnce();
return Purpose_descriptor_;
}
const Purpose& Purpose::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
Purpose* Purpose::default_instance_ = NULL;
Purpose* Purpose::New() const {
return new Purpose;
}
void Purpose::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
ptype_ = 0;
classid_ = 0;
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool Purpose::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .Purpose.PurposeType ptype = 1 [default = UNPURPOSED];
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
int value;
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
input, &value)));
if (::Purpose_PurposeType_IsValid(value)) {
set_ptype(static_cast< ::Purpose_PurposeType >(value));
} else {
mutable_unknown_fields()->AddVarint(1, value);
}
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(16)) goto parse_classID;
break;
}
// optional int32 classID = 2 [default = 0];
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
parse_classID:
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
input, &classid_)));
set_has_classid();
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void Purpose::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .Purpose.PurposeType ptype = 1 [default = UNPURPOSED];
if (has_ptype()) {
::google::protobuf::internal::WireFormatLite::WriteEnum(
1, this->ptype(), output);
}
// optional int32 classID = 2 [default = 0];
if (has_classid()) {
::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->classid(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* Purpose::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .Purpose.PurposeType ptype = 1 [default = UNPURPOSED];
if (has_ptype()) {
target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
1, this->ptype(), target);
}
// optional int32 classID = 2 [default = 0];
if (has_classid()) {
target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->classid(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int Purpose::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .Purpose.PurposeType ptype = 1 [default = UNPURPOSED];
if (has_ptype()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::EnumSize(this->ptype());
}
// optional int32 classID = 2 [default = 0];
if (has_classid()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::Int32Size(
this->classid());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void Purpose::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const Purpose* source =
::google::protobuf::internal::dynamic_cast_if_available<const Purpose*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void Purpose::MergeFrom(const Purpose& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_ptype()) {
set_ptype(from.ptype());
}
if (from.has_classid()) {
set_classid(from.classid());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void Purpose::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void Purpose::CopyFrom(const Purpose& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool Purpose::IsInitialized() const {
return true;
}
void Purpose::Swap(Purpose* other) {
if (other != this) {
std::swap(ptype_, other->ptype_);
std::swap(classid_, other->classid_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata Purpose::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = Purpose_descriptor_;
metadata.reflection = Purpose_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int PurposedLabelableSeq::kPurFieldNumber;
const int PurposedLabelableSeq::kLabeledArtifactsFieldNumber;
#endif // !_MSC_VER
PurposedLabelableSeq::PurposedLabelableSeq()
: ::google::protobuf::Message() {
SharedCtor();
}
void PurposedLabelableSeq::InitAsDefaultInstance() {
pur_ = const_cast< ::Purpose*>(&::Purpose::default_instance());
labeledartifacts_ = const_cast< ::LabelableList*>(&::LabelableList::default_instance());
}
PurposedLabelableSeq::PurposedLabelableSeq(const PurposedLabelableSeq& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void PurposedLabelableSeq::SharedCtor() {
_cached_size_ = 0;
pur_ = NULL;
labeledartifacts_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
PurposedLabelableSeq::~PurposedLabelableSeq() {
SharedDtor();
}
void PurposedLabelableSeq::SharedDtor() {
if (this != default_instance_) {
delete pur_;
delete labeledartifacts_;
}
}
void PurposedLabelableSeq::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* PurposedLabelableSeq::descriptor() {
protobuf_AssignDescriptorsOnce();
return PurposedLabelableSeq_descriptor_;
}
const PurposedLabelableSeq& PurposedLabelableSeq::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
PurposedLabelableSeq* PurposedLabelableSeq::default_instance_ = NULL;
PurposedLabelableSeq* PurposedLabelableSeq::New() const {
return new PurposedLabelableSeq;
}
void PurposedLabelableSeq::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_pur()) {
if (pur_ != NULL) pur_->::Purpose::Clear();
}
if (has_labeledartifacts()) {
if (labeledartifacts_ != NULL) labeledartifacts_->::LabelableList::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool PurposedLabelableSeq::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .Purpose pur = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_pur()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(18)) goto parse_labeledArtifacts;
break;
}
// optional .LabelableList labeledArtifacts = 2;
case 2: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_labeledArtifacts:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_labeledartifacts()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void PurposedLabelableSeq::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .Purpose pur = 1;
if (has_pur()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->pur(), output);
}
// optional .LabelableList labeledArtifacts = 2;
if (has_labeledartifacts()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
2, this->labeledartifacts(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* PurposedLabelableSeq::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .Purpose pur = 1;
if (has_pur()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->pur(), target);
}
// optional .LabelableList labeledArtifacts = 2;
if (has_labeledartifacts()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
2, this->labeledartifacts(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int PurposedLabelableSeq::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .Purpose pur = 1;
if (has_pur()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->pur());
}
// optional .LabelableList labeledArtifacts = 2;
if (has_labeledartifacts()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->labeledartifacts());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void PurposedLabelableSeq::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const PurposedLabelableSeq* source =
::google::protobuf::internal::dynamic_cast_if_available<const PurposedLabelableSeq*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void PurposedLabelableSeq::MergeFrom(const PurposedLabelableSeq& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_pur()) {
mutable_pur()->::Purpose::MergeFrom(from.pur());
}
if (from.has_labeledartifacts()) {
mutable_labeledartifacts()->::LabelableList::MergeFrom(from.labeledartifacts());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void PurposedLabelableSeq::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void PurposedLabelableSeq::CopyFrom(const PurposedLabelableSeq& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool PurposedLabelableSeq::IsInitialized() const {
return true;
}
void PurposedLabelableSeq::Swap(PurposedLabelableSeq* other) {
if (other != this) {
std::swap(pur_, other->pur_);
std::swap(labeledartifacts_, other->labeledartifacts_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata PurposedLabelableSeq::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = PurposedLabelableSeq_descriptor_;
metadata.reflection = PurposedLabelableSeq_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int PurposedListSequence::kPurlistFieldNumber;
#endif // !_MSC_VER
PurposedListSequence::PurposedListSequence()
: ::google::protobuf::Message() {
SharedCtor();
}
void PurposedListSequence::InitAsDefaultInstance() {
}
PurposedListSequence::PurposedListSequence(const PurposedListSequence& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void PurposedListSequence::SharedCtor() {
_cached_size_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
PurposedListSequence::~PurposedListSequence() {
SharedDtor();
}
void PurposedListSequence::SharedDtor() {
if (this != default_instance_) {
}
}
void PurposedListSequence::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* PurposedListSequence::descriptor() {
protobuf_AssignDescriptorsOnce();
return PurposedListSequence_descriptor_;
}
const PurposedListSequence& PurposedListSequence::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
PurposedListSequence* PurposedListSequence::default_instance_ = NULL;
PurposedListSequence* PurposedListSequence::New() const {
return new PurposedListSequence;
}
void PurposedListSequence::Clear() {
purlist_.Clear();
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool PurposedListSequence::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// repeated .PurposedLabelableSeq purlist = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
parse_purlist:
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, add_purlist()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectTag(10)) goto parse_purlist;
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void PurposedListSequence::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// repeated .PurposedLabelableSeq purlist = 1;
for (int i = 0; i < this->purlist_size(); i++) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->purlist(i), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* PurposedListSequence::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// repeated .PurposedLabelableSeq purlist = 1;
for (int i = 0; i < this->purlist_size(); i++) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->purlist(i), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int PurposedListSequence::ByteSize() const {
int total_size = 0;
// repeated .PurposedLabelableSeq purlist = 1;
total_size += 1 * this->purlist_size();
for (int i = 0; i < this->purlist_size(); i++) {
total_size +=
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->purlist(i));
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void PurposedListSequence::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const PurposedListSequence* source =
::google::protobuf::internal::dynamic_cast_if_available<const PurposedListSequence*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void PurposedListSequence::MergeFrom(const PurposedListSequence& from) {
GOOGLE_CHECK_NE(&from, this);
purlist_.MergeFrom(from.purlist_);
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void PurposedListSequence::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void PurposedListSequence::CopyFrom(const PurposedListSequence& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool PurposedListSequence::IsInitialized() const {
return true;
}
void PurposedListSequence::Swap(PurposedListSequence* other) {
if (other != this) {
purlist_.Swap(&other->purlist_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata PurposedListSequence::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = PurposedListSequence_descriptor_;
metadata.reflection = PurposedListSequence_reflection_;
return metadata;
}
// ===================================================================
#ifndef _MSC_VER
const int RunSet::kPurposedListsFieldNumber;
#endif // !_MSC_VER
RunSet::RunSet()
: ::google::protobuf::Message() {
SharedCtor();
}
void RunSet::InitAsDefaultInstance() {
purposedlists_ = const_cast< ::PurposedListSequence*>(&::PurposedListSequence::default_instance());
}
RunSet::RunSet(const RunSet& from)
: ::google::protobuf::Message() {
SharedCtor();
MergeFrom(from);
}
void RunSet::SharedCtor() {
_cached_size_ = 0;
purposedlists_ = NULL;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
RunSet::~RunSet() {
SharedDtor();
}
void RunSet::SharedDtor() {
if (this != default_instance_) {
delete purposedlists_;
}
}
void RunSet::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* RunSet::descriptor() {
protobuf_AssignDescriptorsOnce();
return RunSet_descriptor_;
}
const RunSet& RunSet::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_algorithms_2fmatlab_5fbridge_2fprotobuf_5fdefs_2eproto(); return *default_instance_;
}
RunSet* RunSet::default_instance_ = NULL;
RunSet* RunSet::New() const {
return new RunSet;
}
void RunSet::Clear() {
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (has_purposedlists()) {
if (purposedlists_ != NULL) purposedlists_->::PurposedListSequence::Clear();
}
}
::memset(_has_bits_, 0, sizeof(_has_bits_));
mutable_unknown_fields()->Clear();
}
bool RunSet::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!(EXPRESSION)) return false
::google::protobuf::uint32 tag;
while ((tag = input->ReadTag()) != 0) {
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// optional .PurposedListSequence purposedLists = 1;
case 1: {
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
input, mutable_purposedlists()));
} else {
goto handle_uninterpreted;
}
if (input->ExpectAtEnd()) return true;
break;
}
default: {
handle_uninterpreted:
if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
return true;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
return true;
#undef DO_
}
void RunSet::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// optional .PurposedListSequence purposedLists = 1;
if (has_purposedlists()) {
::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
1, this->purposedlists(), output);
}
if (!unknown_fields().empty()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
}
::google::protobuf::uint8* RunSet::SerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// optional .PurposedListSequence purposedLists = 1;
if (has_purposedlists()) {
target = ::google::protobuf::internal::WireFormatLite::
WriteMessageNoVirtualToArray(
1, this->purposedlists(), target);
}
if (!unknown_fields().empty()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
return target;
}
int RunSet::ByteSize() const {
int total_size = 0;
if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
// optional .PurposedListSequence purposedLists = 1;
if (has_purposedlists()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
this->purposedlists());
}
}
if (!unknown_fields().empty()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void RunSet::MergeFrom(const ::google::protobuf::Message& from) {
GOOGLE_CHECK_NE(&from, this);
const RunSet* source =
::google::protobuf::internal::dynamic_cast_if_available<const RunSet*>(
&from);
if (source == NULL) {
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
MergeFrom(*source);
}
}
void RunSet::MergeFrom(const RunSet& from) {
GOOGLE_CHECK_NE(&from, this);
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_purposedlists()) {
mutable_purposedlists()->::PurposedListSequence::MergeFrom(from.purposedlists());
}
}
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
void RunSet::CopyFrom(const ::google::protobuf::Message& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
void RunSet::CopyFrom(const RunSet& from) {
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool RunSet::IsInitialized() const {
return true;
}
void RunSet::Swap(RunSet* other) {
if (other != this) {
std::swap(purposedlists_, other->purposedlists_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_unknown_fields_.Swap(&other->_unknown_fields_);
std::swap(_cached_size_, other->_cached_size_);
}
}
::google::protobuf::Metadata RunSet::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = RunSet_descriptor_;
metadata.reflection = RunSet_reflection_;
return metadata;
}
// @@protoc_insertion_point(namespace_scope)
// @@protoc_insertion_point(global_scope)
|
2b859adfd68efad56962cfe4603b723247825e8d | 65f9576021285bc1f9e52cc21e2d49547ba77376 | /adsp_proc/avs/main/aud/algorithms/audencdec/mp3/Allgo/enc/CMp3EncoderLib/inc/CMp3EncoderLib.h | adc11e9ac6f9f98bea565ffe7a360f6ff479aede | [] | no_license | AVCHD/qcs605_root_qcom | 183d7a16e2f9fddc9df94df9532cbce661fbf6eb | 44af08aa9a60c6ca724c8d7abf04af54d4136ccb | refs/heads/main | 2023-03-18T21:54:11.234776 | 2021-02-26T11:03:59 | 2021-02-26T11:03:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,965 | h | CMp3EncoderLib.h | #ifndef C_MP3_ENCODER_LIB_H
#define C_MP3_ENCODER_LIB_H
/* ========================================================================
Mp3 encoder library wrapper header file
*//** @file CMp3EncoderLib.h
This is a wrapper code for Mp3 Core encoder library.
Copyright (c) 2013-2014 Qualcomm Technologies, Inc. All Rights Reserved.
Confidential and Proprietary - Qualcomm Technologies, Inc.
*//*====================================================================== */
/* =========================================================================
Edit History
when who what, where, why
-------- -------- -- ----------------------------------------------
02/25/13 WJ Initial creation
========================================================================= */
/* =======================================================================
* DEFINITIONS AND DECLARATIONS
* ====================================================================== */
#include "Elite_CAPI.h"
class CMp3EncoderLib : public ICAPI
{
private:
void* m_enc_state_ptr;
/*Default constructor private*/
CMp3EncoderLib ( );
EncRtrnCodeType mp3_encoder_mem_info_alloc(void* encoder_object_ptr);
public:
/* =======================================================================
* Public Function Declarations
* ======================================================================= */
enum Mp3EncParamIdx
{
eMp3BitRate = (eIcapiMaxParamIndex+100),
eMp3EndOfStream
};
/**
* Constructor of CMp3EncoderLib that creats an instance of the
* core encoder lib
*/
CMp3EncoderLib ( ADSPResult &nRes );
/**
* Destructor of CMp3EncoderLib
*/
virtual ~CMp3EncoderLib ( );
/*************************************************************************
* CAudioProcLib Methods
*************************************************************************/
/**
* Initialize the core encoder library
*
* @return success/failure is returned
*/
virtual int CDECL Init ( CAPI_Buf_t* pParams );
/**
* Re initialize the core encoder library in the case of
* repositioning or when full initialization is not required
*
* @return success/failure is returned
*/
virtual int CDECL ReInit ( CAPI_Buf_t* pParams );
/**
* Gracefully exit the core enoder library
*
* @return success/failure is returned
*/
virtual int CDECL End ( void );
/**
* Get the value of the Mp3 encoder parameters
*
* @param[in] nParamIdx Enum value of the parameter of interest
* @param[out] pnParamVal Desired value of the parameter of interest
*
* @return Success/fail
*/
virtual int CDECL GetParam ( int nParamIdx, int *pnParamVal );
/**
* Get the value of the Mp3 encoder parameters
*
* @param[in] nParamIdx Enum value of the parameter of interest
* @param[out] nPrarmVal Desired value of the parameter of interest
*
* @return Success/fail
*/
virtual int CDECL SetParam ( int nParamIdx, int nParamVal );
/**
* Encode one frame of samples
*
* @param[in] pInBitStream Pointer to input bit stream
* @param[out] pOutSamples Pointer to output samples
* @param[out] pOutParams Pointer to output parameters
*
* @return Success/failure
*/
virtual int CDECL Process ( const CAPI_BufList_t* pInSamples,
CAPI_BufList_t* pOutBitStream,
CAPI_Buf_t* pOutParams );
};
#endif /* C_MP3_ENCODER_LIB_H */
|
5ca2bd5bbb03006e027c54dc368322a922937b68 | a995eadf4e0a4ff1b376b0b4d710a94eaeb10653 | /List.hpp | 0751c297354c0b91efb412aa75e62d3a9d2edfc8 | [] | no_license | raflyalk/ArkavQuarium | 1383556d77de21d45b45d6ee85abac1cc3fdb7c8 | 75036292876400a537ff5cc4cf2fc4ec4df7c5c2 | refs/heads/master | 2021-09-08T21:11:04.549955 | 2018-03-12T08:07:19 | 2018-03-12T08:07:19 | 124,846,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,874 | hpp | List.hpp | #include <iostream>
using namespace std;
//Compiler version g++ 6.3.0
#ifndef _LIST_
#define _LIST_
template <typename T>
class List{
protected:
T value;
int num;
List* next;
public:
List(){
next = NULL;
num = 0 ;
}
List(T val){
next = new List();
value = val;
num = 1;
}
bool isEmpty(){
return(num == 0);
}
List(const List& L){
if (L.isEmpty()){
num = 0;
next = NULL;
}
else{
value = L.value;
num = L.num;
next = new List(&(L.next));
}
}
~List(){
delete [] next;
}
T get(int i){
if(i == 1){
return(value);
}
else{
return(next->get(i-1));
}
}
int find(T val){
if (value == val){
return(1);
}
else if(isEmpty()){
return(-999);
}
else{
return(1 + find(val));
}
}
bool isOneElmt(){
return(next->num == 0);
}
void add(T val){
if(isEmpty()){
next = new List;
value = val;
num = 1;
}
else{
next->add(val);
}
}
void remove(T val){
if(isEmpty()){
return ;
}
else if (next->value == val){
next = new List(next->next);
}
else{
next->remove(val);
}
}
T popLast(){
if(isOneElmt()){
delete [] next;
next = NULL;
T val = value;
num = 0;
return(val);
}
else{
return(next->popLast());
}
}
List& operator<<(T val){
add(val);
return(*this);
}
List& operator>>(T& val){
val = popLast();
return(*this);
}
friend ostream& operator<<(ostream& out, List& L){
if(L.isOneElmt()){
return(out << L.value);
}
else if (L.isEmpty()){
return(out);
}
else{
out << L.value << " , ";
return(out << *(L.next));
}
}
friend istream& operator>>(istream& in, List& L){
int n;
in >> n;
T val;
for(int i = 0; i < n ; i++){
in >> val;
L << val;
}
return(in);
}
};
#endif
|
f2b606ddfddcaf0fac9afc3d816ab52833ea3f1d | 3acf7fd2de0dab516d457f177abb6cda2f85b9fc | /impl/src/impl/model/gameobjects/pongball/PongBall.cpp | a63fb98de4a80f32e16b74337c248aaba3adb269 | [
"Apache-2.0"
] | permissive | oribabky/pong | 929fcf7cd63f422c7cd1ffe22d40432270079935 | 34000cdd3f98d68ff07776f5e01d9cb9e12f40cb | refs/heads/master | 2021-07-10T05:24:01.655931 | 2020-10-02T09:05:41 | 2020-10-02T09:05:41 | 193,318,688 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,814 | cpp | PongBall.cpp | //
// Created by Tobias Axelsson on 2019-08-06.
//
#include "PongBall.h"
#include "RandomUtil.h"
#include "IntersectionUtil.h"
#include <cmath>
#include <iostream>
PongBall::PongBall(const float &gameWindowArea, const float& xPos, const float& yPos) :
sf::CircleShape{determineBallDiameter(gameWindowArea)},
direction{AngleDegrees{static_cast<float>(randomNumberBetween(0, 359))}},
movementSpeed(MOVEMENT_SPEED_COEFFICIENT * (getRadius() * 2) * gameWindowArea) {
setFillColor(sf::Color::White);
setOrigin(getRadius(), getRadius());
setPosition(xPos, yPos);
}
void PongBall::moveBall() {
float xDistance = cos(direction.asRadians()) * movementSpeed;
float yDistance = sin(direction.asRadians()) * movementSpeed;
yDistance = -yDistance; // match the coordinates system in the window object
move(xDistance, yDistance);
}
void PongBall::bounceVerticalWall() {
auto newAngle = 0;
if (direction.getAngle() > 180) {
newAngle = 360 - direction.getAngle() + 180;
} else {
newAngle = 180 - direction.getAngle();
}
bounce(newAngle);
}
void PongBall::bounceHorizontalWall() {
const auto newAngle = 360 - direction.getAngle();
bounce(newAngle);
}
void PongBall::bouncePlayerBar(const PlayerBar& bar) {
const auto newAngle = IMPL_INTERSECTIONUTIL_H::calculateAngleTwoPoints(bar.getPosition(), this->getPosition());
std::cout << "Bounce Player bar! new angle: " << newAngle.getAngle() << std::endl;
bounce(newAngle.getAngle());
}
void PongBall::bounce(const float &newAngle) {
std::cout << "Bounce! new angle: " << newAngle << std::endl;
direction.setAngle(newAngle);
}
float PongBall::determineBallDiameter(const float& gameWindowArea) {
return gameWindowArea * BALL_SIZE_PERCENTAGE_WINDOW_AREA;
}
|
fb548e219ecd92a50870aedc3e1c03027db84f86 | 95408fb1eaabd01f1fce72d1fe44e5baaafc6577 | /app/src/main/jni/DexFileParser.cpp | c2e02955184b1759a9953ebf010c8f03e8a4106e | [] | no_license | heartbee/codeTamper | f61ff1185a3fb76d2795215852dd6a48c5c9d18a | a8d42d628b6e88fe342e192498ebcd5fbb0272e7 | refs/heads/master | 2021-05-29T16:24:09.171919 | 2015-05-09T04:06:24 | 2015-05-09T04:06:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,467 | cpp | DexFileParser.cpp | #include <jni.h>
#include <android/log.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/mman.h>
#include "DexFile.h"
#include "DexClass.h"
#define TAG "DexFileParser"
#define ALOG(...) __android_log_print(ANDROID_LOG_INFO, TAG, __VA_ARGS__);
#define CLASS_NAME "Lcom/example/hellojni/Render;"
#define METHOD_1 "paintToBlue"
#define METHOD_2 "paintToRed"
/**
* Created by duanjin on 4/4/15.
*/
//DexFile structure we need to construct
DexFile* pDexFile;
/*
*read /proc/self/maps to get the memory location of odex file
*/
void* getODexAddrFromFile(char* fileName, int* size) {
const char* memFile = "/proc/self/maps";
FILE* file = fopen(memFile, "r");
if (file == NULL) {
ALOG("Can not file file %s", memFile);
return NULL;
}
ALOG("In getDexAddrFromFile method");
char line[1024];
char* not_use;
long addr = 0;
long end = 0;
while(fgets(line, sizeof(line), file)) {
ALOG("%s", line);
if(strstr(line, fileName)) {
ALOG("Find line: %s", line);
char* startAddr = strtok(line, "- ");
char* endAddr = strtok(NULL, "- ");
ALOG("Start Addr is %s, End Addr is %s", startAddr, endAddr);
addr = strtoul(startAddr, ¬_use, 16);
end = strtoul(endAddr, ¬_use, 16);
*size = end - addr;
ALOG("Addr is %s", addr);
break;
}
}
fclose(file);
ALOG("out of method");
return (void*)addr;
}
//get dex base address from odexHeader
void* getDexBaseAddr(void* odexAddr) {
DexOptHeader* optHeader = (DexOptHeader*)odexAddr;
return (void*)(optHeader->dexOffset + odexAddr);
}
DexStringId* getDexStringIds(void* dexAddr) {
DexHeader* header = (DexHeader*)dexAddr;
return (DexStringId*)(dexAddr + header->stringIdsOff);
}
DexTypeId* getDexTypeIds(void* dexAddr) {
DexHeader* header = (DexHeader*)dexAddr;
return (DexTypeId*)(dexAddr + header->typeIdsOff);
}
DexFieldId* getDexFieldIds(void* dexAddr) {
DexHeader* header = (DexHeader*)dexAddr;
return (DexFieldId*)(dexAddr + header->fieldIdsOff);
}
DexMethodId* getDexMethodIds(void* dexAddr) {
DexHeader* header = (DexHeader*)dexAddr;
return (DexMethodId*)(dexAddr + header->methodIdsOff);
}
DexProtoId* getDexProtoIds(void* dexAddr) {
DexHeader* header = (DexHeader*)dexAddr;
return (DexProtoId*)(dexAddr + header->protoIdsOff);
}
DexClassDef* getDexClassDefs(void* dexAddr) {
DexHeader* header = (DexHeader*)dexAddr;
return (DexClassDef*)(dexAddr + header->classDefsOff);
}
void initDexFileStructure(void* dexAddr) {
if(pDexFile == NULL) {
pDexFile = (DexFile*) malloc(sizeof(DexFile));
}
pDexFile->pHeader = (DexHeader*)dexAddr;
pDexFile->pStringIds = getDexStringIds(dexAddr);
pDexFile->pTypeIds = getDexTypeIds(dexAddr);
pDexFile->pFieldIds = getDexFieldIds(dexAddr);
pDexFile->pMethodIds = getDexMethodIds(dexAddr);
pDexFile->pProtoIds = getDexProtoIds(dexAddr);
pDexFile->pClassDefs = getDexClassDefs(dexAddr);
pDexFile->baseAddr = (u1*)dexAddr;
}
const DexCode* getMethodFromClass(DexClassData* classData, char* targetMethod) {
for(int i = 0; i < classData->header.virtualMethodsSize; ++i) {
DexMethod pDexMethod = classData->virtualMethods[i];
DexMethodId methodId = pDexFile->pMethodIds[pDexMethod.methodIdx];
u4 result;
const char* name = dexStringAndSizeById(pDexFile, methodId.nameIdx, &result);
if(strcmp(name, targetMethod) == 0) {
const DexCode* pCode = dexGetCode(pDexFile, &pDexMethod);
return pCode;
}
}
return NULL;
}
void swap(const DexCode* code1, const DexCode* code2) {
if(code1 != NULL && code2 != NULL) {
DexCode* lCode = (DexCode*)code1;
if(lCode != NULL && code2 != NULL) {
lCode->registersSize = code2->registersSize;
lCode->insnsSize = code2->insnsSize;
for(u4 ins = 0; ins < code2->insnsSize; ++ins) {
lCode->insns[ins] = code2->insns[ins];
}
}
}
}
//helper methods for ppt
const char* getString(int index) {
u4 result;
const char* name = dexStringAndSizeById(pDexFile, index, &result);
return name;
}
void printAllDexStrings() {
ALOG("Dex Strings number is: %d", pDexFile->pHeader->stringIdsSize);
for(int i = 0; i < pDexFile->pHeader->stringIdsSize; ++i) {
u4 result;
const char* name = dexStringAndSizeById(pDexFile, i, &result);
ALOG("String: %s", name);
}
}
void printAllTypeIds() {
ALOG("Dex Type number is %d", pDexFile->pHeader->typeIdsSize);
for(int i = 0; i < pDexFile->pHeader->typeIdsSize; ++i) {
const char* name = dexStringByTypeIdx(pDexFile, i);
ALOG("Type is %s", name);
}
}
void printAllProtoTypes() {
ALOG("Dex Proto types number is %d", pDexFile->pHeader->protoIdsSize);
for(int i = 0; i < pDexFile->pHeader->protoIdsSize; ++i) {
const DexProtoId* proId = dexGetProtoId(pDexFile, i);
const char* name = getString(proId->shortyIdx);
ALOG("Proto is %s", name);
}
}
void printAllMethods() {
ALOG("Dex Method number is %d", pDexFile->pHeader->methodIdsSize);
for(int i = 0; i < pDexFile->pHeader->methodIdsSize; ++i) {
const DexMethodId* methodId = dexGetMethodId(pDexFile, i);
const char* name = getString(methodId->nameIdx);
ALOG("Method is %s", name);
}
}
void method_swizzle() {
int dexFileSize;
char* fileName = "/data/dalvik-cache/data@app@com.example.hellojni2";
void* odexAddr = getODexAddrFromFile(fileName, &dexFileSize);
//init pDexFile structure from odexAddr
if(odexAddr != NULL) {
DexOptHeader* optHeader = (DexOptHeader*)odexAddr;
void* dexAddr = getDexBaseAddr(odexAddr);
initDexFileStructure(dexAddr);
ALOG("magic %s", pDexFile->pHeader->magic);
const u1* pEncodedData = NULL;
u4 result;
const DexClassDef* clazz = NULL;
const char* name = NULL;
for(int i = 0; i < pDexFile->pHeader->classDefsSize; ++i) {
clazz = dexGetClassDef(pDexFile, i);
const DexTypeId classType = pDexFile->pTypeIds[clazz->classIdx];
name = dexStringAndSizeById(pDexFile, classType.descriptorIdx, &result);
ALOG("class is %s", name);
if(strcmp(name, CLASS_NAME ) == 0) {
pEncodedData = dexGetClassData(pDexFile, clazz);
DexClassData* classData = dexReadAndVerifyClassData(&pEncodedData, NULL);
const DexCode* pCode1 = getMethodFromClass(classData, METHOD_1);
const DexCode* pCode2 = getMethodFromClass(classData, METHOD_2);
if(mprotect(odexAddr, dexFileSize, PROT_READ | PROT_WRITE | PROT_EXEC) == 0){
swap(pCode1, pCode2);
mprotect(odexAddr, dexFileSize, PROT_READ | PROT_EXEC);
}
break;
}
}
}
}
extern "C" jint JNI_OnLoad(JavaVM* vm, void* reserved) {
JNIEnv* env = NULL;
jint result = -1;
ALOG("in JNI_Onload");
if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
ALOG("GetEnv failed");
return result;
}
method_swizzle();
result = JNI_VERSION_1_4;
ALOG("out JNI_Onload");
return result;
}
|
2864a2d888e920964c3b342837f4e5505d3930c8 | 18113e5c6af12306c17a0832de74b186439c34bd | /particle_system/main.cc | 536db329934935f45a6534185c17141a8a5fb92f | [
"MIT"
] | permissive | PFedorovMsk/learn_opengl | 0411c4fe90b45b65814cdc7c1a542052d3fbfe29 | 7b57b286b8b53c4800b9ba2903aa2194eb21ad7a | refs/heads/master | 2021-06-11T15:01:13.156000 | 2016-12-26T10:09:56 | 2016-12-26T10:09:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 175 | cc | main.cc | #include "smoke_scene.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
SmokeScene s;
s.show();
return a.exec();
}
|
df98513c11dc8602aedc1f47e5e04dfb580fd4bb | b1ec31f5854ee53f371332129ab053a845857aa5 | /C++/Solved/053_MaximumSubarray.h | 7055efec1bc80494e969e8b074c055325d6e1398 | [] | no_license | bubbercn/LeetCode | e9c1ec2e6f9260b69f64e63fbd2bf97cf65e3ad7 | 42c19adba8d360059e8159564d7384d662c24e8d | refs/heads/master | 2023-08-31T10:40:06.288845 | 2023-08-26T13:55:55 | 2023-08-26T13:55:55 | 56,971,005 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 687 | h | 053_MaximumSubarray.h | #pragma once
#include "Common.h"
class Solution {
public:
int maxSubArray(vector<int>& nums)
{
int sum = *nums.begin();
int max = sum;
if (sum < 0)
{
sum = 0;
}
for (auto i = ++nums.begin(); i < nums.end(); i++)
{
sum += *i;
if (sum > max)
{
max = sum;
}
if (sum < 0)
{
sum = 0;
}
}
return max;
}
};
void Test()
{
Solution solution;
vector<int> input = {-2, 1, -3, 4, -1 ,2 ,1, -5, 4};
assert(solution.maxSubArray(input) == 6);
}
|
1b4fc7f2e1e3a2019ac2b357dc7e36379d54b0c2 | 13a32b92b1ba8ffb07e810dcc8ccdf1b8b1671ab | /home--tommy--mypy/mypy/lib/python2.7/site-packages/pystan/stan/src/stan/lang/generator/generate_function_functor.hpp | 390c9f6ebdcc8564721fc3b7912a2b7592ca4ec0 | [
"Unlicense"
] | permissive | tommybutler/mlearnpy2 | 8ec52bcd03208c9771d8d02ede8eaa91a95bda30 | 9e5d377d0242ac5eb1e82a357e6701095a8ca1ff | refs/heads/master | 2022-10-24T23:30:18.705329 | 2022-10-17T15:41:37 | 2022-10-17T15:41:37 | 118,529,175 | 0 | 2 | Unlicense | 2022-10-15T23:32:18 | 2018-01-22T23:27:10 | Python | UTF-8 | C++ | false | false | 2,047 | hpp | generate_function_functor.hpp | #ifndef STAN_LANG_GENERATOR_GENERATE_FUNCTION_FUNCTOR_HPP
#define STAN_LANG_GENERATOR_GENERATE_FUNCTION_FUNCTOR_HPP
#include <stan/lang/ast.hpp>
#include <stan/lang/generator/constants.hpp>
#include <stan/lang/generator/fun_scalar_type.hpp>
#include <stan/lang/generator/generate_function_arguments.hpp>
#include <stan/lang/generator/generate_function_inline_return_type.hpp>
#include <stan/lang/generator/generate_function_name.hpp>
#include <stan/lang/generator/generate_function_template_parameters.hpp>
#include <stan/lang/generator/generate_functor_arguments.hpp>
#include <ostream>
#include <string>
namespace stan {
namespace lang {
/**
* Generate the functor to accompnay a function with the specified
* declaration, writing to the specified stream.
*
* @param[in] fun function declaration
* @param[in,out] o stream for generating
*/
void generate_function_functor(const function_decl_def& fun,
std::ostream& o) {
if (fun.body_.is_no_op_statement())
return; // forward declaration, so no functor needed
bool is_rng = ends_with("_rng", fun.name_);
bool is_lp = ends_with("_lp", fun.name_);
bool is_pf = ends_with("_log", fun.name_)
|| ends_with("_lpdf", fun.name_) || ends_with("_lpmf", fun.name_);
std::string scalar_t_name = fun_scalar_type(fun, is_lp);
o << EOL << "struct ";
generate_function_name(fun, o);
o << "_functor__ {" << EOL;
o << INDENT;
generate_function_template_parameters(fun, is_rng, is_lp, is_pf, o);
o << INDENT;
generate_function_inline_return_type(fun, scalar_t_name, 1, o);
o << INDENT << "operator()";
generate_function_arguments(fun, is_rng, is_lp, is_pf, o);
o << " const {" << EOL;
o << INDENT2 << "return ";
generate_function_name(fun, o);
generate_functor_arguments(fun, is_rng, is_lp, is_pf, o);
o << ";" << EOL;
o << INDENT << "}" << EOL;
o << "};" << EOL2;
}
}
}
#endif
|
3be381b70ea50459c60a96d028f781e83546a63f | f323895c7d347fd0f51054d8342a1223c084f614 | /ipic3d/include/Larray.h | 2efeda988c841ccdf95b9df25838484050ad8e5c | [
"Apache-2.0"
] | permissive | EPCCed/MPI_OpenMP_tasks_OmpSs | a7f44663f4c33899337774109c4e7e7179cfef16 | 3c02f940c22e4be5a3a2187e476810ffe87e2fda | refs/heads/master | 2021-05-08T02:07:01.248796 | 2018-11-13T13:54:37 | 2018-11-13T13:54:37 | 107,958,643 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,883 | h | Larray.h | /* This release was prepared by Dana Akhmetova <danaak@kth.se>/<danieka@gmail.com> on behalf of the INTERTWinE European Exascale Project <http://www.intertwine-project.eu> */
/* iPIC3D was originally developed by Stefano Markidis and Giovanni Lapenta.
* This release was contributed by Alec Johnson and Ivy Bo Peng.
* Publications that use results from iPIC3D need to properly cite
* 'S. Markidis, G. Lapenta, and Rizwan-uddin. "Multi-scale simulations of
* plasma with iPIC3D." Mathematics and Computers in Simulation 80.7 (2010): 1509-1519.'
*
* Copyright 2015 KTH Royal Institute of Technology
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef Larray_h
#define Larray_h
#include "Alloc.h" // for ALIGNED
#include "ipicmath.h" // for pow2roundup
#include "asserts.h"
#include "string.h" // for memcpy
// linear array (e.g. of particles)
//
// This basically extends aligned_vector(type),
// and the interface should be maintained in line with std::vector.
// Unfortunately, the mechanisms that C++ provides for extending
// the interface of a class are deficient, particularly in
// the case of templates. Also, by avoiding implementation
// via inheritance from std::vector we also can specify the
// code at the lowest level, which is important for this
// performance-critical class.
//
template<class type>
class Larray
{
static const int num_elem_in_block = 8;
private: // members
type* list;
int _size; // number of particles in list
int _capacity; // maximum number of particles
private:
void check_index(int i)const
{
#ifdef CHECK_BOUNDS
assert_le(0, i);
assert_lt(i, _size);
#endif
}
public: // access on list
int size()const { return _size; }
int capacity()const { return _capacity; }
public: // operations
type& back(){ return list[_size-1]; }
void pop_back()
{
assert(_size>0);
_size--;
}
void clear()
{
_size = 0;
}
// this modifies std::vector::resize() by not initializing added elements
//void resize(int newsize, value_type val = value_type())
void resize(int newsize)
{
if(newsize <= _size)
{
_size = newsize;
}
else
{
reserve(newsize);
_size = newsize;
}
}
// unsafe version that assumes sufficient capacity
// (extends std::vector)
void fast_push_back(const type& element)
{
// remove this assertion to make this fast but unsafe
assert_ge(_size,_capacity);
list[_size] = element;
_size++;
}
void push_back(const type& element)
{
if(__builtin_expect(_size>=_capacity,false))
{
int newcapacity = pow2roundup(_size+1);
reserve(newcapacity);
}
list[_size] = element;
_size++;
}
inline const type& operator[](int i)const
{
check_index(i);
ALIGNED(list);
return list[i];
}
inline type& operator[](int i)
{
check_index(i);
ALIGNED(list);
return list[i];
}
// this extends std::vector
void delete_element(int i)
{
// works even for last particle,
// though pop would be faster in that case.
//
// why doesn't this compile?
//this->operator[i] = list[--_size];
check_index(i);
ALIGNED(list);
list[i] = list[--_size];
}
public: // memory
~Larray()
{
AlignedFree(list);
}
Larray():
list(0),
_size(0),
_capacity(0)
{}
Larray(int requested_size):
list(0),
_size(0),
_capacity(0)
{ if(requested_size > 0) reserve(requested_size); }
// exchange content of this class with content of x
void swap(Larray<type>& x)
{
// could do this with std::swap if willing to include
// <utility> (since C++11) or <algorithm> (until C++11):
//
//std::swap(list,x.list);
//std::swap(_size,x._size);
//std::swap(_capacity,x._capacity);
//
type* tmp_list = list;
int tmp_size = _size;
int tmp_capacity = _capacity;
list = x.list;
_size = x._size;
_capacity = x._capacity;
x.list = tmp_list;
x._size = tmp_size;
x._capacity = tmp_capacity;
}
// request capacity to be at least newcapacity without deleting elements
//
// to bring this into conformity with std::vector, this should
// be change so as never to shrink the capacity.
void reserve(int newcapacity)
{
// ignore request if requested size is too small
if(_size > newcapacity) return;
// round up size to a multiple of num_elem_in_block
//newcapacity = roundup_to_multiple(newcapacity,num_elem_in_block);
newcapacity = ((newcapacity-1)/num_elem_in_block+1)*num_elem_in_block;
if(newcapacity != _capacity)
{
_capacity = newcapacity;
type* oldList = list;
// the next two lines assume that type has no indirection
list = AlignedAlloc(type,_capacity);
memcpy(list,oldList,sizeof(type)*_size);
// for(int i=0;i<_size;i++) list[i] = oldList[i];
AlignedFree(oldList);
}
}
// should rename this function as shrink_to_fit to conform to std::vector.
void realloc_if_smaller_than(int required_max_size)
{
if(_size < required_max_size)
reserve(required_max_size);
}
void shrink()
{
// shrink _capacity by a factor of two if elements will fit.
int proposed_size = pow2rounddown(_capacity/2);
if( _size <= proposed_size && proposed_size < _capacity)
{
reserve(proposed_size);
}
}
};
#endif
|
ec8a940b4ff670892f41ad29c6d4048fe05e89e0 | f5a5a3a593dcd7f2c70f977528f764ac1d4a1b35 | /Setup-environment/Cluster_enviroment/Dashboard_Test/can_processing.cpp | 1fbca1a8fc20900d419ef0625febfabbab8cff4b | [] | no_license | PhamNguyen0106/Device-Driver | f51da709afc416ce57f7adb927ec0d5cf083d3f0 | ee946c34b8bcfd986194913cc87cedc31b833510 | refs/heads/master | 2020-12-29T16:13:29.014698 | 2020-05-12T02:58:59 | 2020-05-12T02:58:59 | 238,665,733 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 848 | cpp | can_processing.cpp | #include "can_define.h"
#include "shared_memory.h"
CanProcess::CanProcess(QObject *parent)
: QObject{parent}
{
}
#define PEDAL_ACCEL 0x109
#define STEERING_WHEEL 0x103
#define CRUISE_CONTROL 0x107
#define LIGHT_SYSTEM 0x200
#define LANE_DETECT 0x106
void CanProcess::process(quint16 pid, quint32 value)
{
switch(pid)
{
case PEDAL_ACCEL:
write_int_value(pid,value);
break;
case STEERING_WHEEL:
write_int_value(pid,value);
break;
case CRUISE_CONTROL:
write_int_value(pid,value);
break;
case LIGHT_SYSTEM:
write_uint8_value(option,boolean_value);
break;
case LANE_DETECT:
write_uint8_value(option,boolean_value);
break;
default:
break;
}
}
|
6ec350844c22b918c086be103cc2cb058690d177 | 4972197e6b613a1c0a031a29727ca89a4188d16b | /src/common/constants.h | eb399f129463fa732a191344895a8770675c77ff | [] | no_license | enterpriseih/cyprestore | 1947eaa639173d2c1f69b104c5d53bfc823d0e09 | d93790494b8794441a979569c8a1fcdf30db5ea9 | refs/heads/master | 2023-08-19T00:47:35.191413 | 2021-06-16T07:38:42 | 2021-06-16T07:38:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,558 | h | constants.h | /*
* Copyright (c) 2020 The Cyprestore Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. See the AUTHORS file for names of contributors.
*/
#ifndef CYPRESTORE_COMMON_CONSTANTS_H_
#define CYPRESTORE_COMMON_CONSTANTS_H_
#include <string>
namespace cyprestore {
namespace common {
const std::string kUserIdPrefix = "user-";
// pool_id = kPoolIdPrefix + [a-z];
const std::string kPoolIdPrefix = "pool-";
const std::string kRgIdPrefix = "rg-";
const std::string kBlobIdPrefix = "bb-";
const std::string kPoolKvPrefix = "0x00";
const std::string kUserKvPrefix = "0x01";
const std::string kESKvPrefix = "0x02";
const std::string kERKvPrefix = "0x03";
const std::string kRGKvPrefix = "0x04";
const std::string kBlobKvPrefix = "0x05";
// Blob && Extent && Block
const uint64_t kMaxBlobSize = 32 * (1ULL << 40); // 32TB
const uint32_t kDefaultExtentSize = 1 * (1U << 30); // 1GB
const uint32_t kDefaultBlockSize = 4 * (1U << 10); // 4KB
const uint64_t kAlignSize = 4 << 10; // 4k
// Bitmap Allocator
const uint32_t kBitmapChunkSize = 64 * (1U << 10); // 64KB Bitmap chunk size
const uint32_t kBitmapBlockSize = kDefaultExtentSize;
const int kMaxReplicaCount = 3;
const int kRgAvg = 50;
const double kRatioNearfull = 0.85;
const uint32_t kSpdkBDevAlignSize = 4096;
enum Module {
kAccess = 0,
kSetManager,
kExtentManager,
kExtentServer,
};
} // namespace common
} // namespace cyprestore
#endif // CYPRESTORE_COMMON_CONSTANTS_H_
|
89b973066693d5fab91149f03f58a9c0ff033227 | ca3177af4e0bf896c821c9ac785f84646b710fc9 | /examen1.cpp | d6e3b1c27a393d29efc9736cda18968e22bce8af | [] | no_license | alegalvez/Codigos | 57b2802b31b1baee01a854f376e3d2e233222620 | 383f36f8421ee0794d05d1dc8ec6dbce18dcfc14 | refs/heads/master | 2021-08-26T09:27:08.918996 | 2017-11-23T00:37:07 | 2017-11-23T00:37:07 | 104,091,535 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | cpp | examen1.cpp | #include <iostream>
using namespace std;
{
float n1, n2;
cout << " Enter your first number " << '\n';
cin >> n1;
cout << " Enter your second number " << '\n';
cin >> n2;
if (n1>n2)
{cout << n2 << '\n';}
else
{cout << n1 << '\n';}
return 0;
}
|
2facd48a5fa0c9964cb9f2376ade311e1e7db7e7 | e457d8cdc374db9bf888abcc33cea3c3b86615bb | /algorithm/distinctSubsequence.cpp | cab7546f96bf2636085453c9b799a043b9aafc3d | [] | no_license | shaoguangcheng/structure-algorithm | a0748219fa36ff6da6713f3361c90487924c53cf | 83190813440b4ca70de6b6577e8536fae4d85c68 | refs/heads/master | 2016-09-05T23:12:53.849594 | 2015-04-13T12:43:07 | 2015-04-13T12:43:07 | 27,029,072 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 838 | cpp | distinctSubsequence.cpp |
#include <iostream>
#include <string>
using namespace std;
int numDistinct(string& S, string & T)
{
int N = S.size(), M = T.size();
if(0 == N)
return 0;
int **d = new int* [N+1];
for(int i = 0; i < N+1; ++i)
d[i] = new int [M+1];
for(int i = 0; i < N+1; ++i)
for(int j = 0; j < M+1; ++j)
d[i][j] = 0;
for(int i = 1; i < N+1; ++i)
d[i][0] = 1;
for(int i = 1; i < N+1; ++i){
for(int j = 1; j < M+1; ++j){
if(S[i-1] == T[j-1])
d[i][j] = d[i-1][j] + d[i-1][j-1];
else
d[i][j] = d[i-1][j];
}
}
for(int i = 0; i < N+1; ++i){
for(int j = 0; j < M+1; ++j)
cout << d[i][j] << " ";
cout << endl;
}
int ans = d[N][M];
for(int i = 0; i < N; ++i)
delete [] d[i];
delete [] d;
return ans;
}
int main()
{
string s("rabbbit"), t("rabbit");
cout << numDistinct(s, t) << endl;
return 0;
} |
b9bb1719db6ba8c1b990da11edab690570dfe17d | e0db831d847e00ccb577df3a758151b072405e1b | /Remove-Duplicates-from-Sorted-Array-II/Remove-Duplicates-from-Sorted-Array-II.h | a782932395656a734d940e94483fdcdf0dd4c606 | [] | no_license | dariuskylin/leetcode | dc5c187f6e68bd3b97af68d5dfbec869721b237c | f6b005663de7045294930b49e66789ca75a36d46 | refs/heads/master | 2016-09-06T11:43:57.938963 | 2015-05-30T04:52:01 | 2015-05-30T04:52:01 | 13,622,042 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,538 | h | Remove-Duplicates-from-Sorted-Array-II.h | /*Copyright 2012 NDSL. All Rights Reserved.
* =====================================================================================
* Filename: Remove-Duplicates-from-Sorted-Array-II.h
* Description:
* Version: 1.0
* Created: 11/20/2013 01:48:12 AM
* Author: dongyuchi (dongyuchi), dongyuchi@gmail.com
* Company: UESTC.NDSL
* =====================================================================================
*/
#ifndef _REMOVE_DUPLICATES_FROM_SORTED_ARRAY_II_H_
#define _REMOVE_DUPLICATES_FROM_SORTED_ARRAY_II_H_
#include <iostream>
using namespace std;
class Solution {
public:
/*
* 设置一个计数器统计重复元素出现的次数,超过2则去除
*
* */
int removeDuplicates(int A[], int n) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
if( n == 0) return 0;
int MostAllowedNum = 1;
int N = 2;
int start = 1;
for(int i = 1; i < n; i++)
{
if(A[i] == A[i-1])
{
MostAllowedNum++;
if(MostAllowedNum > N)
continue;
else
A[start++] = A[i];
}
else
{
A[start++] = A[i];
MostAllowedNum = 1;
}
}
//for(int i = 0; i <start; i++)
// cout<<A[i]<<" ";
//cout<<endl;
return start;
}
};
#endif // _REMOVE_DUPLICATES_FROM_SORTED_ARRAY_II_H_
|
6e2b6217d134254e84068ddce02e5a3073e3fb28 | 30f82f6696dafd83b5c50da63817571695361c01 | /rendering/source/Camera.h | d981877d9e477c29aa2e114cd0130f6f3c6c008c | [] | no_license | Joppeloppe/3D-rendering | cd16d30ea48265e21f0c6ff47faca6db42eedd14 | a58473c7d466a9699a10e5394e156f454f4daf9b | refs/heads/master | 2021-01-23T05:10:11.308825 | 2017-05-31T14:56:51 | 2017-05-31T14:56:51 | 92,957,709 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,739 | h | Camera.h | //
// Camera.h
//
// Basic camera class
//
#pragma once
#ifndef CAMERA_H
#define CAMERA_H
#include "vec\vec.h"
#include "vec\mat.h"
using namespace linalg;
class camera_t
{
float vfov, aspect; // aperture attributes
float zNear, zFar; // clip planes
vec3f position;
float roll, pitch, yaw;
public:
//Constructor
camera_t(
float vfov,
float aspect,
float zNear,
float zFar):
vfov(vfov), aspect(aspect), zNear(zNear), zFar(zFar)
{
roll = 0;
pitch = 0;
yaw = 0;
}
//Camera movement function
void moveTo(const vec3f& p)
{
position = p;
}
void moveUpDown(const vec3f& v)
{
position += v;
}
void RotateY(const float& angle)
{
yaw += angle;
}
void Pitch(const float& angle)
{
pitch += angle;
}
void cMoveForBackward(const float& vel_DT, int val = 1)
{
vec4f tr = { 0.f, 0.f, (float)val * vel_DT, 0.f };
position += (get_ViewToWorld() * tr).xyz();
}
void cMoveRigtLeft(const float& vel_DT, int val = 1)
{
vec4f tr = { (float)val * vel_DT, 0,0,0 };
position += (get_ViewToWorld() * tr).xyz();
}
//
//Reset camera function
void resetCamera()
{
position = { 0, 0, 5 };
pitch = 0;
yaw = 0;
roll = 0;
}
//Get functions
mat4f get_WorldToViewMatrix()
{
//return mat4f::translation(-position);
mat4f rot = mat4f::rotation(0, yaw, pitch);
return linalg::transpose(rot) * mat4f::translation(-position);
}
mat4f get_ProjectionMatrix() const
{
return mat4f::projection(vfov, aspect, zNear, zFar);
}
vec3f Get_CameraPos()
{
return position;
}
private:
mat4f get_ViewToWorld()
{
//return mat4f::translation(position) * (mat4f::rotation(yaw, 0,1,0) * mat4f::rotation(pitch, 1,0,0));
return get_WorldToViewMatrix().inverse();
}
};
#endif |
b579b6569bf993d459f12147602e6bbc2c379c1b | 9cad4b1cfb16fee8b8d39b73f46cccb2bc27f851 | /src/main.cpp | 21b0da9aaa488043a877efe5a6dff2a89d5ea0d0 | [] | no_license | priyachaudhari/smart-class-iot | 2e37cf209ab02dbe2985ee2b1f3c65faecd852fe | 64a8f7f29692c86ce1d97f93a2e81df091737461 | refs/heads/master | 2020-07-09T18:35:02.419248 | 2019-08-23T18:27:48 | 2019-08-23T18:27:48 | 204,049,852 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,595 | cpp | main.cpp | #include <Arduino.h>
#include <BLEDevice.h>
#include <BLEUtils.h>
#include <BLEScan.h>
#include <BLEAdvertisedDevice.h>
#include <string>
#include <vector>
#include <set>
#include <iterator>
#include <WiFiClientSecure.h>
#include <PubSubClient.h>
#include <ArduinoJson.h>
#include <WiFiUdp.h>
#include "pins_arduino.h"
#include <NTPClient.h>
#include<SPI.h>
#include<LoRa.h>
using namespace std;
int scanTime = 5;
BLEScan* pBLEScan;
BLEClient* pClient ;
static BLERemoteCharacteristic* pRemoteCharacteristic;
BLERemoteService* pRemoteService;
static BLEUUID serviceUUID("1366e33f-7ddb-4891-a3d2-03abe2a703c1");
static BLEUUID charUUID("8b5e9d07-b509-4d68-b983-becfea66f9c4");
const char* ssid = "LAPTOP-P4HHO4P1";
const char* password = "Abcd1233";
const char* awsEndpoint = "a1y1zh2yxjgx9j-ats.iot.us-west-2.amazonaws.com";
const char* topic = "arn:aws:iot:us-west-xxx:thing/Node1";
const char* topic2 = "arn:aws:iot:us-west-xxx:thing/Node2";
const char* subscribeTopic = topic;
const char* subscribeTopic2 = topic2;
const char* certificate_pem_crt = \
"-----BEGIN CERTIFICATE-----\n" \
"-----END CERTIFICATE-----\n";
// xxxxxxxxxx-private.pem.key
const char* private_pem_key = \
"-----BEGIN RSA PRIVATE KEY-----\n" \
"-----END RSA PRIVATE KEY-----\n";
// This key should be fine as is. It is just the root certificate.
const char* rootCA = \
"-----BEGIN CERTIFICATE-----\n" \
"-----END CERTIFICATE-----\n";
WiFiClientSecure wiFiClient;
static BLEAdvertisedDevice* myDevice;
void msgReceived(char* topic, byte* payload, unsigned int len);
PubSubClient pubSubClient(awsEndpoint, 8883, msgReceived, wiFiClient);
void pubSubCheckConnect();
set<string> student_data;
std::map<string,string> answer;
void onReceive(int packetSize);
void setup() {
Serial.begin(9600);
Serial.println("Scanning...");
BLEDevice::init("");
pBLEScan = BLEDevice::getScan();
pBLEScan->setActiveScan(true);
pBLEScan->setInterval(100);
pBLEScan->setWindow(99);
delay(50);
Serial.printf("SDK version: %s\n", ESP.getSdkVersion());
Serial.print("Connecting to ");
Serial.print(ssid);
WiFi.begin(ssid, password);
WiFi.waitForConnectResult();
Serial.print(", WiFi connected, IP address: ");
Serial.println(WiFi.localIP());
wiFiClient.setCACert(rootCA);
wiFiClient.setCertificate(certificate_pem_crt);
wiFiClient.setPrivateKey(private_pem_key);
SPI.begin(LORA_SCK,LORA_MISO,LORA_MOSI,LORA_CS);
LoRa.setSPI(SPI);
LoRa.setPins(LORA_CS, LORA_RST, LORA_IRQ);
Serial.println("LoRa Receiver");
if (!LoRa.begin(915E6)) {
Serial.println("Starting LoRa failed!");
while (1);
}
LoRa.onReceive(onReceive);
LoRa.receive();
}
void loop() {
// put your main code here, to run repeatedly:
pubSubCheckConnect();
set<string> tempData;
BLEScanResults foundDevices = pBLEScan->start(scanTime, false);
for(int i=0;i<foundDevices.getCount();i++)
{
String x = foundDevices.getDevice(i).toString().c_str();
if(isDigit(x.substring(x.indexOf(':')+2,x.indexOf(','))[0]))
{
tempData.insert(x.substring(x.indexOf(':')+2,x.indexOf(',')).c_str());
}
}
if(tempData.size() > student_data.size())
{
for(int i=0;i<foundDevices.getCount();i++)
{
String x = foundDevices.getDevice(i).toString().c_str();
String realData = x.substring(x.indexOf(':')+2,x.indexOf(','));
if(tempData.find(realData.c_str()) != tempData.end() && student_data.find(realData.c_str()) == student_data.end())
{
StaticJsonBuffer<300> JSONbuffer;
JsonObject& JSONencoder = JSONbuffer.createObject();
JSONencoder["key_value"] = realData.substring(0,realData.indexOf(" "));
JSONencoder["name"] = realData.substring(realData.indexOf(" ") + 1);
char JSONmessageBuffer[100];
JSONencoder.printTo(JSONmessageBuffer, sizeof(JSONmessageBuffer));
boolean rc = pubSubClient.publish(topic,JSONmessageBuffer);
student_data.insert(realData.c_str());
Serial.print(realData.c_str());
Serial.println(" came to class!!");
}
}
}
else if(tempData.size() < student_data.size())
{
for(string f:student_data)
{
if(tempData.find(f) == tempData.end())
{
String x = f.c_str();
StaticJsonBuffer<300> JSONbuffer;
JsonObject& JSONencoder = JSONbuffer.createObject();
JSONencoder["key_value"] = x.substring(0,x.indexOf(" "));
char JSONmessageBuffer[100];
JSONencoder.printTo(JSONmessageBuffer, sizeof(JSONmessageBuffer));
boolean rc = pubSubClient.publish(topic2,JSONmessageBuffer);
student_data.erase(f);
answer.erase(f);
Serial.print(f.c_str());
Serial.println(" left the class!!");
}
}
}
else
{
Serial.println("----------------------------------");
if(student_data.size() > 0)
{
if(answer.size() == 0)
{
Serial.println("No answers from students!!");
}
else
{
std::map<string, string>::iterator it;
for ( it = answer.begin(); it != answer.end(); it++ )
{
string name = it->first;
string val = it->second;
Serial.print(name.c_str());
Serial.print(" answered ");
Serial.println(val.c_str());
}
}
}
else
{
Serial.println("No students present");
}
Serial.println("----------------------------------");
}
pBLEScan->clearResults();
pClient = NULL;
delay(5000);
}
void msgReceived(char* topic, byte* payload, unsigned int length) {
// Serial.print("Message received on ");
// Serial.print(topic);
// Serial.print(": ");
// for (int i = 0; i < length; i++) {
// Serial.print((char) payload[i]);
// }
// Serial.println();
}
void pubSubCheckConnect() {
if (!pubSubClient.connected()) {
Serial.print("PubSubClient connecting to: ");
Serial.print(awsEndpoint);
while (!pubSubClient.connected()) {
Serial.print(".");
pubSubClient.connect("ESPthingXXXX");
delay(1000);
}
Serial.println(" connected");
pubSubClient.subscribe(subscribeTopic);
}
pubSubClient.loop();
}
void onReceive(int packetSize) {
String sname;
for (int i = 0; i < packetSize; i++) {
sname.concat((char)LoRa.read());
}
if(isDigit(sname.substring(0,2)[0] ) && isDigit(sname.substring(0,2)[1] ) && student_data.find(sname.substring(0,sname.indexOf('-')).c_str()) != student_data.end())
{
answer[sname.substring(0,sname.indexOf('-')).c_str()] = sname.substring(sname.indexOf('-')+1).c_str();
}
}
|
046cb9498daedcc3875e4f99385a6012b6e4d85f | 4048dc505f87f5dc27fd8a8c920e51cd72e44aa2 | /applications/digedag/src/util/uid.cpp | 76e3fa34930394919f647574d4bf09c515e4d9bf | [] | no_license | saga-project/saga-cpp-legacy-projects | 007af3860994a3f10c7163b4b271cccd7eb10eb8 | 2874ff6714776ee721a46f5b68f317e0d1dbfbf9 | refs/heads/master | 2023-04-05T00:47:38.636238 | 2023-03-31T14:47:42 | 2023-03-31T14:47:42 | 5,780,249 | 0 | 3 | null | 2023-03-31T14:47:43 | 2012-09-12T13:38:02 | TeX | UTF-8 | C++ | false | false | 579 | cpp | uid.cpp |
#include <iostream>
#include "util/uid.hpp"
namespace digedag
{
namespace util
{
// the 'uid generator' - this int is getting increased on each uid instance
// creation, so that a new instance gets a new id.
static unsigned int uid_cnt_ = 1;
uid::uid (void)
: id_ (uid_cnt_++)
{
}
// instance copy does not create a new id, but maintains the old one.
// NOTE: this may not be what the user wants in all cases!
uid::uid (const uid & src)
{
this->id_ = src.id_;
}
} // namespace util
} // namespace digedag
|
5739e17e638486f6801cfb2042dfffc979be50ac | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-cloudfront/include/aws/cloudfront/model/OriginGroupMember.h | 76548294cf7383fc086a42061459c18535c62f6d | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 2,467 | h | OriginGroupMember.h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cloudfront/CloudFront_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace CloudFront
{
namespace Model
{
/**
* <p>An origin in an origin group.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/OriginGroupMember">AWS
* API Reference</a></p>
*/
class OriginGroupMember
{
public:
AWS_CLOUDFRONT_API OriginGroupMember();
AWS_CLOUDFRONT_API OriginGroupMember(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_CLOUDFRONT_API OriginGroupMember& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline const Aws::String& GetOriginId() const{ return m_originId; }
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline bool OriginIdHasBeenSet() const { return m_originIdHasBeenSet; }
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline void SetOriginId(const Aws::String& value) { m_originIdHasBeenSet = true; m_originId = value; }
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline void SetOriginId(Aws::String&& value) { m_originIdHasBeenSet = true; m_originId = std::move(value); }
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline void SetOriginId(const char* value) { m_originIdHasBeenSet = true; m_originId.assign(value); }
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline OriginGroupMember& WithOriginId(const Aws::String& value) { SetOriginId(value); return *this;}
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline OriginGroupMember& WithOriginId(Aws::String&& value) { SetOriginId(std::move(value)); return *this;}
/**
* <p>The ID for an origin in an origin group.</p>
*/
inline OriginGroupMember& WithOriginId(const char* value) { SetOriginId(value); return *this;}
private:
Aws::String m_originId;
bool m_originIdHasBeenSet = false;
};
} // namespace Model
} // namespace CloudFront
} // namespace Aws
|
4c42bf5afbdb9aba7d7f05d934256e0ce9877a23 | 8d39f509abf62a0947f3e9dd11a1bc02665b609e | /comp2012h/csd_only/assignments/PA3-PtrClass/Sol/zwangbm/Matrix.h | 87e40962c9a279c901ebe3a1a730a5add33bf9c7 | [] | no_license | clcheungac/clcheungac.github.io | c77c8a0c5b2261cf37602ce644c143e266184277 | 815885f2af89ef3ac32fad607786c6e8fa47c6e0 | refs/heads/master | 2021-01-10T13:08:37.959427 | 2018-12-30T13:44:20 | 2018-12-30T13:44:20 | 48,602,655 | 1 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,662 | h | Matrix.h | /*
* Matrix.h
*
* Created on: 2015Äê10ÔÂ1ÈÕ
* Author: ThinkPad
*/
#ifndef MATRIX_H_
#define MATRIX_H_
class Matrix { //Matrix class
public:
explicit Matrix (int rows = 0, int cols = 0);
//constructor
Matrix (const Matrix & mt); //copy constructor
~Matrix(); //destructor
int rows() const; //return the number of rows of the matrix
int cols() const; //return the number of columns of the matrix
double & el(int i, int j); //access (i,j)th element
void assign(const Matrix & op); //copy values from op
Matrix mul(const Matrix & op) const;//multiplication of matrices
Matrix transpose() const; //the transpose of matrix
Matrix inverse() const; //the inverse of matrix
//Add your public member functions, if any, in the following
Matrix (int row, int col, const Matrix &); //get the submatrix of the matrix without row th row and col th column
void print () const;
double calDet(int);
Matrix add(const Matrix & op,double,double) const;//includes addition and substraction of matrices
//e.g. A.add(B,2,3); ---> 2*A+3*B
Matrix power(const Matrix & op,int) const; //calculate the power of the matrix
Matrix sol(const Matrix &) const; //calculate the solution of Ax = b; Matrix x = A.sol(b);
double calTrace() const;// calculate the trace of a square matrix
void ref (int); // Ab.ref();
int rank() const; // return the rank of the matrix A.rank();
private:
double **elm; //matrix elements
int r; //number of rows
int c; //number of columns
//Add your private data members and private member functions,
//if any, in the following
};
#endif /* MATRIX_H_ */
|
2ec1cc5170120e3bba5fcf3f06bc1a247e50abfa | 8c1dbeb23cb2bcf0fe44b62f703486dcc99f79a4 | /v3/Architect/src/common/thread/ConditionVariableException.h | e764b9f98e2a37cc21b879feff404550a6566b6b | [] | no_license | JefGrailet/treenet | 0e2bf104ea347ec0efd221e3b91f738d69ca90e8 | 10cfdcd7e94d73ab29c129ccffb07c4ba6dbcadd | refs/heads/master | 2020-12-24T06:42:31.569006 | 2019-10-14T10:06:17 | 2019-10-14T10:06:17 | 34,863,160 | 10 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 495 | h | ConditionVariableException.h | /*
* ConditionVariableException.h
*
* Created on: Jul 9, 2008
* Author: root
*/
#ifndef CONDITIONVARIABLEEXCEPTION_H_
#define CONDITIONVARIABLEEXCEPTION_H_
#include <string>
using std::string;
#include "../exception/NTmapException.h"
class ConditionVariableException: public NTmapException {
public:
ConditionVariableException(const string & msg="Condition Variable Error Occurred");
virtual ~ConditionVariableException() throw();
};
#endif /* CONDITIONVARIABLEEXCEPTION_H_ */
|
5fef4b00a92d668318c07782661762f0cbdbd470 | f4cc29ec4b2456349a92a2df010e100d61cbc549 | /gmlib/src/PathManager/CPathManager.h | 743155c9e1ca27aafc13f81a2016e4039493020b | [] | no_license | YosukeNitta/blackright_ | 16bcd6598a3b128b1b9f892922bbf344895fa3c1 | d02f6201c157fc055dcd22272b72be15d23a671f | refs/heads/master | 2023-07-19T10:48:08.908168 | 2021-09-16T10:18:03 | 2021-09-16T10:18:03 | 407,120,122 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,041 | h | CPathManager.h |
#pragma once
#include "IPathManager.h"
#include <vector>
#include <string>
namespace gmlib
{
class CPathManager : public IPathManager
{
std::vector<std::wstring> m_paths;
public:
/**
スタックにパスを登録する.
絶対パスを登録した場合は、カレントパスは絶対パスとなる.
相対パスを登録した場合は、カレントパスは登録前のカレントパスに相対パスを適用したパスとなる.
@param path 登録するパス.
@return エラーコード.
*/
virtual LRESULT pushPath(const WCHAR *path);
/**
スタックから最新の登録パスを取り除く.
最後に成功したpushPath(const WCHAR *path)の影響を取り除く.
@return エラーコード. スタックに1つもパスが無い場合に呼び出された場合、エラーとなる.
*/
virtual LRESULT popPath();
/**
現在のカレントパスを取得する.
@return 現在のカレントパス文字列へのポインタ.
*/
virtual const WCHAR *getPath()const;
};
}//namespace gmlib |
539485192439c6036670fd95352fcb2502ac2314 | 96917fe56a6aec58a6ba83d320efda16716a014a | /cocos2d-x-2.2.0/projects/lenonle/Classes/MainViewScene.cpp | f119a0bc912f5142ec6ab33a3f884b17ac2099c0 | [
"MIT"
] | permissive | miaomiaoling/aalgnaqjrp317 | db2bd575c27ea46269a983a6aa3e3c387f141421 | ec9f77f41d3adb19b191db8347eb178f76d829a0 | refs/heads/master | 2020-06-05T03:36:09.726500 | 2014-01-08T05:43:56 | 2014-01-08T05:43:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,885 | cpp | MainViewScene.cpp | #include "MainViewScene.h"
#include "CustomerCenterScene.h"
#include "HotelCenterScene.h"
#include "cocos-ext.h"
#include "../extensions/network/HttpClient.h"
#include "../extensions/network/HttpRequest.h"
USING_NS_CC_EXT;
USING_NS_CC;
using namespace CSJson;
using namespace std;
// on "init" you need to initialize your instance
bool MainView::init()
{
//////////////////////////////
// 1. super init first
if ( !CCScene::init() )
{
return false;
}
CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();
CCPoint origin = CCDirector::sharedDirector()->getVisibleOrigin();
m_pUILayer = UILayer::create();
//********************加载场景资源******************//
Layout* equipe_root = dynamic_cast<Layout*>(CCUIHELPER->createWidgetFromJsonFile("cocosgui/mainView/mainView.json"));
m_pUILayer->addWidget(equipe_root);
// hotel center btn
UIButton* hotel_btn = dynamic_cast<UIButton*>(m_pUILayer->getWidgetByName("hotel_btn"));
hotel_btn->addReleaseEvent(this, coco_releaseselector(MainView::hotelCenterBtnCallBack));
// customer center btn
UIButton* customer_btn = dynamic_cast<UIButton*>(m_pUILayer->getWidgetByName("customer_btn"));
customer_btn->addReleaseEvent(this, coco_releaseselector(MainView::customerCenterBtnCallBack));
this->addChild(m_pUILayer);
getData();
return true;
}
void MainView::hotelCenterBtnCallBack(CCObject* pSender)
{
HotelCenter* pScene = new HotelCenter();
pScene->init();
CCDirector::sharedDirector()->replaceScene(pScene);
}
void MainView::customerCenterBtnCallBack(CCObject* pSender)
{
CustomerCenter* pScene = new CustomerCenter();
pScene->init();
CCDirector::sharedDirector()->replaceScene(pScene);
}
void MainView::getData()
{
CCHttpClient* httpClient = CCHttpClient::getInstance();
CCHttpRequest* httpReq =new CCHttpRequest();
httpReq->setRequestType(CCHttpRequest::kHttpGet);
httpReq->setUrl("http://www.lenonle.com/app/api.aspx?reqcode=11004&memberid=156&pageSize=10&pageIndex=2&sign=");
httpReq->setResponseCallback(this,callfuncND_selector(MainView::httpReqFinished));
httpReq->setTag("FirstNet");
httpClient->setTimeoutForConnect(30);
httpClient->send(httpReq);
//httpReq->autorelease();
}
void MainView::httpReqFinished( CCNode* node,CCObject* obj )
{
CCHttpResponse* response = (CCHttpResponse*)obj;
if (!response->isSucceed())
{
CCLog("Receive Error! %s\n",response->getErrorBuffer());
return ;
}
const char* tag = response->getHttpRequest()->getTag();
if ( 0 == strcmp("FirstNet",tag))
{
vector<char> *data = response->getResponseData();
int data_length = data->size();
string res;
for (int i = 0;i<data_length;++i)
{
res+=(*data)[i];
}
res+='\0';
CCLog("%s",res.c_str());
parserJson(res);
}
}
void MainView::parserJson(string detail)
{
//parser jason
Reader reader;
Value root;
Value array;
if (reader.parse(detail, root))
{
if (!root["mylist"].isNull())
{
array = root.get("mylist", array);
string str = array[0]["dcity"].asString();
CCLOG("%s",str.c_str());
}
}
//parser jason//
//// create json////
Value map;
map["name"] = "this is test";
FastWriter write;
string jsonData = write.write(map);
CCLOG("%s",jsonData.c_str());
Value CreateArray;
CreateArray["arrKey1"]="arrValue1";
CreateArray["arrKey2"]="arrValue2";
CreateArray["arrKey3"]="arrValue3";
root["arrayKey"] =CreateArray;
string hJsonData = write.write(root);
CCLOG("%s",hJsonData.c_str());
//// create json////
} |
e8d3a2f170d2aab1c61059ea1f053712a6c8b1a9 | 02b804e5db4915147a4af828e610f8ed3110e1bb | /src/not_suspicious/NtDll.h | 066ebafae164858b06b2f1e11ae374fe41e30090 | [
"MIT"
] | permissive | cpkt9762/showstopper | 82558315deabcebc950e58c7f5e88c6c645d3517 | 26c1b7e4859ebc024b51db5530cc6f87a5919e6f | refs/heads/master | 2022-11-12T01:57:33.083622 | 2020-07-09T07:04:24 | 2020-07-09T07:04:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,351 | h | NtDll.h | #ifndef _NTDLL_H_
#define _NTDLL_H_
namespace ntdll
{
//
// Macro
//
#define NtCurrentThread ((HANDLE)-2)
#define STATUS_INFO_LENGTH_MISMATCH 0xC0000004
#define PDI_MODULES 0x01
#define PDI_BACKTRACE 0x02
#define PDI_HEAPS 0x04
#define PDI_HEAP_TAGS 0x08
#define PDI_HEAP_BLOCKS 0x10
#define PDI_LOCKS 0x20
//
// Types
//
typedef enum _PROCESS_INFORMATION_CLASS {
ProcessBasicInformation = 0,
ProcessDebugPort = 7,
ProcessLdtInformation = 10,
ProcessWow64Information = 26,
ProcessImageFileName = 27,
ProcessBreakOnTermination = 29,
ProcessDebugObjectHandle = 30,
ProcessDebugFlags = 31,
} PROCESS_INFORMATION_CLASS;
typedef enum _THREAD_INFORMATION_CLASS {
ThreadMemoryPriority = 0,
ThreadAbsoluteCpuPriority = 1,
ThreadDynamicCodePolicy = 2,
ThreadPowerThrottling = 3,
ThreadInformationClassMax = 4,
ThreadHideFromDebugger = 17,
} THREAD_INFORMATION_CLASS;
typedef enum _SYSTEM_INFORMATION_CLASS
{
SystemKernelDebuggerInformation = 35,
} SYSTEM_INFORMATION_CLASS;
typedef enum _OBJECT_INFORMATION_CLASS
{
ObjectAllTypesInformation = 3,
} OBJECT_INFORMATION_CLASS;
typedef enum _MEMORY_INFORMATION_CLASS {
MemoryBasicInformation,
MemoryWorkingSetList,
} MEMORY_INFORMATION_CLASS;
typedef struct _PROCESS_BASIC_INFORMATION
{
NTSTATUS ExitStatus;
PPEB PebBaseAddress;
ULONG_PTR AffinityMask;
KPRIORITY BasePriority;
HANDLE UniqueProcessId;
HANDLE InheritedFromUniqueProcessId;
} PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION;
typedef struct _RTL_HEAP_TAG
{
ULONG NumberOfAllocations;
ULONG NumberOfFrees;
ULONG BytesAllocated;
USHORT TagIndex;
USHORT CreatorBackTraceIndex;
WCHAR TagName[24];
} RTL_HEAP_TAG, *PRTL_HEAP_TAG;
typedef struct _RTL_HEAP_ENTRY
{
ULONG Size;
USHORT Flags;
USHORT AllocatorBackTraceIndex;
union
{
struct
{
ULONG Settable;
ULONG Tag;
} s1;
struct
{
ULONG CommittedSize;
PVOID FirstBlock;
} s2;
} u;
} RTL_HEAP_ENTRY, *PRTL_HEAP_ENTRY;
typedef struct _RTL_HEAP_INFORMATION
{
PVOID BaseAddress;
ULONG Flags;
USHORT EntryOverhead;
USHORT CreatorBackTraceIndex;
ULONG BytesAllocated;
ULONG BytesCommitted;
ULONG NumberOfTags;
ULONG NumberOfEntries;
ULONG NumberOfPseudoTags;
ULONG PseudoTagGranularity;
ULONG Reserved[5];
PRTL_HEAP_TAG Tags;
PRTL_HEAP_ENTRY Entries;
} RTL_HEAP_INFORMATION, *PRTL_HEAP_INFORMATION;
typedef struct _RTL_PROCESS_HEAPS
{
ULONG NumberOfHeaps;
RTL_HEAP_INFORMATION Heaps[1];
} RTL_PROCESS_HEAPS, *PRTL_PROCESS_HEAPS;
typedef struct _DEBUG_BUFFER {
HANDLE SectionHandle;
PVOID SectionBase;
PVOID RemoteSectionBase;
ULONG SectionBaseDelta;
HANDLE EventPairHandle;
ULONG Unknown[2];
HANDLE RemoteThreadHandle;
ULONG InfoClassMask;
ULONG SizeOfInfo;
ULONG AllocatedSize;
ULONG SectionSize;
PVOID ModuleInformation;
PVOID BackTraceInformation;
PVOID HeapInformation;
PVOID LockInformation;
PVOID Reserved[8];
} DEBUG_BUFFER, *PDEBUG_BUFFER;
typedef struct _RTL_DEBUG_INFORMATION
{
HANDLE SectionHandleClient;
PVOID ViewBaseClient;
PVOID ViewBaseTarget;
ULONG ViewBaseDelta;
HANDLE EventPairClient;
HANDLE EventPairTarget;
HANDLE TargetProcessId;
HANDLE TargetThreadHandle;
ULONG Flags;
ULONG OffsetFree;
ULONG CommitSize;
ULONG ViewSize;
struct _RTL_PROCESS_MODULES *Modules;
struct _RTL_PROCESS_BACKTRACES *BackTraces;
struct _RTL_PROCESS_HEAPS *Heaps;
struct _RTL_PROCESS_LOCKS *Locks;
PVOID SpecificHeap;
HANDLE TargetProcessHandle;
PVOID Reserved[6];
} RTL_DEBUG_INFORMATION, *PRTL_DEBUG_INFORMATION;
typedef struct _SYSTEM_KERNEL_DEBUGGER_INFORMATION {
BOOLEAN DebuggerEnabled;
BOOLEAN DebuggerNotPresent;
} SYSTEM_KERNEL_DEBUGGER_INFORMATION, *PSYSTEM_KERNEL_DEBUGGER_INFORMATION;
typedef struct _OBJECT_TYPE_INFORMATION
{
UNICODE_STRING TypeName;
ULONG TotalNumberOfHandles;
ULONG TotalNumberOfObjects;
} OBJECT_TYPE_INFORMATION, *POBJECT_TYPE_INFORMATION;
typedef struct _OBJECT_ALL_INFORMATION
{
ULONG NumberOfObjects;
OBJECT_TYPE_INFORMATION ObjectTypeInformation[1];
} OBJECT_ALL_INFORMATION, *POBJECT_ALL_INFORMATION;
typedef union _PSAPI_WORKING_SET_BLOCK {
ULONG Flags;
struct {
ULONG Protection :5;
ULONG ShareCount :3;
ULONG Shared :1;
ULONG Reserved :3;
ULONG VirtualPage:20;
};
} PSAPI_WORKING_SET_BLOCK, *PPSAPI_WORKING_SET_BLOCK;
typedef struct _MEMORY_WORKING_SET_LIST
{
ULONG NumberOfPages;
PSAPI_WORKING_SET_BLOCK WorkingSetList[1];
} MEMORY_WORKING_SET_LIST, *PMEMORY_WORKING_SET_LIST;
typedef struct _PROCESS_LDT_INFORMATION
{
ULONG Start;
ULONG Length;
LDT_ENTRY LdtEntries[1];
} PROCESS_LDT_INFORMATION, *PPROCESS_LDT_INFORMATION;
typedef struct _RTL_UNKNOWN_FLS_DATA {
PVOID unk1;
PVOID unk2;
PVOID unk3;
PVOID Argument;
} RTL_UNKNOWN_FLS_DATA, *PRTL_UNKNOWN_FLS_DATA;
//
// Functions
//
NTSTATUS WINAPI NtQueryInformationProcess(
IN HANDLE ProcessHandle,
IN PROCESS_INFORMATION_CLASS ProcessInformationClass,
OUT PVOID ProcessInformation,
IN ULONG ProcessInformationLength,
OUT PULONG ReturnLength
);
NTSTATUS WINAPI NtSetInformationProcess(
IN HANDLE ProcessHandle,
IN PROCESS_INFORMATION_CLASS ProcessInformationClass,
IN PVOID ProcessInformation,
IN ULONG ProcessInformationLength
);
PDEBUG_BUFFER WINAPI RtlCreateQueryDebugBuffer(
ULONG Size,
BOOLEAN EventPair
);
NTSTATUS WINAPI RtlQueryProcessHeapInformation(
PRTL_DEBUG_INFORMATION Buffer
);
NTSTATUS WINAPI RtlQueryProcessDebugInformation(
ULONG ProcessId,
ULONG DebugInfoClassMask,
PDEBUG_BUFFER DebugBuffer
);
NTSTATUS WINAPI NtQuerySystemInformation(
SYSTEM_INFORMATION_CLASS SystemInformationClass,
PVOID SystemInformation,
ULONG SystemInformationLength,
PULONG ReturnLength
);
NTSTATUS WINAPI NtSetInformationThread(
HANDLE ThreadHandle,
THREAD_INFORMATION_CLASS ThreadInformationClass,
PVOID ThreadInformation,
ULONG ThreadInformationLength
);
NTSTATUS WINAPI NtQueryInformationThread(
HANDLE ThreadHandle,
THREAD_INFORMATION_CLASS ThreadInformationClass,
PVOID ThreadInformation,
ULONG ThreadInformationLength,
PULONG ReturnLength
);
DWORD WINAPI CsrGetProcessId(VOID);
NTSTATUS WINAPI NtQueryObject(
HANDLE Handle,
OBJECT_INFORMATION_CLASS ObjectInformationClass,
PVOID ObjectInformation,
ULONG ObjectInformationLength,
PULONG ReturnLength
);
NTSTATUS WINAPI NtQueryVirtualMemory(
HANDLE ProcessHandle,
PVOID BaseAddress,
MEMORY_INFORMATION_CLASS MemoryInformationClass,
PVOID MemoryInformation,
SIZE_T MemoryInformationLength,
PSIZE_T ReturnLength
);
NTSTATUS WINAPI RtlProcessFlsData(
PRTL_UNKNOWN_FLS_DATA Buffer
);
NTSTATUS WINAPI NtSetDebugFilterState(
ULONG ComponentId,
ULONG Level,
BOOLEAN State
);
ULONG WINAPI DbgPrint(
PCSTR Format,
...
);
}
#endif // _NTDLL_H_
|
00cb9ca93772e3a704e84e3e2ba14a559899fa1f | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5634697451274240_0/C++/wwt15/B.cpp | 052ece845058badd76fbf95533d63b9a3ec56d2f | [] | 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 | 747 | cpp | B.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef double db;
typedef pair<int,int> pii;
#define eprintf(...) fprintf(stderr,__VA_ARGS__)
int n;
char s[105];
int Main(){
scanf("%s",s);
n=strlen(s);
while(n&&s[n-1]=='+') n--;
if(n==0) return 0;
int ans=0;
if(s[0]=='-'){
ans++;
reverse(s,s+n);
for(int i=0;i<n;i++) if(s[i]=='-') s[i]='+'; else s[i]='-';
while(n&&s[n-1]=='+') n--;
}
while(n){
ans+=2;
while(n&&s[n-1]=='-') n--;
while(n&&s[n-1]=='+') n--;
}
return ans;
}
int main(){
freopen("B-small-attempt0.in","r",stdin);
freopen("B.out","w",stdout);
int T; scanf("%d",&T);
for(int Case=1;Case<=T;Case++){
printf("Case #%d: %d\n",Case,Main());
}
}
|
bc1039f8e43118a708e99ab4e45ec7cfa23c51b0 | dd628b52d512d354ef34f5a1a18c7be3656dc3a6 | /ExtIndexList.h | 9c4c4292ca05e5d49d34309e1abdefc2627bf6b0 | [] | no_license | Marioandres717/CS-115 | c741293bed8b21bc8361fb6130884896c9f76875 | c36c06561966c41045665050b883078468a2b00a | refs/heads/master | 2021-01-19T07:58:02.691724 | 2017-04-07T21:11:50 | 2017-04-07T21:11:50 | 87,587,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 356 | h | ExtIndexList.h | #pragma once
#include <iostream>
#include <string>
#include "IndexList.h"
using namespace std;
#ifndef EXTINDEXLIST_H
#define EXTINDEXLIST_H
template<class T, int maxsize>
class ExtList : public indexList<T, maxsize> {
public:
ExtList();
bool append(const indexList&, const indexList&);
void selSort();
int Binary(int);
};
#endif // !EXTINDEXLIST_H
|
2f4bf767a50cd15757965a373af8f689a2ad09c6 | 1443759dd6c44db7e6fff26f28c91b1eba9c383f | /Spike12_Announcements_Blackboard/Components/Open.h | c00576c05c9fee843ca97a4121a5d02d09406632 | [] | no_license | jessicavilaysak/GamesProgramming_7646895 | 303cb6c4806e75d63f6e1c0e2948a91b5732a432 | dd00f39568d25c6a3df2fe7ada8eb030df9e2ec1 | refs/heads/master | 2021-06-05T11:11:24.012688 | 2016-11-02T11:19:26 | 2016-11-02T11:19:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 459 | h | Open.h | //
// Created by Jessica Vilaysak on 9/10/2016.
//
#pragma once
#include "Component.h"
#ifndef COMPONENTPATTERN_OPEN_H
#define COMPONENTPATTERN_OPEN_H
class Open : public Component
{
private:
vector<string> _canOpenWith;
bool _open;
public:
Open();
void setCanOpenWith(vector<string> openwith);
void openObject();
bool isOpen();
bool canOpenWith(string id);
string getOpenWithVector();
};
#endif //COMPONENTPATTERN_OPEN_H
|
45b9fa0c47345c9d7549fd38bba4d79f54d00685 | 8e4f92d3589ff22d74c748d6fe3a9b50ce14fe4a | /cpp/src2/incremental.cpp | b7d623006a2a2b4292ece01a8b736eeaf46c04e6 | [] | no_license | mishun/tangles-legacy | dd1b132317bc03abb2f952de51e84cae770fbc91 | e392e235a5aac689a0ab31969e170a5e07d96981 | refs/heads/master | 2021-01-15T21:01:58.566732 | 2013-10-28T12:25:11 | 2013-10-28T12:25:11 | 31,887,625 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,884 | cpp | incremental.cpp | #include <ctime>
#include <iostream>
#include <Tangles/IncrementalTangleBase.h>
#include <Tangles/IncrementalTangleProjection.h>
#include <Tangles/IncrementalTangleTemplate.h>
#include <Tangles/IncrementalProjectionsGenerator.h>
#include <Tangles/IncrementalReducedGenerator.h>
#include <Tangles/IncrementalTemplatesGenerator.h>
#include <Topology/EmbeddedGraph.h>
#include <Graph/PSPrinter.h>
#include <Draw/CircleDrawer.h>
#include <Numerical/NaturalNumber.h>
using Tangles::IncrementalTangleBase;
using Tangles::IncrementalTangleProjection;
using Tangles::IncrementalTangleTemplate;
using Tangles::IncrementalReducedProjection;
Graph::PSPrinter ps("output.ps");
class ProjectionsGenerator : public Tangles::IncrementalProjectionsGenerator
{
private:
size_t count[32] [32];
public:
ProjectionsGenerator(size_t max_v)
: IncrementalProjectionsGenerator(max_v)
{
for(size_t i = 0; i < 32; i++)
for(size_t j = 0; j < 32; j++)
count[i] [j] = 0;
}
virtual void init()
{
}
virtual void print(const IncrementalTangleProjection & tangle)
{
// size_t symmetry = tangle.getPeriod();
// if(!tangle.hasMirrorSymmetry())
// symmetry *= 2;
count[tangle.numberOfCrossings()] [tangle.numberOfLegs() >> 1]++;// += symmetry;
// if(tangle.numberOfLegs() == 4 && tangle.numberOfCrossings() < 5)
// ps.print(Draw::CircleDrawer::draw(tangle.toGraph(), 3, true));
}
virtual void done()
{
std::cerr << "IncrementalProjectionsGenerator::generate(): " << total() << " total";
std::cerr << " (" << time() << "s, " << total() / time() << "t/s)\n";
std::cout << "legs\\v\t";
for(unsigned i = 1; i <= maxCrossings; i++)
std::cout << i << "\t";
std::cout << "\n";
for(unsigned i = 4; i <= 2 * (maxCrossings + 1); i += 2)
{
std::cout << i << "\t";
for(unsigned j = 1; j <= maxCrossings; j++)
std::cout << count[j] [i >> 1] << "\t";
std::cout << "\n";
}
std::cout << "total:\t";
for(unsigned i = 1; i <= maxCrossings; i++)
{
unsigned total = 0;
for(unsigned j = 0; j <= maxCrossings + 1; j++)
total += count[i] [j];
std::cout << total << "\t";
}
std::cout << "\n";
}
};
class TemplatesGenerator : public Tangles::IncrementalTemplatesGenerator
{
private:
size_t count[32] [32];
public:
TemplatesGenerator(size_t max_v)
: IncrementalTemplatesGenerator(max_v)
{
for(size_t i = 0; i < 32; i++)
for(size_t j = 0; j < 32; j++)
count[i] [j] = 0;
}
virtual void init()
{
}
virtual void print(const IncrementalTangleTemplate & tangle)
{
count[tangle.numberOfCrossings()] [tangle.numberOfLegs() >> 1]++;
}
virtual void done()
{
std::cerr << "IncrementalTemplatesGenerator::generate(): " << total() << " total";
std::cerr << " (" << time() << "s, " << total() / time() << "t/s)\n";
std::cout << "legs\\v\t";
for(unsigned i = 1; i <= maxCrossings; i++)
std::cout << i << "\t";
std::cout << "\n";
for(unsigned i = 4; i <= 2 * (maxCrossings + 1); i += 2)
{
std::cout << i << "\t";
for(unsigned j = 1; j <= maxCrossings; j++)
std::cout << count[j] [i >> 1] << "\t";
std::cout << "\n";
}
std::cout << "total:\t";
for(unsigned i = 1; i <= maxCrossings; i++)
{
unsigned total = 0;
for(unsigned j = 0; j <= maxCrossings + 1; j++)
total += count[i] [j];
std::cout << total << "\t";
}
std::cout << "\n";
}
};
class ReducedGenerator : public Tangles::IncrementalReducedGenerator
{
private:
size_t count[32] [32];
public:
ReducedGenerator(size_t max_v)
: IncrementalReducedGenerator(max_v)
{
for(size_t i = 0; i < 32; i++)
for(size_t j = 0; j < 32; j++)
count[i] [j] = 0;
}
virtual void init()
{
}
virtual void print(const IncrementalReducedProjection & tangle)
{
count[tangle.numberOfCrossings()] [tangle.numberOfLegs() >> 1]++;
}
virtual void done()
{
std::cerr << "IncrementalReducedGenerator::generate(): " << total() << " total";
std::cerr << " (" << time() << "s, " << total() / time() << "t/s)\n";
std::cout << "legs\\v\t";
for(unsigned i = 1; i <= maxCrossings; i++)
std::cout << i << "\t";
std::cout << "\n";
for(unsigned i = 4; i <= 2 * (maxCrossings + 1); i += 2)
{
std::cout << i << "\t";
for(unsigned j = 1; j <= maxCrossings; j++)
std::cout << count[j] [i >> 1] << "\t";
std::cout << "\n";
}
std::cout << "total:\t";
for(unsigned i = 1; i <= maxCrossings; i++)
{
unsigned total = 0;
for(unsigned j = 0; j <= maxCrossings + 1; j++)
total += count[i] [j];
std::cout << total << "\t";
}
std::cout << "\n";
}
};
int main()
{
const size_t v = 9;
// {
// AlternatingGenerator generator(v);
// generator.generate();
// }
// {
// ProjectionsGenerator generator(v);
// generator.generate();
// }
{
TemplatesGenerator generator(v);
generator.generate();
}
// {
// ReducedGenerator generator(v);
// generator.generate();
// }
return 0;
}
|
e3446f4987b39f275d88ea7810a9ebba3781e843 | c8a8b1b2739ff50c3565cdc1497e6abf4492b3dd | /src/csapex_core/src/param/parameter_factory.cpp | e6d2e3cdf0de83913ed55fc06ccb18f50d0759d8 | [] | permissive | betwo/csapex | 645eadced88e65d6e78aae4049a2cda5f0d54b4b | dd8e24f14cdeef59bedb8f974ebdc0b0c656ab4c | refs/heads/master | 2022-06-13T06:15:10.306698 | 2022-06-01T08:50:51 | 2022-06-01T09:03:05 | 73,413,991 | 0 | 0 | BSD-3-Clause | 2020-01-02T14:01:01 | 2016-11-10T19:26:29 | C++ | UTF-8 | C++ | false | false | 14,182 | cpp | parameter_factory.cpp | /// HEADER
#include <csapex/param/parameter_factory.h>
/// COMPONENT
#include <csapex/param/color_parameter.h>
#include <csapex/param/path_parameter.h>
#include <csapex/param/interval_parameter.h>
#include <csapex/param/trigger_parameter.h>
#include <csapex/param/bitset_parameter.h>
#include <csapex/param/range_parameter.h>
#include <csapex/param/value_parameter.h>
#include <csapex/param/string_list_parameter.h>
#include <csapex/param/output_progress_parameter.h>
#include <csapex/param/output_text_parameter.h>
#include <csapex/param/set_parameter.h>
/// SYSTEM
#include <iostream>
using namespace csapex;
using namespace param;
void factory::registerParameterType(const std::string& type, std::function<ParameterBuilder()> constructor)
{
// std::cout << "register constructor " << type << std::endl;
ParameterFactory& i = ParameterFactory::instance();
i.registerParameterType(type, constructor);
}
void factory::deregisterParameterType(const std::string& type)
{
// std::cout << "deregister constructor " << type << std::endl;
ParameterFactory& i = ParameterFactory::instance();
i.deregisterParameterType(type);
}
void factory::ParameterFactory::registerParameterType(const std::string& type, std::function<ParameterBuilder()> constructor)
{
type_to_constructor.insert(std::make_pair(type, constructor));
}
void factory::ParameterFactory::deregisterParameterType(const std::string& type)
{
auto pos = type_to_constructor.find(type);
if (pos != type_to_constructor.end()) {
type_to_constructor.erase(pos);
}
}
ParameterBuilder factory::ParameterFactory::makeEmpty(const std::string& type)
{
if (type_to_constructor.find(type) == type_to_constructor.end()) {
throw std::runtime_error(std::string("cannot create parameter, no such type (") + type + ")");
}
return type_to_constructor[type]();
}
ParameterBuilder factory::makeEmpty(const std::string& type)
{
std::string t = type;
std::transform(t.begin(), t.end(), t.begin(), tolower);
return ParameterFactory::instance().makeEmpty(type);
}
ParameterBuilder factory::clone(const Parameter* param)
{
return param->cloneAs<Parameter>();
}
ParameterBuilder factory::clone(const Parameter& param)
{
return clone(¶m);
}
ParameterBuilder factory::clone(const std::shared_ptr<Parameter>& param)
{
return clone(param.get());
}
ParameterBuilder factory::declareParameterBitSet(const std::string& name, const ParameterDescription& description, const std::map<std::string, int>& set, int def)
{
std::shared_ptr<BitSetParameter> result(new BitSetParameter(name, description, def));
result->setBitSet(set);
result->set<int>(def);
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareParameterBitSet(const std::string& name, const std::map<std::string, int>& set, int def)
{
return declareParameterBitSet(name, ParameterDescription(), set, def);
}
ParameterBuilder factory::declareParameterBitSet(const std::string& name, const ParameterDescription& description, const std::map<std::string, std::pair<int, bool>>& set)
{
std::map<std::string, int> raw_set;
int def = 0;
for (std::map<std::string, std::pair<int, bool>>::const_iterator it = set.begin(); it != set.end(); ++it) {
raw_set[it->first] = it->second.first;
if (it->second.second) {
def += it->second.first;
}
}
return declareParameterBitSet(name, description, raw_set, def);
}
ParameterBuilder factory::declareParameterBitSet(const std::string& name, const std::map<std::string, std::pair<int, bool>>& set)
{
return factory::declareParameterBitSet(name, ParameterDescription(), set);
}
ParameterBuilder factory::declareBool(const std::string& name, const ParameterDescription& description, bool def)
{
std::shared_ptr<ValueParameter> result(new ValueParameter(name, description, def));
result->set<bool>(def);
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareBool(const std::string& name, bool def)
{
return declareBool(name, ParameterDescription(), def);
}
ParameterBuilder factory::declareColorParameter(const std::string& name, const ParameterDescription& description, int r, int g, int b)
{
std::shared_ptr<ColorParameter> result(new ColorParameter(name, description, r, g, b));
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareColorParameter(const std::string& name, int r, int g, int b)
{
return declareColorParameter(name, ParameterDescription(), r, g, b);
}
ParameterBuilder factory::declareTrigger(const std::string& name, const ParameterDescription& description)
{
std::shared_ptr<TriggerParameter> result(new TriggerParameter(name, description));
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareStringList(const std::string& name, const ParameterDescription& description, const std::vector<std::string>& list)
{
std::shared_ptr<StringListParameter> result(new StringListParameter(name, description));
result->set(list);
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareStringList(const std::string& name, const std::vector<std::string>& list)
{
return declareStringList(name, ParameterDescription(), list);
}
ParameterBuilder factory::declareTrigger(const std::string& name)
{
return declareTrigger(name, ParameterDescription());
}
ParameterBuilder factory::declarePath(const std::string& name, const ParameterDescription& description, bool is_file, const std::string& def, const std::string& filter, bool input, bool output)
{
std::shared_ptr<PathParameter> result(new PathParameter(name, description, filter, is_file, input, output));
result->set(def);
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareFileInputPath(const std::string& name, const ParameterDescription& description, const std::string& def, const std::string& filter)
{
return declarePath(name, description, true, def, filter, true, false);
}
ParameterBuilder factory::declareFileInputPath(const std::string& name, const std::string& def, const std::string& filter)
{
return declareFileInputPath(name, ParameterDescription(), def, filter);
}
ParameterBuilder factory::declareFileOutputPath(const std::string& name, const ParameterDescription& description, const std::string& def, const std::string& filter)
{
return declarePath(name, description, true, def, filter, false, true);
}
ParameterBuilder factory::declareFileOutputPath(const std::string& name, const std::string& def, const std::string& filter)
{
return declareFileOutputPath(name, ParameterDescription(), def, filter);
}
ParameterBuilder factory::declareFileInputOutputPath(const std::string& name, const ParameterDescription& description, const std::string& def, const std::string& filter)
{
return declarePath(name, description, true, def, filter, true, true);
}
ParameterBuilder factory::declareFileInputOutputPath(const std::string& name, const std::string& def, const std::string& filter)
{
return declareFileInputOutputPath(name, ParameterDescription(), def, filter);
}
ParameterBuilder factory::declareDirectoryInputPath(const std::string& name, const ParameterDescription& description, const std::string& def, const std::string& filter)
{
return declarePath(name, description, false, def, filter, true, false);
}
ParameterBuilder factory::declareDirectoryInputPath(const std::string& name, const std::string& def, const std::string& filter)
{
return declareDirectoryInputPath(name, ParameterDescription(), def, filter);
}
ParameterBuilder factory::declareDirectoryOutputPath(const std::string& name, const ParameterDescription& description, const std::string& def, const std::string& filter)
{
return declarePath(name, description, false, def, filter, false, true);
}
ParameterBuilder factory::declareDirectoryOutputPath(const std::string& name, const std::string& def, const std::string& filter)
{
return declareDirectoryOutputPath(name, ParameterDescription(), def, filter);
}
ParameterBuilder factory::declareDirectoryInputOutputPath(const std::string& name, const ParameterDescription& description, const std::string& def, const std::string& filter)
{
return declarePath(name, description, false, def, filter, true, true);
}
ParameterBuilder factory::declareDirectoryInputOutputPath(const std::string& name, const std::string& def, const std::string& filter)
{
return declareDirectoryInputOutputPath(name, ParameterDescription(), def, filter);
}
ParameterBuilder factory::declareText(const std::string& name, const ParameterDescription& description, const std::string& def)
{
std::shared_ptr<ValueParameter> result(new ValueParameter(name, description));
result->set(def);
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareText(const std::string& name, const std::string& def)
{
return declareText(name, ParameterDescription(""), def);
}
ParameterBuilder factory::declareParameterStringSet(const std::string& name, const ParameterDescription& description, const std::vector<std::string>& set, const std::string& def)
{
std::shared_ptr<SetParameter> result;
if (!set.empty()) {
result.reset(new SetParameter(name, description, def));
} else {
result.reset(new SetParameter(name, description));
}
result->setSet(set);
if (!set.empty()) {
std::string v = def;
if (v.empty()) {
v = set[0];
}
result->set<std::string>(v);
}
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareParameterStringSet(const std::string& name, const std::vector<std::string>& set, const std::string& def)
{
return declareParameterStringSet(name, ParameterDescription(), set, def);
}
ParameterBuilder factory::declareOutputProgress(const std::string& name, const ParameterDescription& description)
{
std::shared_ptr<OutputProgressParameter> result(new OutputProgressParameter(name, description));
return ParameterBuilder(std::move(result));
}
ParameterBuilder factory::declareOutputText(const std::string& name, const ParameterDescription& description)
{
std::shared_ptr<OutputTextParameter> result(new OutputTextParameter(name, description));
return ParameterBuilder(std::move(result));
}
namespace csapex
{
namespace param
{
template <typename T>
ParameterBuilder factory::declareRange(const std::string& name, const ParameterDescription& description, T min, T max, T def, T step)
{
static_assert(boost::mpl::contains<RangeParameterTypes, T>::value, "");
step = param::range::limitStep<T>(min, max, step);
std::shared_ptr<RangeParameter> result(new RangeParameter(name, description, def, min, max, step));
result->set<T>(def);
return ParameterBuilder(std::move(result));
}
template <typename T>
ParameterBuilder factory::declareInterval(const std::string& name, const ParameterDescription& description, T min, T max, T def_min, T def_max, T step)
{
static_assert(boost::mpl::contains<IntervalParameterTypes, T>::value, "");
std::shared_ptr<IntervalParameter> result(new IntervalParameter(name, description, std::make_pair(def_min, def_max), min, max, step));
result->set<std::pair<T, T>>(std::make_pair(def_min, def_max));
return ParameterBuilder(std::move(result));
}
template <typename T>
ParameterBuilder factory::detail::declareParameterSetImpl(const std::string& name, const ParameterDescription& description, const std::map<std::string, T>& set_values, const T& def)
{
std::unique_ptr<SetParameter> result(new SetParameter(name, description, def));
result->setSet(set_values);
if (!set_values.empty()) {
result->set<T>(def);
}
return ParameterBuilder(std::move(result));
}
template <typename T>
ParameterBuilder factory::declareValue(const std::string& name, const ParameterDescription& description, const T& def)
{
std::unique_ptr<ValueParameter> result(new ValueParameter(name, description, def));
result->set<T>(def);
return ParameterBuilder(std::move(result));
}
/// EXPLICIT INSTANTIATON
namespace
{
template <typename T>
struct argument_type;
template <typename T, typename U>
struct argument_type<T(U)>
{
typedef U type;
};
} // namespace
#define INSTANTIATE(T) \
template ParameterBuilder factory::detail::declareParameterSetImpl(const std::string&, const ParameterDescription&, const std::map<std::string, argument_type<void(T)>::type>&, \
const argument_type<void(T)>::type&); \
template ParameterBuilder factory::declareValue(const std::string&, const ParameterDescription&, const argument_type<void(T)>::type&);
INSTANTIATE(bool)
INSTANTIATE(int)
INSTANTIATE(double)
INSTANTIATE(long)
INSTANTIATE(std::string)
INSTANTIATE((std::pair<int, int>))
INSTANTIATE((std::pair<double, double>))
INSTANTIATE((std::pair<std::string, bool>))
INSTANTIATE((std::vector<int>))
INSTANTIATE((std::vector<double>))
INSTANTIATE((std::vector<std::string>))
template ParameterBuilder factory::declareRange<double>(const std::string& name, const ParameterDescription& description, double min, double max, double def, double step);
template ParameterBuilder factory::declareRange<int>(const std::string& name, const ParameterDescription& description, int min, int max, int def, int step);
template ParameterBuilder factory::declareInterval<double>(const std::string& name, const ParameterDescription& description, double min, double max, double def_min, double def_max, double step);
template ParameterBuilder factory::declareInterval<int>(const std::string& name, const ParameterDescription& description, int min, int max, int def_min, int def_max, int step);
} // namespace param
} // namespace csapex
|
699611ea5bb71303073e0489c40c3bf4e695dbf4 | b5c22e5167552adab871c3b74cc4a8f6f955b842 | /vst/Source/plugins/compressor/CompressorAudioProcessor.h | 88e84c1ea8d0a923dac29c9e3e627a0192f148d2 | [] | no_license | vincent23/blankenhain | 8c1b6403ab0817bffc010bb5b0f71fe3d26a1510 | ccc64228148daa325efa9c590da20a46142668af | refs/heads/master | 2023-04-28T23:30:23.730587 | 2016-04-05T21:47:20 | 2016-04-05T21:47:20 | 41,966,748 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,115 | h | CompressorAudioProcessor.h | #pragma once
#include <juce>
#include "BlankenhainAudioProcessor.h"
#include "FloatParameter.h"
#include "BoolParameter.h"
class CompressorAudioProcessor : public BlankenhainAudioProcessor
{
public:
CompressorAudioProcessor();
void prepareToPlay(double sampleRate, int samplesPerBlock) override;
void releaseResources() override;
void processBlock(AudioSampleBuffer&, MidiBuffer&) override;
AudioProcessorEditor* createEditor() override;
void setRatio(float ratio);
void setThreshold(float threshold);
void setAttack(float attack);
void setRelease(float release);
void setLimiter(bool value);
float getRatio();
float getRelease();
float getThreshold();
float getAttack();
bool getLimiter();
protected:
var getState() override;
void setState(const var& state) override;
private:
Sample* envelope;
FloatParameter *release;
FloatParameter *attack;
FloatParameter *ratio;
FloatParameter *threshold;
BoolParameter *limiterOn;
CircularBuffer<Sample> delayLine;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CompressorAudioProcessor)
};
|
accbddb50f583327f91e7ada34a66b6b4a3b014d | 27d238755d54237a4c682f74e4e97675e28dd2b6 | /classes/Donor.cpp | 3c3b7bc05d62e127d09c712c655f6d1962e421a0 | [] | no_license | lucasdepaula/sbvbproject | 1144e95303ed8c6be426b8b41092d6cddc515ee3 | 6b6f6154e522fcaf002d856fa2e88544099f18f6 | refs/heads/master | 2016-09-08T16:29:58.034829 | 2014-12-02T15:45:33 | 2014-12-02T15:45:33 | 24,475,125 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,903 | cpp | Donor.cpp | #include "Donor.h"
void Donor::create()
// don't delete the following line as it's needed to preserve source code of this autogenerated element
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A78 begin
{
}
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A78 end
// don't delete the previous line as it's needed to preserve source code of this autogenerated element
void Donor::update()
// don't delete the following line as it's needed to preserve source code of this autogenerated element
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A7A begin
{
}
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A7A end
// don't delete the previous line as it's needed to preserve source code of this autogenerated element
void Donor::delete()
// don't delete the following line as it's needed to preserve source code of this autogenerated element
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A7C begin
{
}
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A7C end
// don't delete the previous line as it's needed to preserve source code of this autogenerated element
void Donor::getAllDonors()
// don't delete the following line as it's needed to preserve source code of this autogenerated element
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A7E begin
{
}
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A7E end
// don't delete the previous line as it's needed to preserve source code of this autogenerated element
void Donor::getDonor(void id)
// don't delete the following line as it's needed to preserve source code of this autogenerated element
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A80 begin
{
}
// section 127-0-1-1--32cefa1:149bf256bc4:-8000:0000000000000A80 end
// don't delete the previous line as it's needed to preserve source code of this autogenerated element
|
057abc32b4a9abb97448b8770efc8b5f7b090fe0 | d02f11c90994842470d4dade05e3bea392b2a829 | /GameDev2D/Source/Framework/Collision/CollisionFilter.h | cacc1198c1ac7edcb632623ff1a175990479b647 | [] | no_license | Algonquin-GameDev/GAM1547-GameDev2D | 004901623f2510535f024ff14d13617feea34b5a | 60e4155aea60cd093c72d3fce208759eea65c607 | refs/heads/master | 2020-12-03T20:19:16.100389 | 2020-03-19T14:12:25 | 2020-03-19T14:12:25 | 231,472,864 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 366 | h | CollisionFilter.h | #pragma once
namespace GameDev2D
{
struct CollisionFilter
{
CollisionFilter(unsigned short categoryBits, unsigned short maskBits);
CollisionFilter();
//Returns wether another CollisionFilter can collide with it
bool CanCollide(const CollisionFilter& filter);
//The collision filter bits
unsigned short categoryBits;
unsigned short maskBits;
};
} |
71bfe6fe25e1a7de6c661ea6ee2e1994ff6a6474 | bef042b1b93e0d77b2cff02cc5fdfa555803cd5c | /Source/FlavoredNeutrinoContainer.cpp | ee050e2d9ffb0677d36a5bfb2891bd8104997bda | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | AMReX-Astro/Emu | 581c1c20af23c25bcb173a37af2924127608351a | d25f5bb69eff0ddd247e3b43445a91519382eb5c | refs/heads/release | 2023-08-08T08:10:02.514384 | 2021-09-17T16:35:58 | 2021-09-17T16:35:58 | 228,717,670 | 11 | 4 | NOASSERTION | 2023-09-14T18:18:43 | 2019-12-17T23:13:37 | C++ | UTF-8 | C++ | false | false | 3,591 | cpp | FlavoredNeutrinoContainer.cpp | #include "FlavoredNeutrinoContainer.H"
#include "Constants.H"
#include <sstream>
#include <string>
using namespace amrex;
void FlavoredNeutrinoContainer::
SyncLocation(int type)
{
BL_PROFILE("FlavoredNeutrinoContainer::SyncLocation");
AMREX_ASSERT(type==Sync::CoordinateToPosition || type==Sync::PositionToCoordinate);
const int lev = 0;
#ifdef _OPENMP
#pragma omp parallel
#endif
for (FNParIter pti(*this, lev); pti.isValid(); ++pti)
{
const int np = pti.numParticles();
ParticleType* pstruct = &(pti.GetArrayOfStructs()[0]);
amrex::ParallelFor (np, [=] AMREX_GPU_DEVICE (int i) {
ParticleType& p = pstruct[i];
if (type == Sync::CoordinateToPosition) {
// Copy integrated position to the particle position.
p.pos(0) = p.rdata(PIdx::x);
p.pos(1) = p.rdata(PIdx::y);
p.pos(2) = p.rdata(PIdx::z);
} else if (type == Sync::PositionToCoordinate) {
// Copy the reset particle position back to the integrated position.
p.rdata(PIdx::x) = p.pos(0);
p.rdata(PIdx::y) = p.pos(1);
p.rdata(PIdx::z) = p.pos(2);
}
});
}
}
void FlavoredNeutrinoContainer::
UpdateLocationFrom(FlavoredNeutrinoContainer& Ploc)
{
// This function updates particle locations in the current particle container
// using the particle locations in particle container Ploc.
//
// We also copy the particle id's so particles invalidated in Ploc are
// invalidated for the current particle container as well.
BL_PROFILE("FlavoredNeutrinoContainer::UpdateLocationFrom");
const int lev = 0;
#ifdef _OPENMP
#pragma omp parallel
#endif
for (FNParIter pti(*this, lev); pti.isValid(); ++pti)
{
auto grid_tile = pti.GetPairIndex();
auto& this_tile = this->ParticlesAt(lev, grid_tile.first, grid_tile.second);
auto& ploc_tile = Ploc.ParticlesAt(lev, grid_tile.first, grid_tile.second);
AMREX_ASSERT(this_tile.numParticles() == ploc_tile.numParticles());
int np = this_tile.numParticles();
ParticleType* ps_this = &(this_tile.GetArrayOfStructs()[0]);
ParticleType* ps_ploc = &(ploc_tile.GetArrayOfStructs()[0]);
amrex::ParallelFor (np, [=] AMREX_GPU_DEVICE (int i) {
ParticleType& p_this = ps_this[i];
ParticleType& p_ploc = ps_ploc[i];
AMREX_ASSERT(p_this.id() == p_ploc.id() || p_this.id() == -p_ploc.id());
p_this.pos(0) = p_ploc.pos(0);
p_this.pos(1) = p_ploc.pos(1);
p_this.pos(2) = p_ploc.pos(2);
// if the particle has been invalidated in Ploc, invalidate it here also
if (p_ploc.id() < 0) {
p_this.id() = p_ploc.id();
}
});
}
}
void FlavoredNeutrinoContainer::
Renormalize(const TestParams* parms)
{
BL_PROFILE("FlavoredNeutrinoContainer::Renormalize");
const int lev = 0;
const auto dxi = Geom(lev).InvCellSizeArray();
const auto plo = Geom(lev).ProbLoArray();
#ifdef _OPENMP
#pragma omp parallel
#endif
for (FNParIter pti(*this, lev); pti.isValid(); ++pti)
{
const int np = pti.numParticles();
ParticleType * pstruct = &(pti.GetArrayOfStructs()[0]);
amrex::ParallelFor (np, [=] AMREX_GPU_DEVICE (int i) {
ParticleType& p = pstruct[i];
Real sumP, length, error;
#include "generated_files/FlavoredNeutrinoContainer.cpp_Renormalize_fill"
});
}
}
|
2e7faf01358778a1b8ecc63190deb969bcb4d0dc | c488fd8142c35258d682620717c288ccf50c68ea | /Heros/Timmy.cc | 437939117caddd7df41c8bc1a457522f4c462732 | [] | no_license | nathanembaye/journey-to-dragons-hollow | 929cf5c389c70a41db0787475b2aa066368d9d84 | fc18073f427b0411d03ea95a68e481fdf092f02c | refs/heads/master | 2022-07-01T14:29:43.561302 | 2020-05-13T03:28:59 | 2020-05-13T03:28:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 484 | cc | Timmy.cc | #include "Timmy.h"//include hear
#include <iostream>
using namespace std;
#include <string>
// hero Timmy that is 1 of 2 heros from Creature class and 1 of 9 quest players from create
//collision does nothing but has his own move function moving rightwards towards emerals
int random(int);//for random num generator
Timmy::Timmy():Hero(15,3,3,2,random(5)+1){// constructor for timmy, in order of health, armor, strength, x and y. works with creature constructor
avatar = 'T';
}
|
ddbb29f03a3dd22a1ae0748313c79808800f9592 | 05a982529e5a40ecc186cb3f18f752d5dcd8224c | /mainBrackets.cpp | 7038161ec779f4272ea3e6c24fe37cdf69756e81 | [] | no_license | Kuber-code/coding | 37a52e5eec9ad9055d5e5d54f25401bee6380431 | 4bb83a629661bca02260fd14681c4f60c34d2114 | refs/heads/main | 2023-02-11T03:43:03.227806 | 2021-01-16T15:36:49 | 2021-01-16T15:36:49 | 324,036,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 726 | cpp | mainBrackets.cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#include <string>
using namespace std;
int BalancedBrackets(string S){
int result = 0;
stack <char> bracketsStack;
for (const char &bracket: S){
if (bracketsStack.size() > 0){
if((bracketsStack.top() == '(' ) && (bracket == ')' ))
bracketsStack.pop();
else
bracketsStack.push(bracket);
}
else
{
bracketsStack.push(bracket);
}
cout << bracket;
}
return 0;
}
int main (){
string S = "(())())))";
cout << "starting Brackets: " << S << endl;
BalancedBrackets(S);
system("pause");
return 0;
} |
dcdbda9a3f9ea3f54c6fe9698f1050b584aa2a42 | cacfb48180ab52b4493b4fb244f8a213580bf0fd | /BruteForse.cpp | 6e12aafff3899e6fb04fdc700d40cfb43846bc44 | [] | no_license | denshap/brute-force-attack | 81c25b65030542511aa586b849c707cbc2be6b39 | fffe66feb8ef9d7d3f2858c197a882f76c1daad1 | refs/heads/main | 2023-06-27T03:12:59.126951 | 2021-07-28T16:41:06 | 2021-07-28T16:41:06 | 390,483,785 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,567 | cpp | BruteForse.cpp | #include <vector>
#include <fstream>
#include <iostream>
#include "BruteForce.h"
#include "openssl/sha.h"
# define MAX_PASS_LENGTH 4
Timer::Timer() {
m_start = std::chrono::high_resolution_clock::now();
}
Timer::~Timer() {
m_end = std::chrono::high_resolution_clock::now();
std::chrono::duration<float> duration = m_end - m_start;
std::cout << "time:" << duration.count() << std::endl;
}
void Permutations::GenPermutations(std::vector<Password>& collection) {
mtx.lock();
size_t max = collection.size();
for (size_t j = 0; j < max && m_count != m_maxCount; ++j) {
m_pos[0]++;
m_count++;
for (size_t i = 0; i < MAX_PASS_LENGTH; i++) {
if (m_pos[i] == m_charSize) {
m_pos[i] = 1;
m_pos[i + 1]++;
}
collection[j].pass[i] = m_symbols[m_pos[i]];
}
}
mtx.unlock();
}
bool Permutations::CheckEnd() {
return m_count == m_maxCount;
}
Permutations::Permutations() {
for (size_t i = 0; i < MAX_PASS_LENGTH; i++) {
size_t tmp1 = m_charSize - 1;
for (size_t q = i; q; q--) {
int tmp2 = m_charSize - 1;
tmp1 *= tmp2;
}
m_maxCount += tmp1;
}
};
void ReadFile(const char* filePath, std::vector<unsigned char>& buf)
{
std::basic_fstream<unsigned char> fileStream(filePath, std::ios::binary | std::fstream::in);
if (!fileStream.is_open())
{
throw std::runtime_error("Can not open file ");
}
buf.clear();
buf.insert(buf.begin(), std::istreambuf_iterator<unsigned char>(fileStream), std::istreambuf_iterator<unsigned char>());
fileStream.close();
}
void WriteFile(const char* filePath, const std::vector<unsigned char>& buf)
{
std::basic_ofstream<unsigned char> fileStream(filePath, std::ios::binary);
fileStream.write(&buf[0], buf.size());
fileStream.close();
}
size_t GenLen(const Password& password) {
for (size_t i = MAX_PASS_LENGTH + 1; i != 0; i--) {
if (password.pass[i] == '\0') {
return i;
}
}
return 0;
}
void PasswordToKey(Password& password)
{
if (!EVP_BytesToKey(EVP_aes_128_cbc(), EVP_md5(), NULL,
password.pass, GenLen(password), 1, password.key, password.iv))
{
throw std::runtime_error("EVP_BytesToKey failed");
}
}
bool DecryptAes(const Password& password, const std::vector<unsigned char>& chipherText, std::vector<unsigned char>& decrypText)
{
EVP_CIPHER_CTX* ctx = EVP_CIPHER_CTX_new();
if (!EVP_DecryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, password.key, password.iv))
{
throw std::runtime_error("EncryptInit error");
}
int chipherTextSize = 0;
if (!EVP_DecryptUpdate(ctx, &decrypText[0], &chipherTextSize, &chipherText[0], chipherText.size())) {
EVP_CIPHER_CTX_free(ctx);
return false;
}
int lastPartLen = 0;
if (!EVP_DecryptFinal_ex(ctx, &decrypText[0] + chipherTextSize, &lastPartLen)) {
EVP_CIPHER_CTX_free(ctx);
return false;
}
chipherTextSize += lastPartLen;
decrypText.resize(chipherTextSize);
EVP_CIPHER_CTX_free(ctx);
return true;
}
void CalculateHash(const std::vector<unsigned char>& data, std::vector<unsigned char>& hashTmp)
{
SHA256_CTX sha256;
SHA256_Init(&sha256);
SHA256_Update(&sha256, &data[0], data.size());
SHA256_Final(&hashTmp[0], &sha256);
}
void Bruteforce(Permutations& Permutations, std::vector<unsigned char>& chipherText, const std::vector<unsigned char>& hash, char* filePath, bool* done) {
int n = 0;
std::vector<Password> collection(60000);
std::vector<unsigned char> decrypText(chipherText.size() * 1.1);
std::vector<unsigned char> hashTmp(SHA256_DIGEST_LENGTH);
while (*done != true) {
Permutations.GenPermutations(collection);
size_t max = collection.size();
for (size_t i = 0; i < max && !(*done); i++) {
PasswordToKey(collection[i]);
if (DecryptAes(collection[i], chipherText, decrypText)) {
CalculateHash(decrypText, hashTmp);
if (hashTmp == hash) {
std::cout << std::endl << collection[i].pass << std::endl;
*done = true;
WriteFile(filePath, decrypText);
}
}
}
if (Permutations.CheckEnd()) {
if (!*done) {
std::cout << std::endl<< "Password not found" << std::endl;
}
*done = true;
}
}
}
|
e232cf6dc82c0de8e9880c73ab01ca2fde72a35a | ffdc77394c5b5532b243cf3c33bd584cbdc65cb7 | /mindspore/lite/tools/converter/parser/onnx/onnx_pad_adjust.cc | 5b77f4b3687ac5b9982557803d83bd0fb81553a1 | [
"Apache-2.0",
"LicenseRef-scancode-proprietary-license",
"MPL-1.0",
"OpenSSL",
"LGPL-3.0-only",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-3-Clause-Open-MPI",
"MIT",
"MPL-2.0-no-copyleft-exception",
"NTP",
"BSD-3-Clause",
"GPL-1.0-or-later",
"0BSD",
"MPL-2.0",
"LicenseRef-scancode-free-unknown",
"AGPL-3.0-only",
"Libpng",
"MPL-1.1",
"IJG",
"GPL-2.0-only",
"BSL-1.0",
"Zlib",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-python-cwi",
"BSD-2-Clause",
"LicenseRef-scancode-gary-s-brown",
"LGPL-2.1-only",
"LicenseRef-scancode-other-permissive",
"Python-2.0",
"LicenseRef-scancode-mit-nagy",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense"
] | permissive | mindspore-ai/mindspore | ca7d5bb51a3451c2705ff2e583a740589d80393b | 54acb15d435533c815ee1bd9f6dc0b56b4d4cf83 | refs/heads/master | 2023-07-29T09:17:11.051569 | 2023-07-17T13:14:15 | 2023-07-17T13:14:15 | 239,714,835 | 4,178 | 768 | Apache-2.0 | 2023-07-26T22:31:11 | 2020-02-11T08:43:48 | C++ | UTF-8 | C++ | false | false | 5,804 | cc | onnx_pad_adjust.cc | /**
* Copyright 2021 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "tools/converter/parser/onnx/onnx_pad_adjust.h"
#include <string>
#include <vector>
#include <memory>
#include "mindspore/core/ops/lite_ops.h"
#include "ops/reshape.h"
#include "ops/primitive_c.h"
#include "tools/common/tensor_util.h"
#include "tools/optimizer/common/gllo_utils.h"
#include "nnacl/op_base.h"
namespace mindspore::lite {
namespace {
constexpr uint32_t kTripleNum = 3;
constexpr uint32_t kQuadraNum = 4;
CNodePtr NewReshapeOpNode(const FuncGraphPtr &func_graph, const AnfNodePtr &input_node, const std::vector<int> &shape) {
MS_ASSERT(func_graph != nullptr);
MS_ASSERT(input_node != nullptr);
auto reshape_prim = std::make_shared<ops::Reshape>();
if (reshape_prim == nullptr) {
MS_LOG(ERROR) << "create reshape failed.";
return nullptr;
}
auto prim_c = reshape_prim->GetPrim();
prim_c->set_attr("shape", MakeValue(shape));
ValueNodePtr value_node = NewValueNode(prim_c);
MS_CHECK_TRUE_MSG(value_node != nullptr, nullptr, "create valuenode return nullptr");
auto new_parameter =
opt::BuildIntVecParameterNode(func_graph, shape, input_node->fullname_with_scope() + "_reshape/shape");
MS_CHECK_TRUE_MSG(new_parameter != nullptr, nullptr, "create parameter return nullptr");
new_parameter->set_name(input_node->fullname_with_scope() + "_reshape/shape");
std::vector<AnfNodePtr> op_inputs = {value_node, input_node, new_parameter};
auto reshape = func_graph->NewCNode(op_inputs);
MS_CHECK_TRUE_MSG(reshape != nullptr, nullptr, "create cnode return nullptr");
reshape->set_fullname_with_scope(input_node->fullname_with_scope() + "_reshape");
return reshape;
}
bool AdjstVariablePadding(const FuncGraphPtr &func_graph, const AnfNodePtr &input_node) {
MS_ASSERT(func_graph != nullptr && input_node != nullptr);
// reshape the padding of pad operator to 2 x i.
std::vector<int> shape_pre = {2, -1};
auto reshape_pre = NewReshapeOpNode(func_graph, input_node, shape_pre);
if (reshape_pre == nullptr) {
MS_LOG(ERROR) << "create reshape failed.";
return false;
}
std::vector<int> perm = {1, 0};
auto transpose =
opt::GenTransposeNode(func_graph, reshape_pre, perm, reshape_pre->fullname_with_scope() + "_transpose");
if (transpose == nullptr) {
MS_LOG(ERROR) << "create transpose failed.";
return false;
}
// reshape the padding of pad operator to -1.
std::vector<int> shape_pos = {-1};
auto reshape_pos = NewReshapeOpNode(func_graph, transpose, shape_pos);
if (reshape_pos == nullptr) {
MS_LOG(ERROR) << "create reshape failed.";
return false;
}
auto manager = Manage(func_graph, true);
if (manager == nullptr) {
MS_LOG(ERROR) << "manager is nullptr.";
return false;
}
if (!manager->Replace(input_node, reshape_pos)) {
MS_LOG(ERROR) << "Replace node failed.";
return false;
}
return true;
}
bool AdjstConstPadding(const FuncGraphPtr &func_graph, const AnfNodePtr &input_node) {
MS_ASSERT(func_graph != nullptr && input_node != nullptr);
auto tensor_info = opt::GetTensorInfo(input_node);
if (tensor_info == nullptr) {
MS_LOG(ERROR) << "get tensor info from parameter failed.";
return false;
}
// the data type has been unified into int32.
int *data = reinterpret_cast<int *>(tensor_info->data_c());
MS_CHECK_TRUE_RET(tensor_info->data_type() == kNumberTypeInt32 && data != nullptr, false);
auto data_size = tensor_info->DataSize();
std::vector<int> padding(data_size);
for (size_t i = 0; i < data_size / DIMENSION_2D; i++) {
padding.at(i * DIMENSION_2D) = *(data + i);
padding.at(i * DIMENSION_2D + 1) = *(data + data_size / DIMENSION_2D + i);
}
if (memcpy_s(data, tensor_info->Size(), padding.data(), padding.size() * sizeof(int)) != EOK) {
MS_LOG(ERROR) << "memcpy data failed.";
return false;
}
std::vector<int64_t> new_shape = {static_cast<int64_t>(data_size) / DIMENSION_2D, DIMENSION_2D};
tensor_info->set_shape(new_shape);
return true;
}
} // namespace
bool OnnxPadAdjust::Adjust(const FuncGraphPtr &func_graph) {
MS_ASSERT(func_graph != nullptr);
auto cnodes = func_graph->GetOrderedCnodes();
for (auto &cnode : cnodes) {
if (!opt::CheckPrimitiveType(cnode, prim::kPrimPadFusion) ||
(cnode->inputs().size() != kTripleNum && cnode->inputs().size() != kQuadraNum)) {
continue;
}
// get the second input node whose output is the padding parameter of pad.
// and adjust padding: begin1, begin2, begin3... end1, end2, end3... to begin1, end1, begin2, end2, begin3, end3...
auto input_node = cnode->input(2);
MS_CHECK_TRUE_RET(input_node != nullptr, false);
auto param_input = input_node->cast<ParameterPtr>();
if (param_input != nullptr && param_input->has_default()) {
if (!AdjstConstPadding(func_graph, input_node)) {
MS_LOG(ERROR) << "Adjust paddings for node: " << cnode->fullname_with_scope() << " failed.";
return false;
} else {
continue;
}
}
if (!AdjstVariablePadding(func_graph, input_node)) {
MS_LOG(ERROR) << "Adjust paddings for node: " << cnode->fullname_with_scope() << " failed.";
return false;
}
}
return true;
}
} // namespace mindspore::lite
|
6170b6f95fbfcbe03d924f9828d55ef851c89175 | 38b9daafe39f937b39eefc30501939fd47f7e668 | /tutorials/2WayCouplingOceanWave3D/EvalResults180628-Eta/65.8/alpha.water | fa709017f5d77786bdae822980b499c20ad8723e | [] | no_license | rubynuaa/2-way-coupling | 3a292840d9f56255f38c5e31c6b30fcb52d9e1cf | a820b57dd2cac1170b937f8411bc861392d8fbaa | refs/heads/master | 2020-04-08T18:49:53.047796 | 2018-08-29T14:22:18 | 2018-08-29T14:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 158,938 | water | alpha.water | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "65.8";
object alpha.water;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField nonuniform List<scalar>
21420
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00004
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999998
0.999998
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999996
0.999993
0.999989
0.999983
0.999976
0.999969
0.999963
0.999952
0.999942
0.99994
0.999939
0.999935
0.999952
0.999977
0.99999
0.999991
0.999989
0.99999
0.999992
0.999994
0.999994
0.999994
0.999995
0.999996
0.999997
0.999998
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999998
0.999997
0.999997
0.999996
0.999995
0.999994
0.999994
0.999993
0.999992
0.999992
0.999994
0.999996
0.999997
0.999997
0.999997
0.999997
0.999997
0.999997
0.999996
0.999996
0.999996
0.999996
0.999997
0.999998
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999997
0.999993
0.999997
0.999997
0.999997
0.999998
0.999998
0.999998
0.999998
0.999998
0.999997
0.999997
0.999997
0.999998
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
0.999997
0.999997
0.999996
0.999995
0.999996
0.999995
0.999995
0.999996
0.999995
0.999996
0.999997
0.999996
0.999995
0.999995
0.999995
0.999997
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999997
0.999886
0.999389
0.999031
0.9987
0.998755
0.999454
0.999949
0.999952
0.99997
0.999964
0.999961
0.999958
0.999964
0.99998
0.999983
0.999985
0.999991
0.999994
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999995
0.999984
0.999956
0.999888
0.999735
0.999415
0.998793
0.997639
0.995611
0.992214
0.986875
0.979369
0.969872
0.958624
0.946418
0.934556
0.925107
0.919489
0.918124
0.921147
0.928333
0.939335
0.952813
0.967198
0.981216
0.992452
0.998802
0.999813
0.999834
0.999866
0.999904
0.999942
0.999966
0.999972
0.999979
0.999988
0.999993
0.999995
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
0.999997
0.99999
0.99997
0.999922
0.99981
0.999582
0.999136
0.998355
0.997054
0.995196
0.992477
0.988836
0.984665
0.979726
0.97435
0.969245
0.964763
0.961278
0.959239
0.958852
0.959609
0.961328
0.964942
0.969751
0.976066
0.982952
0.989549
0.995252
0.998889
0.999873
0.99987
0.999879
0.999899
0.999925
0.999954
0.999973
0.999978
0.999983
0.99999
0.999995
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999997
0.999991
0.999975
0.999941
0.999873
0.999745
0.999515
0.99911
0.998468
0.997407
0.995917
0.993797
0.991098
0.987836
0.983642
0.979409
0.975306
0.971607
0.967768
0.961971
0.959272
0.963295
0.972813
0.979048
0.982766
0.987526
0.991947
0.995936
0.999153
0.999921
0.999915
0.999906
0.999905
0.999919
0.99994
0.999964
0.999977
0.999981
0.999986
0.999991
0.999995
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999994
0.999989
0.999978
0.999961
0.999936
0.9999
0.99985
0.999784
0.999701
0.999596
0.999464
0.999313
0.999159
0.998993
0.998835
0.998712
0.998609
0.99854
0.99847
0.998359
0.998296
0.998173
0.997899
0.997576
0.997104
0.996723
0.99686
0.997512
0.998649
0.999789
0.999911
0.999894
0.999883
0.99987
0.999874
0.999903
0.99994
0.999958
0.99997
0.99998
0.999989
0.999994
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.645818
0.589951
0.545696
0.512508
0.48998
0.477856
0.475999
0.484506
0.503459
0.533457
0.573962
0.625921
0.690667
0.766572
0.856513
0.94553
0.970684
0.977033
0.983108
0.992389
0.999593
0.999707
0.999763
0.999866
0.999916
0.999958
0.999972
0.999986
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999996
0.999985
0.99995
0.999842
0.999544
0.998759
0.996774
0.991822
0.980466
0.957483
0.916181
0.850465
0.761794
0.674445
0.59658
0.53033
0.475572
0.432064
0.399962
0.380395
0.371901
0.373783
0.384781
0.406005
0.438944
0.482271
0.537063
0.603031
0.676552
0.751053
0.81845
0.871216
0.91741
0.955615
0.983511
0.997977
0.99948
0.999643
0.999806
0.999903
0.999936
0.999967
0.999985
0.999992
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
0.999999
0.999994
0.999978
0.999929
0.99979
0.999421
0.998502
0.996315
0.991216
0.980132
0.959385
0.925741
0.877005
0.815118
0.748938
0.690895
0.641639
0.600716
0.567818
0.542172
0.524205
0.513549
0.509563
0.510435
0.517611
0.531242
0.551515
0.579674
0.614657
0.655851
0.703157
0.752966
0.803405
0.84757
0.889064
0.927359
0.960337
0.985155
0.998102
0.999565
0.999699
0.999831
0.999919
0.999947
0.999971
0.999987
0.999993
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999994
0.999976
0.999929
0.999811
0.999527
0.998933
0.997616
0.994987
0.989734
0.979596
0.961947
0.933869
0.893339
0.840776
0.780528
0.723054
0.671917
0.628594
0.593434
0.565929
0.544182
0.527764
0.524974
0.538957
0.564072
0.589417
0.613819
0.642777
0.673947
0.710553
0.755861
0.801767
0.838134
0.86955
0.903829
0.939519
0.9691
0.989737
0.999053
0.999612
0.999725
0.999835
0.99991
0.999952
0.999969
0.999984
0.999993
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999994
0.999984
0.99996
0.999908
0.999808
0.999606
0.999221
0.9985
0.997178
0.994631
0.989677
0.980985
0.967267
0.947336
0.920679
0.88752
0.84921
0.813683
0.783913
0.759351
0.739836
0.723957
0.710599
0.699446
0.689613
0.680702
0.673474
0.668382
0.66665
0.671414
0.684498
0.706885
0.740724
0.787912
0.841201
0.888969
0.918576
0.944385
0.972378
0.99371
0.999313
0.999544
0.999719
0.999864
0.999929
0.999963
0.999987
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.000203257
0.000487
0.000596114
0.000607238
0.000540761
0.000400187
0.000230043
4.82264e-10
5.03951e-14
5.32983e-15
4.65975e-11
9.29777e-09
1.24398e-06
6.64509e-05
0.00159536
0.0203008
0.11753
0.250527
0.400585
0.564737
0.755865
0.910283
0.95705
0.985081
0.998884
0.999458
0.999672
0.999846
0.999929
0.999969
0.999985
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999993
0.999972
0.999893
0.999619
0.998685
0.995492
0.98451
0.951775
0.871677
0.725457
0.570018
0.424425
0.298805
0.203147
0.14526
0.105011
0.0757286
0.0546992
0.0397295
0.0292051
0.022129
0.0179309
0.0157873
0.0153653
0.0165032
0.0186856
0.0224377
0.0282666
0.037802
0.0533728
0.0784011
0.118701
0.182203
0.271371
0.375006
0.490665
0.616128
0.743585
0.845969
0.918976
0.972131
0.997394
0.999153
0.999589
0.999822
0.999905
0.999962
0.999983
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999993
0.999973
0.999904
0.999674
0.998948
0.996665
0.989065
0.964806
0.900783
0.771778
0.617411
0.47475
0.353759
0.259686
0.192905
0.15007
0.119227
0.0964395
0.0784459
0.0647447
0.0537747
0.0455448
0.039617
0.0358105
0.034599
0.0358815
0.0383311
0.0426229
0.0491159
0.0585856
0.0725036
0.0929799
0.122893
0.167558
0.232367
0.312454
0.405147
0.511324
0.628453
0.748067
0.84653
0.918068
0.970213
0.996701
0.999244
0.999606
0.999828
0.99991
0.999959
0.999983
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999993
0.999973
0.999906
0.999678
0.999037
0.997274
0.992357
0.978598
0.944356
0.872441
0.751422
0.618539
0.491859
0.378504
0.283842
0.212164
0.164507
0.129671
0.102444
0.0814014
0.0655212
0.0543058
0.0475936
0.0471367
0.0500492
0.0489137
0.0464314
0.0502048
0.0598447
0.0696516
0.0814534
0.0987139
0.121959
0.157121
0.207897
0.270887
0.348965
0.445092
0.550117
0.661952
0.770673
0.853939
0.917124
0.966032
0.994022
0.999262
0.999502
0.999736
0.999911
0.999947
0.999981
0.999993
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999993
0.999979
0.999937
0.999832
0.999568
0.998916
0.997414
0.993528
0.982837
0.955817
0.89739
0.786578
0.6509
0.522447
0.406182
0.304274
0.219019
0.156844
0.117534
0.0905808
0.0704487
0.0555639
0.0440292
0.0347626
0.0274177
0.0210775
0.0158193
0.0120482
0.00933207
0.00852726
0.0092742
0.0102751
0.0125993
0.0162831
0.0218557
0.0338812
0.057408
0.10902
0.204271
0.324774
0.472922
0.63894
0.815996
0.921433
0.968227
0.99761
0.999161
0.99958
0.999854
0.999926
0.999972
0.99999
0.999996
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
3.98613e-07
2.87266e-07
2.2094e-07
1.27917e-07
4.02657e-08
1.1208e-08
1.42599e-12
4.941e-14
3.7519e-15
7.07838e-18
1.43048e-18
2.13784e-13
1.0657e-14
7.36303e-14
1.00198e-08
2.35815e-10
7.5608e-14
1.1775e-06
2.56561e-05
0.000514169
0.00789684
0.0645166
0.258548
0.506473
0.755634
0.932044
0.977455
0.998344
0.999255
0.999686
0.999854
0.999953
0.99998
0.999994
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999992
0.999962
0.999834
0.999298
0.997082
0.987089
0.945709
0.814833
0.60198
0.391341
0.217015
0.120509
0.0609448
0.0236828
0.00500995
0.000432939
0.000250045
0.000146367
8.79094e-05
0.000148846
0.000228184
0.000287201
0.000330666
0.000362524
0.000394024
0.000426318
0.000460191
0.000518821
0.000617035
0.000769625
0.00101884
0.00142671
0.00209319
0.00324099
0.00522999
0.00888589
0.0158759
0.0293479
0.0560829
0.111003
0.219846
0.373286
0.555388
0.74488
0.879467
0.960962
0.996759
0.998947
0.999591
0.999817
0.999927
0.999973
0.99999
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999995
0.999976
0.999906
0.999644
0.998677
0.994901
0.978172
0.912117
0.730601
0.501355
0.296557
0.163403
0.0876333
0.0404183
0.01419
0.00279288
0.000310502
0.000472866
0.000580997
0.000654231
0.000725839
0.00079199
0.000861388
0.000911789
0.000963864
0.00100611
0.00102746
0.0010568
0.0011147
0.00123348
0.00140408
0.00166301
0.00205698
0.00263105
0.00353135
0.00493237
0.00730925
0.0115007
0.0188901
0.0329
0.0598573
0.114811
0.223431
0.375241
0.551425
0.735506
0.869774
0.952142
0.99403
0.99894
0.999531
0.999815
0.999923
0.999971
0.999989
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999992
0.99997
0.999893
0.999617
0.998657
0.995065
0.981162
0.932396
0.800463
0.601436
0.410781
0.253002
0.152659
0.08913
0.0459661
0.0192614
0.00561235
0.00130332
0.00126449
0.00124301
0.00110696
0.00096071
0.000825069
0.000810398
0.00109271
0.00231673
0.00314132
0.00285111
0.00177742
0.0015107
0.00182897
0.0021294
0.00247897
0.00294963
0.00281277
0.00317285
0.0052282
0.00923852
0.0152462
0.0248405
0.0416948
0.0731688
0.132285
0.236026
0.371326
0.531878
0.701433
0.843825
0.933289
0.986474
0.998877
0.999308
0.999745
0.999911
0.999953
0.999986
0.999995
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999993
0.999979
0.999937
0.999812
0.999442
0.998408
0.995224
0.983962
0.944796
0.8318
0.634708
0.436863
0.267609
0.15429
0.088088
0.0444646
0.0174491
0.00366464
0.000265318
0.000131028
7.171e-05
4.27286e-05
7.11261e-05
8.31812e-05
8.09595e-05
7.57135e-05
7.61793e-05
6.68165e-05
5.7372e-05
6.21492e-05
5.69406e-05
5.18614e-05
5.61146e-05
5.03665e-05
5.70457e-05
6.95455e-05
7.38891e-05
0.000117768
0.000183308
0.000302228
0.000698959
0.00161721
0.00509333
0.0165876
0.0597515
0.217515
0.445267
0.70267
0.908407
0.971921
0.998413
0.999223
0.999711
0.999902
0.999964
0.999988
0.999996
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.20264e-08
5.45915e-09
3.17436e-09
1.35431e-09
2.67169e-10
1.3943e-12
4.37878e-14
2.85636e-15
4.77557e-18
8.30402e-21
2.19472e-19
2.23425e-16
1.53528e-17
7.33447e-19
3.33975e-20
2.05771e-19
8.09924e-18
6.70934e-17
2.69978e-10
2.46344e-12
3.57825e-07
4.19126e-06
8.64488e-05
0.00211821
0.0217532
0.177029
0.4721
0.7833
0.947102
0.994167
0.998633
0.999563
0.999812
0.999941
0.999979
0.999994
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999992
0.999961
0.999809
0.999085
0.995322
0.973762
0.873149
0.626913
0.362584
0.16341
0.0692575
0.0176875
0.00118474
0.000588006
0.000278798
0.000116436
4.90906e-05
1.97664e-05
9.826e-06
5.1537e-06
5.76679e-06
7.1243e-06
8.14301e-06
9.10721e-06
9.79459e-06
1.06488e-05
1.12819e-05
1.21717e-05
1.33099e-05
1.52285e-05
1.84329e-05
2.29539e-05
3.15896e-05
4.55748e-05
6.75189e-05
0.000105433
0.000167806
0.000273714
0.00046354
0.000806356
0.00147603
0.00292683
0.00630751
0.0148958
0.0389609
0.107294
0.275478
0.505742
0.747601
0.902622
0.981185
0.998147
0.999274
0.999731
0.9999
0.999967
0.999989
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999996
0.999982
0.999924
0.999694
0.998734
0.994338
0.970153
0.854892
0.58809
0.313453
0.137595
0.0484199
0.00790331
0.000820624
0.000400058
0.000173578
9.08985e-05
4.86131e-05
3.81775e-05
3.30608e-05
2.7861e-05
2.53586e-05
2.47315e-05
2.39144e-05
2.5839e-05
2.84313e-05
3.06932e-05
3.16931e-05
3.17734e-05
3.24375e-05
3.44246e-05
3.77944e-05
4.27405e-05
5.17723e-05
6.53544e-05
8.50255e-05
0.000116079
0.000161172
0.000233869
0.000352851
0.000547997
0.000899801
0.00153989
0.00295851
0.00632623
0.0149286
0.038192
0.103242
0.260164
0.478205
0.712362
0.880719
0.969926
0.998048
0.999198
0.999686
0.999891
0.999963
0.999989
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999997
0.99999
0.999966
0.99989
0.999625
0.998538
0.993645
0.969255
0.861107
0.618504
0.370549
0.183533
0.0824952
0.0272815
0.00390663
0.00101453
0.000949423
0.000573282
0.000270861
9.94201e-05
4.88737e-05
4.34432e-05
4.3764e-05
3.4286e-05
2.43828e-05
1.68798e-05
1.33398e-05
2.70925e-06
0.000144541
0.000390623
0.000385829
0.000247345
0.000102326
6.47004e-05
6.59802e-05
7.81462e-05
9.92337e-05
7.64242e-05
6.67386e-05
0.000110904
0.000307597
0.000584908
0.000840727
0.00128137
0.00207269
0.00354738
0.00682451
0.0139587
0.0323078
0.0824185
0.212782
0.417616
0.648574
0.840528
0.947492
0.994677
0.998994
0.999392
0.999822
0.999928
0.999981
0.999995
0.999999
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999994
0.999981
0.999943
0.999825
0.99945
0.998244
0.993862
0.975104
0.895953
0.677117
0.416365
0.206366
0.0933964
0.0296081
0.00332794
0.000789079
0.000921901
0.000535598
0.00028714
0.000108739
2.59989e-05
8.61313e-06
5.02076e-06
4.18169e-06
3.15776e-06
2.53287e-06
2.19328e-06
1.58877e-06
1.50659e-06
1.29231e-06
8.81277e-07
1.00692e-06
8.41507e-07
6.21513e-07
7.37e-07
5.66246e-07
5.74957e-07
7.42068e-07
5.84931e-07
9.83855e-07
1.44395e-06
1.67835e-06
3.67641e-06
6.50115e-06
1.81154e-05
4.95549e-05
0.000139307
0.00082404
0.00415623
0.0267395
0.167586
0.459434
0.793877
0.945158
0.99478
0.999016
0.999636
0.999874
0.999963
0.999989
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
3.31228e-10
1.0394e-10
4.56052e-11
1.43768e-11
1.27698e-12
4.00294e-14
4.30835e-15
8.88542e-18
1.49822e-20
2.53066e-23
4.03996e-26
5.22849e-29
7.08141e-29
1.17625e-26
1.73767e-24
1.09012e-22
3.72102e-21
1.52357e-19
5.60757e-16
8.67125e-17
1.53949e-10
1.58451e-09
6.2641e-12
8.14213e-07
4.74759e-06
0.000235842
0.00361318
0.0417088
0.300081
0.652413
0.914726
0.990837
0.998332
0.999478
0.999813
0.999943
0.999983
0.999996
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999993
0.999967
0.999822
0.999073
0.994544
0.963563
0.799513
0.493808
0.211593
0.0762703
0.0135267
0.00149861
0.000625008
0.000239099
8.93304e-05
3.92743e-05
1.70003e-05
6.50141e-06
2.58064e-06
8.87628e-07
3.8013e-07
2.29375e-07
2.51135e-07
2.47341e-07
2.53562e-07
2.7768e-07
2.80483e-07
3.06743e-07
3.21461e-07
3.42459e-07
3.80882e-07
4.3498e-07
5.48459e-07
6.5587e-07
9.2627e-07
1.39986e-06
2.03532e-06
3.17625e-06
5.09263e-06
8.3396e-06
1.44273e-05
2.5651e-05
4.76549e-05
9.4518e-05
0.000193841
0.000414441
0.000980306
0.00258324
0.00800056
0.028477
0.106368
0.323948
0.608624
0.847038
0.961264
0.997428
0.999038
0.999681
0.999889
0.999968
0.99999
0.999998
0.999999
1
1
1
1
1
1
1
1
1
0.999999
0.999996
0.999984
0.99994
0.999763
0.998987
0.995052
0.970216
0.830454
0.516209
0.222891
0.0751155
0.0113368
0.00128458
0.000562188
0.000166192
5.99422e-05
3.52979e-05
1.84127e-05
7.38124e-06
3.10497e-06
1.72019e-06
1.1698e-06
8.91946e-07
7.78056e-07
6.69831e-07
5.61287e-07
6.01226e-07
7.11049e-07
8.33494e-07
9.20764e-07
9.26811e-07
9.47637e-07
9.93979e-07
1.06508e-06
1.13095e-06
1.34502e-06
1.72584e-06
2.26524e-06
3.17615e-06
4.49076e-06
6.59085e-06
9.91459e-06
1.5753e-05
2.6768e-05
4.56855e-05
8.94453e-05
0.000185293
0.000402549
0.000938412
0.00242843
0.00727585
0.0245831
0.0875865
0.279984
0.556538
0.81671
0.945886
0.995736
0.998931
0.999609
0.999882
0.999968
0.999992
0.999998
1
1
1
1
1
1
1
0.999999
0.999998
0.999995
0.999989
0.999968
0.999893
0.999613
0.998572
0.993693
0.964857
0.823576
0.520145
0.237306
0.088349
0.0208915
0.00192924
0.00156541
0.000744445
0.000213681
9.23174e-05
6.14703e-05
3.12858e-05
9.07935e-06
1.79072e-06
8.48247e-07
9.10275e-07
1.08775e-06
8.43439e-07
4.91163e-07
2.96075e-07
8.13649e-08
6.44584e-08
2.6785e-06
3.54512e-05
4.10371e-05
2.99963e-05
1.26219e-05
3.537e-06
2.34312e-06
2.34146e-06
2.72655e-06
2.23595e-06
1.84824e-06
2.5718e-06
7.22011e-06
1.82763e-05
2.85062e-05
4.62012e-05
7.72304e-05
0.000120658
0.000211527
0.000332936
0.000562333
0.0014052
0.00461993
0.0162346
0.0601906
0.208523
0.466362
0.72746
0.898857
0.980374
0.998442
0.999132
0.999739
0.99993
0.999981
0.999995
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999998
0.999997
0.999993
0.999982
0.999947
0.999836
0.999476
0.998242
0.993386
0.969351
0.854914
0.580737
0.292693
0.116116
0.0301873
0.00218316
0.0018309
0.00109058
0.000245931
0.000110695
6.73723e-05
4.03749e-05
2.97172e-05
2.14965e-05
8.41691e-06
8.20529e-07
2.13065e-07
1.45886e-07
1.01772e-07
7.20555e-08
5.60529e-08
3.77693e-08
3.35155e-08
2.75155e-08
1.80286e-08
2.02797e-08
1.60575e-08
1.1144e-08
1.22871e-08
9.10767e-09
8.97746e-09
1.05652e-08
7.80129e-09
1.34156e-08
1.78963e-08
1.8834e-08
4.03091e-08
6.02045e-08
1.48196e-07
3.78692e-07
7.57554e-07
4.08409e-06
1.30749e-05
5.18235e-05
0.000521703
0.00458178
0.0511687
0.298548
0.65692
0.928286
0.989403
0.998766
0.999619
0.99988
0.999964
0.999991
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999356
8.38781e-12
2.33881e-12
6.73087e-13
1.80488e-13
3.74232e-14
8.26206e-15
2.25029e-17
4.49155e-20
7.38156e-23
1.18119e-25
1.77723e-28
2.23787e-31
5.90144e-32
1.75532e-29
4.01035e-27
1.06871e-24
1.9999e-23
9.23951e-22
4.75275e-16
3.84393e-17
3.87081e-13
3.48833e-12
1.22464e-13
2.7339e-09
1.94716e-10
4.26576e-07
5.11683e-06
4.11604e-05
0.00176263
0.0201527
0.204676
0.616151
0.906072
0.989983
0.998359
0.999487
0.999842
0.999958
0.999989
0.999998
1
1
1
1
1
1
1
1
1
0.999999
0.999994
0.99997
0.999847
0.999196
0.99472
0.960995
0.767026
0.424617
0.149885
0.038228
0.00264142
0.00103565
0.000387774
0.000141593
5.35349e-05
1.96333e-05
6.70941e-06
2.63513e-06
1.03835e-06
3.62752e-07
1.33698e-07
3.97618e-08
1.46995e-08
7.52746e-09
7.6197e-09
7.15971e-09
6.96483e-09
7.69954e-09
7.45475e-09
8.21608e-09
8.41814e-09
8.73345e-09
9.86456e-09
1.11261e-08
1.46182e-08
1.59974e-08
2.33093e-08
3.7891e-08
5.4215e-08
8.64997e-08
1.39407e-07
2.27225e-07
3.99213e-07
7.15384e-07
1.33756e-06
2.68324e-06
5.55279e-06
1.20646e-05
2.98096e-05
7.95272e-05
0.000227686
0.000698377
0.00241451
0.0101368
0.0475609
0.209814
0.5104
0.802691
0.946441
0.996412
0.998916
0.999666
0.999892
0.999969
0.999993
0.999998
1
1
0.999999
0.999999
0.999999
0.999999
0.999997
0.999993
0.999981
0.99994
0.999788
0.999155
0.996016
0.975555
0.846519
0.515717
0.20017
0.0533008
0.00426225
0.00112664
0.000459864
0.000126354
5.16194e-05
1.52765e-05
5.06876e-06
2.63863e-06
1.15373e-06
3.55281e-07
1.23538e-07
5.44938e-08
2.98977e-08
2.10947e-08
1.86929e-08
1.42498e-08
1.06803e-08
1.15406e-08
1.48693e-08
1.92347e-08
2.35483e-08
2.47029e-08
2.59259e-08
2.73536e-08
2.95286e-08
2.89421e-08
3.136e-08
4.02753e-08
5.38862e-08
8.10092e-08
1.21463e-07
1.84326e-07
2.65231e-07
4.14053e-07
7.19959e-07
1.18941e-06
2.27662e-06
4.69413e-06
1.05557e-05
2.58171e-05
6.97476e-05
0.000203718
0.000605166
0.00196032
0.00787729
0.0364072
0.167347
0.454703
0.760956
0.931948
0.993979
0.998882
0.99958
0.99989
0.999968
0.99999
0.999995
0.999997
0.999997
0.999998
0.999997
0.999995
0.99999
0.999978
0.99995
0.999873
0.999598
0.998504
0.99412
0.968378
0.817433
0.487594
0.198042
0.0577862
0.00612575
0.00201823
0.000913671
0.000286433
0.000128969
5.94938e-05
1.52157e-05
5.81667e-06
3.12516e-06
1.20628e-06
1.66165e-07
2.76672e-08
1.31236e-08
1.79814e-08
2.32705e-08
1.60263e-08
7.97175e-09
6.19361e-09
9.7975e-10
4.51958e-09
3.48754e-08
2.30853e-06
3.2117e-06
2.27113e-06
8.34066e-07
1.47842e-07
7.37313e-08
7.33567e-08
8.24834e-08
6.78077e-08
5.26834e-08
6.94005e-08
1.7986e-07
4.41802e-07
6.90788e-07
1.36251e-06
2.94971e-06
4.40103e-06
7.43051e-06
8.99849e-06
1.03549e-05
2.36791e-05
9.73467e-05
0.000368146
0.00135949
0.00517732
0.0217121
0.0944708
0.323232
0.622136
0.859591
0.968759
0.998089
0.999054
0.999668
0.999907
0.999962
0.999984
0.999989
0.999991
0.999991
0.999991
0.999989
0.999984
0.999969
0.999929
0.999819
0.999457
0.998206
0.993152
0.9669
0.837092
0.536927
0.238323
0.0791288
0.0121788
0.00272604
0.00179403
0.00049621
0.0001992
0.000100792
1.99068e-05
7.38772e-06
4.16315e-06
2.60531e-06
2.69067e-06
2.87598e-06
1.74289e-06
2.9984e-07
1.10266e-08
7.43843e-09
4.58485e-09
2.74544e-09
1.76748e-09
1.10335e-09
9.43579e-10
6.8516e-10
4.45748e-10
4.84188e-10
3.59882e-10
2.49503e-10
2.48227e-10
1.81166e-10
1.84988e-10
1.85343e-10
1.36896e-10
2.28802e-10
2.91904e-10
2.90115e-10
5.82906e-10
8.03984e-10
1.85713e-09
4.3055e-09
7.63503e-09
3.92124e-08
1.19016e-07
3.28041e-07
2.68923e-06
9.59004e-06
0.000151697
0.00142437
0.0174974
0.205986
0.577902
0.902706
0.984163
0.998765
0.999597
0.99989
0.999969
0.999992
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999969
0.953811
0.604053
0.192115
2.00291e-13
4.82257e-14
2.75488e-14
2.50261e-14
1.2284e-14
5.52118e-17
1.4015e-19
2.68003e-22
4.24769e-25
6.41791e-28
9.08777e-31
1.11416e-33
4.63378e-34
8.22815e-31
1.4781e-28
5.27867e-25
1.60128e-24
1.99889e-23
6.15582e-18
6.9924e-19
4.221e-15
3.78814e-14
2.56406e-15
1.01172e-11
8.4989e-11
2.25838e-09
2.59708e-08
1.33316e-12
6.74642e-06
6.41159e-05
0.000941182
0.0202682
0.19682
0.618595
0.912199
0.990446
0.998553
0.99959
0.999879
0.99997
0.999994
0.999999
1
1
1
1
0.999999
0.999998
0.999992
0.999967
0.999852
0.99922
0.995231
0.96499
0.767399
0.407244
0.131337
0.0245717
0.0024191
0.000943928
0.000302067
0.000109801
4.03767e-05
1.34837e-05
4.63407e-06
1.61331e-06
5.0397e-07
1.7798e-07
6.38013e-08
2.0337e-08
6.89366e-09
1.79582e-09
5.85401e-10
2.20294e-10
2.00588e-10
1.89918e-10
1.83807e-10
2.07062e-10
1.95911e-10
2.30949e-10
2.36124e-10
2.45861e-10
2.79042e-10
3.12311e-10
4.13538e-10
4.01575e-10
6.02681e-10
1.00862e-09
1.36468e-09
2.25993e-09
3.54113e-09
5.66776e-09
1.02784e-08
1.85489e-08
3.5331e-08
7.27575e-08
1.51962e-07
3.35335e-07
8.43491e-07
2.24992e-06
6.50094e-06
2.07974e-05
7.35055e-05
0.000273911
0.00108135
0.00500382
0.0275811
0.148075
0.45455
0.769501
0.933892
0.993921
0.998877
0.999569
0.999873
0.999948
0.999979
0.999985
0.999986
0.999986
0.999985
0.999977
0.999958
0.999904
0.999739
0.999147
0.996627
0.981631
0.881704
0.555477
0.21578
0.0547786
0.00392391
0.00141441
0.000463744
0.000130858
4.15224e-05
1.2656e-05
4.10729e-06
1.12287e-06
3.48623e-07
1.42375e-07
4.98353e-08
1.19751e-08
3.44183e-09
1.22727e-09
6.12084e-10
3.88985e-10
3.41974e-10
2.57604e-10
2.28747e-10
3.05443e-10
4.11052e-10
5.57115e-10
7.11627e-10
7.36462e-10
8.08686e-10
8.41665e-10
9.07117e-10
7.86721e-10
7.84967e-10
1.00567e-09
1.37088e-09
2.14529e-09
3.25533e-09
5.06869e-09
6.73781e-09
1.01308e-08
1.85728e-08
3.01182e-08
5.49092e-08
1.11701e-07
2.58518e-07
6.27308e-07
1.71742e-06
5.30847e-06
1.65742e-05
5.49078e-05
0.000214055
0.000855514
0.0036751
0.019733
0.116088
0.413578
0.738382
0.925049
0.99315
0.998811
0.999392
0.999802
0.999905
0.999956
0.999959
0.999962
0.999958
0.99994
0.999887
0.999766
0.999448
0.998386
0.993539
0.964806
0.83031
0.508419
0.198649
0.0512583
0.00474889
0.00223875
0.000806882
0.000221023
7.66275e-05
2.38879e-05
9.3752e-06
4.28368e-06
1.0516e-06
3.19167e-07
1.11449e-07
2.99597e-08
2.58484e-09
5.62012e-10
3.30241e-10
3.42227e-10
4.05224e-10
2.91068e-10
2.1093e-10
2.52913e-10
8.9326e-10
2.29557e-09
1.37532e-08
1.40103e-07
1.93339e-07
1.02899e-07
1.41884e-08
3.1807e-09
2.17267e-09
2.28085e-09
2.81672e-09
2.10102e-09
1.49468e-09
2.16325e-09
5.72968e-09
9.82803e-09
1.49056e-08
3.22543e-08
1.03349e-07
1.72605e-07
3.14415e-07
2.76339e-07
2.24294e-07
3.99948e-07
1.84073e-06
8.98311e-06
4.38641e-05
0.000164925
0.000551503
0.00213957
0.00993885
0.0514801
0.244225
0.561516
0.834887
0.958176
0.996895
0.998727
0.99934
0.999753
0.999846
0.999895
0.999907
0.999908
0.999887
0.999834
0.999672
0.999207
0.997727
0.992105
0.963808
0.827112
0.519386
0.221616
0.0680999
0.00933495
0.00335572
0.0016018
0.000425753
0.000175629
5.3227e-05
1.8024e-05
8.97713e-06
1.73979e-06
5.46352e-07
2.8867e-07
1.7233e-07
2.15426e-07
2.54364e-07
2.0284e-07
5.54858e-08
9.9314e-10
8.31834e-10
4.97996e-10
1.75714e-10
6.31846e-11
3.67607e-11
3.07448e-11
1.87821e-11
1.27915e-11
1.30342e-11
9.19517e-12
7.28049e-12
6.08806e-12
4.8085e-12
5.18656e-12
4.07163e-12
3.53265e-12
4.94377e-12
5.06578e-12
5.53851e-12
9.55905e-12
1.30654e-11
2.97075e-11
5.22101e-11
1.01594e-10
4.27975e-10
1.09016e-09
3.43325e-09
2.23262e-08
9.44545e-08
8.75504e-07
4.74218e-06
3.29927e-05
0.000742739
0.00872055
0.129749
0.513449
0.864282
0.97288
0.998707
0.999591
0.999872
0.999968
0.999995
0.999999
1
1
1
1
1
1
1
1
0.999991
0.997481
0.823458
0.428846
0.0673305
0.00210286
7.8016e-05
8.10559e-15
9.48704e-15
1.00532e-14
1.79882e-15
9.06643e-17
3.922e-19
9.26696e-22
1.68805e-24
2.56476e-27
3.65699e-30
4.87646e-33
5.75355e-36
4.13235e-36
8.69513e-33
3.25001e-30
1.83682e-25
5.64495e-26
2.36378e-24
4.18297e-20
6.59629e-21
4.52678e-17
3.6531e-16
2.56954e-17
9.19386e-14
3.783e-13
1.0388e-11
1.61904e-10
9.90312e-13
4.51692e-08
2.68803e-07
7.27834e-07
0.000131325
0.00114061
0.0218312
0.22712
0.63265
0.916119
0.990238
0.998731
0.999639
0.999915
0.999973
0.999993
0.999997
0.999996
0.999992
0.999978
0.999934
0.999764
0.99902
0.994946
0.964424
0.775618
0.420248
0.130824
0.0221046
0.0024607
0.000922317
0.000302876
0.000116799
3.50153e-05
1.18015e-05
4.19407e-06
1.28982e-06
4.04865e-07
1.32887e-07
3.79761e-08
1.21164e-08
3.95306e-09
1.15437e-09
3.64202e-10
9.27944e-11
3.75067e-11
2.62264e-11
2.65827e-11
3.10331e-11
3.7162e-11
4.31005e-11
4.73306e-11
4.60192e-11
4.59447e-11
4.67863e-11
4.80689e-11
4.98053e-11
5.26883e-11
5.32594e-11
5.83353e-11
6.81508e-11
7.52788e-11
9.96223e-11
1.26804e-10
1.77398e-10
3.03061e-10
5.20794e-10
9.79477e-10
2.02118e-09
4.08465e-09
8.98802e-09
2.28864e-08
6.11398e-08
1.79393e-07
5.84984e-07
2.11418e-06
8.16994e-06
3.36147e-05
0.000146167
0.000656284
0.00330499
0.0203228
0.121205
0.414654
0.73072
0.912074
0.986407
0.998789
0.999115
0.999615
0.999766
0.999799
0.999808
0.999788
0.999696
0.999426
0.998628
0.99579
0.98193
0.902789
0.615695
0.263157
0.0695291
0.00596393
0.0018972
0.000660789
0.000162254
4.8672e-05
1.56001e-05
4.63535e-06
1.27776e-06
3.63361e-07
9.08556e-08
2.37786e-08
6.87282e-09
1.87494e-09
5.14031e-10
1.93992e-10
1.07711e-10
8.56178e-11
8.69925e-11
8.59473e-11
8.90766e-11
9.37097e-11
9.18394e-11
9.13265e-11
9.13057e-11
9.14345e-11
9.20899e-11
9.55535e-11
9.58304e-11
9.73107e-11
9.79432e-11
9.86885e-11
9.97537e-11
1.08402e-10
1.29799e-10
1.59369e-10
2.10374e-10
2.37549e-10
3.16957e-10
5.6188e-10
8.3643e-10
1.40441e-09
2.64448e-09
5.98138e-09
1.39666e-08
3.88896e-08
1.32934e-07
4.18684e-07
1.32889e-06
5.61014e-06
2.41885e-05
9.31758e-05
0.000443455
0.00259343
0.0162779
0.0993535
0.396754
0.728612
0.911772
0.984261
0.997764
0.998439
0.999328
0.999479
0.999487
0.999412
0.999145
0.998477
0.996909
0.991817
0.966619
0.832695
0.506583
0.210693
0.0595301
0.00747004
0.00280929
0.000961197
0.000245738
7.45626e-05
1.96833e-05
5.50955e-06
1.66921e-06
5.81014e-07
2.41684e-07
5.41178e-08
1.32773e-08
3.79448e-09
7.94017e-10
1.31094e-10
8.85888e-11
8.56833e-11
8.5963e-11
8.72636e-11
8.88654e-11
8.87499e-11
9.36924e-11
2.17444e-10
1.04846e-09
3.50488e-09
7.05314e-09
6.20024e-09
1.19278e-09
1.71233e-10
1.81828e-10
1.53426e-10
1.60425e-10
1.65857e-10
1.19706e-10
1.02039e-10
1.46137e-10
2.45741e-10
2.9712e-10
4.20747e-10
1.02652e-09
4.26173e-09
7.70618e-09
1.33009e-08
9.08633e-09
4.56241e-09
7.2182e-09
3.24469e-08
1.86635e-07
1.14629e-06
4.58962e-06
1.64724e-05
7.17751e-05
0.00029856
0.00123992
0.00621315
0.0362254
0.202962
0.513948
0.794503
0.930476
0.986286
0.996958
0.997656
0.998529
0.9989
0.998921
0.998713
0.997759
0.995762
0.988171
0.955036
0.81464
0.506922
0.217506
0.0671279
0.0108262
0.00419378
0.00187973
0.000521663
0.000180583
4.78276e-05
1.69249e-05
5.56826e-06
1.74644e-06
8.59555e-07
1.68835e-07
4.61283e-08
2.15769e-08
1.18796e-08
1.60755e-08
2.13381e-08
1.90027e-08
5.7578e-09
4.07333e-10
3.75453e-10
2.27174e-10
3.73359e-11
3.49846e-12
2.6787e-12
2.05273e-12
1.51325e-12
1.31635e-12
9.85251e-13
5.88836e-13
5.04009e-13
3.63884e-13
3.12945e-13
3.51367e-13
2.38259e-13
2.67893e-13
3.32672e-13
2.48516e-13
3.16922e-13
3.91269e-13
4.60528e-13
8.6309e-13
7.35818e-13
1.53409e-12
5.57002e-12
8.14646e-12
3.36067e-11
1.77032e-10
6.05271e-10
5.78874e-09
2.45648e-08
1.72192e-07
2.67132e-06
1.49562e-05
0.000228263
0.00480281
0.0699694
0.394644
0.745819
0.948883
0.983908
0.999048
0.999878
0.999968
0.999996
1
1
1
1
0.999985
0.998681
0.911702
0.589165
0.22764
0.0129325
0.00171728
0.000146791
5.27066e-05
9.68889e-06
2.12879e-15
7.01721e-16
1.52062e-16
2.05884e-17
6.91089e-19
2.88466e-21
6.34024e-24
1.09548e-26
1.58826e-29
2.13623e-32
2.68397e-35
3.06184e-38
1.58027e-37
4.38451e-34
4.92539e-31
3.56842e-28
2.24878e-27
6.22095e-25
2.88049e-22
5.72606e-22
7.65185e-19
3.47254e-18
1.34868e-18
2.25133e-15
4.64537e-15
1.15826e-13
7.08602e-13
2.19621e-14
4.32288e-10
1.21273e-09
5.63803e-11
9.48016e-07
6.46193e-06
0.000134652
0.00178162
0.0241792
0.250955
0.627214
0.893665
0.974418
0.998841
0.999614
0.999729
0.999869
0.999839
0.999708
0.999213
0.997493
0.989488
0.94629
0.751436
0.410286
0.132152
0.0249129
0.00249419
0.00095545
0.000328602
0.000124642
3.86991e-05
1.4492e-05
4.07947e-06
1.27875e-06
4.34896e-07
1.23894e-07
3.5673e-08
1.0985e-08
2.87815e-09
8.3616e-10
2.51669e-10
7.30759e-11
2.81475e-11
1.584e-11
1.58802e-11
1.95035e-11
2.48489e-11
3.00568e-11
3.67174e-11
4.29706e-11
4.89818e-11
5.36578e-11
5.65875e-11
5.81877e-11
5.93175e-11
6.03486e-11
6.08363e-11
6.14198e-11
6.22299e-11
6.2273e-11
6.2388e-11
6.25711e-11
6.28055e-11
6.31204e-11
6.35424e-11
6.57683e-11
7.74315e-11
1.03829e-10
1.53556e-10
2.83485e-10
6.70635e-10
1.65388e-09
4.73564e-09
1.52271e-08
5.61032e-08
2.28321e-07
9.88195e-07
4.41673e-06
2.06094e-05
0.000101433
0.000505197
0.00267908
0.0164832
0.0957005
0.355109
0.659056
0.863188
0.95603
0.992153
0.996419
0.996745
0.997053
0.996774
0.995139
0.989691
0.969715
0.882035
0.623936
0.298686
0.0930183
0.0125222
0.00285608
0.00098517
0.000229143
6.8421e-05
2.14256e-05
6.31396e-06
1.87444e-06
5.21928e-07
1.31131e-07
3.40129e-08
7.71694e-09
1.88519e-09
5.14444e-10
1.80708e-10
1.00215e-10
8.58902e-11
8.17118e-11
7.82647e-11
8.39119e-11
8.44712e-11
8.84649e-11
9.37631e-11
9.89522e-11
1.04154e-10
1.05327e-10
1.0605e-10
1.07074e-10
1.07189e-10
1.06963e-10
1.07294e-10
1.07773e-10
1.08042e-10
1.07827e-10
1.07862e-10
1.07985e-10
1.08195e-10
1.08392e-10
1.0864e-10
1.09094e-10
1.09659e-10
1.10247e-10
1.14763e-10
1.41594e-10
2.31351e-10
4.10559e-10
9.81434e-10
3.42819e-09
1.00948e-08
2.96853e-08
1.41366e-07
6.34494e-07
2.19198e-06
1.18419e-05
7.80817e-05
0.000403641
0.0021857
0.0152466
0.0973218
0.358078
0.655035
0.852852
0.946709
0.986464
0.992398
0.991767
0.990787
0.985914
0.968763
0.923445
0.78739
0.513005
0.226861
0.0677953
0.00975473
0.00379984
0.00143186
0.000361211
0.000104665
2.2699e-05
5.81424e-06
1.51725e-06
4.20644e-07
1.00717e-07
3.29707e-08
1.11107e-08
2.86213e-09
7.56007e-10
2.4161e-10
9.61675e-11
8.17568e-11
8.28572e-11
8.35551e-11
8.39753e-11
8.62273e-11
9.31149e-11
1.04455e-10
1.1248e-10
1.17142e-10
1.83558e-10
1.52398e-10
1.45044e-10
1.59412e-10
1.26832e-10
1.23629e-10
1.1951e-10
1.10883e-10
9.45181e-11
8.67662e-11
8.43283e-11
8.30024e-11
7.86199e-11
7.09166e-11
6.38537e-11
5.10743e-11
7.18413e-11
2.60495e-10
4.3251e-10
4.73395e-10
2.4474e-10
1.09584e-10
1.67033e-10
6.50638e-10
3.88332e-09
2.67548e-08
1.1015e-07
4.27085e-07
2.0843e-06
9.15428e-06
3.86505e-05
0.000177067
0.000867047
0.00471767
0.0273155
0.150697
0.421787
0.684313
0.846
0.925153
0.963843
0.977594
0.981756
0.97886
0.949503
0.906638
0.734715
0.469654
0.219045
0.0729817
0.013945
0.00497577
0.00220654
0.00070749
0.000245599
6.7398e-05
1.87109e-05
4.83894e-06
1.61184e-06
5.55581e-07
1.66017e-07
8.19328e-08
1.66799e-08
4.14162e-09
1.73412e-09
7.14869e-10
1.12111e-09
1.63167e-09
1.10345e-09
5.39376e-10
5.24694e-10
5.42292e-10
2.74442e-10
1.38124e-11
2.60446e-12
1.25699e-12
6.92806e-13
3.72739e-13
2.30181e-13
1.46854e-13
9.00894e-14
7.56006e-14
5.19181e-14
4.21368e-14
4.30768e-14
2.80923e-14
3.28144e-14
3.52319e-14
2.2268e-14
3.51286e-14
3.10834e-14
3.38965e-14
6.96297e-14
4.70026e-14
9.10244e-14
2.03514e-13
1.29059e-13
4.2242e-13
1.30521e-12
2.81032e-12
3.31243e-11
9.23002e-11
7.33558e-10
9.8305e-09
2.76893e-08
4.78522e-07
6.86807e-06
5.27262e-05
0.00110218
0.0155996
0.167327
0.45449
0.703321
0.895494
0.977476
0.993735
0.999781
0.99707
0.935351
0.763007
0.538141
0.265197
0.0374589
0.00713274
0.000533544
0.000219497
5.92521e-05
1.52586e-05
5.8724e-06
1.1624e-06
9.08945e-17
1.29449e-17
2.2632e-18
2.33789e-19
5.47106e-21
2.18725e-23
4.46353e-26
7.2802e-29
1.00189e-31
1.26832e-34
1.49909e-37
1.6407e-40
1.99895e-39
2.62255e-36
1.70489e-33
3.48798e-31
8.45724e-29
1.15256e-26
4.33962e-25
5.82352e-23
6.86945e-21
6.65191e-21
1.98604e-19
4.32783e-17
6.53828e-17
4.13281e-15
1.90605e-14
6.41482e-15
2.51164e-12
2.47228e-12
4.24857e-11
6.96684e-09
2.08712e-08
9.31535e-07
1.36949e-05
0.000126789
0.00232975
0.0236146
0.191066
0.510385
0.778484
0.911277
0.957559
0.982392
0.988134
0.978889
0.943488
0.826376
0.596755
0.318901
0.116672
0.0243113
0.00211796
0.000949778
0.000337228
0.000134279
4.48553e-05
1.68397e-05
4.97844e-06
1.79509e-06
4.76557e-07
1.39414e-07
4.5078e-08
1.19508e-08
3.17123e-09
9.15437e-10
2.22897e-10
6.33766e-11
2.10466e-11
1.13788e-11
1.07843e-11
1.22998e-11
1.48481e-11
1.91215e-11
2.47531e-11
3.1413e-11
3.9691e-11
4.77821e-11
5.62683e-11
6.21439e-11
6.49718e-11
6.58238e-11
6.49462e-11
6.56033e-11
6.56569e-11
6.58182e-11
7.00127e-11
7.02644e-11
7.18129e-11
7.26237e-11
7.3462e-11
7.44341e-11
7.60644e-11
7.69346e-11
7.69803e-11
7.71389e-11
7.74018e-11
7.78545e-11
7.84184e-11
9.56881e-11
1.65459e-10
4.02689e-10
1.39483e-09
5.7533e-09
2.58594e-08
1.20319e-07
5.79325e-07
2.94687e-06
1.53564e-05
8.14588e-05
0.000416715
0.00210394
0.0119724
0.0652615
0.25205
0.505927
0.719895
0.849082
0.907049
0.926759
0.919756
0.870342
0.742103
0.528372
0.273282
0.100412
0.019218
0.00386713
0.00172374
0.00040733
0.000100056
3.1274e-05
9.6914e-06
2.94015e-06
8.24366e-07
2.27742e-07
5.94853e-08
1.36755e-08
3.28382e-09
7.05428e-10
2.13573e-10
9.26363e-11
7.78757e-11
7.82274e-11
8.11156e-11
8.08013e-11
7.8083e-11
8.37994e-11
8.37434e-11
9.13015e-11
1.01257e-10
1.15281e-10
1.2533e-10
1.27972e-10
1.24787e-10
1.24287e-10
1.20826e-10
1.14666e-10
1.1653e-10
1.167e-10
1.16588e-10
1.16643e-10
1.16587e-10
1.16262e-10
1.15361e-10
1.17257e-10
1.19874e-10
1.21685e-10
1.22e-10
1.21559e-10
1.21511e-10
1.22327e-10
1.24123e-10
1.28199e-10
1.37517e-10
2.03391e-10
3.48025e-10
7.2574e-10
3.47864e-09
1.55731e-08
4.94538e-08
2.95904e-07
2.132e-06
1.12139e-05
6.53318e-05
0.000394226
0.00214915
0.0120606
0.0647962
0.241703
0.489946
0.695719
0.787765
0.796951
0.797863
0.709632
0.549057
0.364024
0.188133
0.0707595
0.0157173
0.00554421
0.00223286
0.000637765
0.000153541
3.78199e-05
1.07095e-05
2.60068e-06
6.80794e-07
1.7235e-07
4.32889e-08
9.60164e-09
2.98978e-09
1.03606e-09
3.21688e-10
1.26599e-10
8.89845e-11
7.71726e-11
7.81442e-11
7.78314e-11
7.78195e-11
8.02195e-11
8.23517e-11
9.59858e-11
1.14172e-10
1.28147e-10
1.46592e-10
1.37257e-10
1.37363e-10
1.39281e-10
1.44139e-10
1.65513e-10
1.70328e-10
1.61199e-10
1.41722e-10
1.16691e-10
9.84719e-11
9.23445e-11
9.05834e-11
8.72916e-11
8.32415e-11
7.27364e-11
4.78459e-11
3.545e-11
4.03194e-11
3.97318e-11
3.25079e-11
4.02551e-11
5.95357e-11
6.59215e-11
8.47697e-11
1.67929e-10
6.89444e-10
2.47384e-09
9.54974e-09
5.06785e-08
2.37312e-07
1.05416e-06
4.94403e-06
2.50341e-05
0.000128856
0.000653482
0.00336765
0.0178402
0.0826263
0.249335
0.443647
0.589708
0.635824
0.655765
0.63216
0.473966
0.328773
0.16964
0.0652544
0.0170134
0.00740475
0.00322804
0.00102348
0.000276733
7.68004e-05
2.73504e-05
8.16001e-06
1.88209e-06
5.63034e-07
1.90987e-07
5.51593e-08
1.96917e-08
7.00569e-09
1.63333e-09
4.16077e-10
2.18736e-10
1.19537e-10
1.0596e-10
1.14705e-10
2.10753e-10
3.28618e-10
1.16066e-09
1.23666e-09
2.61401e-10
3.66992e-12
1.81948e-12
7.92971e-13
3.86616e-13
2.04291e-13
1.15902e-13
6.62524e-14
3.92942e-14
2.71587e-14
1.73896e-14
1.29908e-14
1.07644e-14
7.25171e-15
6.70756e-15
5.71138e-15
3.35594e-15
4.59663e-15
3.74892e-15
2.99665e-15
5.68434e-15
3.49315e-15
6.08107e-15
1.05152e-14
5.35202e-15
1.99436e-14
3.13142e-14
3.30719e-14
1.93402e-13
1.91099e-13
1.48204e-12
1.51121e-11
1.73537e-11
4.63555e-10
3.65869e-09
1.31555e-08
2.35993e-07
1.26693e-06
1.15939e-05
0.000151546
0.00130008
0.0110346
0.0714088
0.133105
0.137336
0.0861167
0.0235572
0.014541
0.00750904
0.000506033
0.000230047
9.08787e-05
5.45726e-05
2.44433e-05
6.08335e-06
1.59487e-06
6.4832e-07
1.34821e-07
1.77782e-18
2.31117e-19
3.31085e-20
2.63619e-21
4.50974e-23
1.709e-25
3.25938e-28
4.98896e-31
6.47546e-34
7.68412e-37
8.51367e-40
8.81835e-43
3.25125e-42
5.30691e-39
2.88205e-36
1.19547e-33
3.34541e-31
3.52673e-29
4.20928e-27
5.22986e-25
2.19853e-23
1.97461e-22
8.17431e-21
3.22624e-19
2.46133e-18
4.38886e-17
2.32086e-16
2.19534e-15
4.18027e-14
7.44648e-15
2.19256e-13
2.30326e-11
2.09513e-13
4.49216e-09
5.7937e-08
4.96139e-07
1.62243e-05
9.81413e-05
0.000897607
0.00888448
0.0529778
0.193805
0.344378
0.421342
0.427307
0.378408
0.258441
0.132347
0.0598335
0.00988084
0.00141431
0.000824851
0.000280708
0.000130645
4.6596e-05
1.88688e-05
6.15751e-06
2.26289e-06
6.41709e-07
2.21803e-07
5.57619e-08
1.52859e-08
4.6795e-09
1.16124e-09
2.8729e-10
8.11867e-11
2.01662e-11
1.02976e-11
6.81592e-12
6.70046e-12
8.29485e-12
9.96489e-12
1.23483e-11
1.50689e-11
1.94235e-11
2.45105e-11
3.07666e-11
3.77919e-11
4.29898e-11
4.71142e-11
4.89047e-11
4.91751e-11
4.13718e-11
4.44482e-11
3.91933e-11
3.80027e-11
4.97933e-11
4.82339e-11
5.45176e-11
5.96593e-11
6.65804e-11
7.28233e-11
7.85847e-11
8.39666e-11
8.55454e-11
8.59873e-11
8.64137e-11
8.64631e-11
8.69619e-11
8.729e-11
8.81554e-11
8.92877e-11
9.58566e-11
1.71458e-10
5.65284e-10
2.58411e-09
1.24823e-08
6.5191e-08
3.4928e-07
1.97662e-06
1.07767e-05
5.66092e-05
0.000287822
0.0013879
0.00661018
0.0287806
0.0926934
0.210595
0.319311
0.356382
0.342727
0.258436
0.156845
0.0696928
0.0171012
0.00498417
0.00246404
0.000692592
0.000176928
4.65959e-05
1.39998e-05
4.71216e-06
1.40791e-06
4.0609e-07
1.08367e-07
2.79327e-08
6.85855e-09
1.46917e-09
3.70868e-10
1.09802e-10
8.25187e-11
6.48482e-11
6.69332e-11
5.76557e-11
6.31841e-11
6.40807e-11
5.45144e-11
6.56473e-11
5.32603e-11
6.30832e-11
7.093e-11
9.36014e-11
1.04422e-10
1.2097e-10
1.14544e-10
1.01187e-10
8.93235e-11
7.50732e-11
8.23353e-11
8.4073e-11
1.05207e-10
1.0033e-10
9.61997e-11
9.95573e-11
1.00458e-10
1.14586e-10
1.2096e-10
1.26679e-10
1.30466e-10
1.31964e-10
1.34511e-10
1.41875e-10
1.90585e-10
1.88241e-10
1.81367e-10
1.81773e-10
1.82588e-10
1.83669e-10
2.07483e-10
4.40826e-10
1.01921e-09
5.77748e-09
4.27698e-08
2.28411e-07
1.47403e-06
9.26489e-06
5.13534e-05
0.000272772
0.00138619
0.00659671
0.0269916
0.0849889
0.141165
0.170267
0.186564
0.147339
0.0841119
0.0335786
0.0102196
0.00617081
0.00279676
0.000944765
0.000286422
8.09971e-05
1.77706e-05
5.016e-06
1.42334e-06
3.56423e-07
8.56917e-08
1.98247e-08
4.58582e-09
1.01856e-09
3.62279e-10
1.7769e-10
1.09559e-10
8.14913e-11
6.08596e-11
4.54435e-11
4.77316e-11
4.58182e-11
4.56863e-11
4.99965e-11
4.77956e-11
5.99549e-11
7.43572e-11
9.81306e-11
1.60108e-10
1.76286e-10
1.69501e-10
1.73659e-10
1.79491e-10
1.82855e-10
1.81583e-10
1.6788e-10
1.42133e-10
1.16814e-10
9.416e-11
6.75531e-11
7.23349e-11
8.50183e-11
8.45444e-11
7.38977e-11
4.59996e-11
3.1434e-11
2.66982e-11
2.48419e-11
2.87599e-11
5.10049e-11
1.11374e-10
1.48367e-10
1.42087e-10
1.40858e-10
1.42829e-10
1.80856e-10
2.98029e-10
1.02401e-09
4.64099e-09
2.15799e-08
1.09399e-07
5.66759e-07
3.06701e-06
1.67858e-05
9.47225e-05
0.000521114
0.00239165
0.0102006
0.0295308
0.0644323
0.0874501
0.104296
0.0976832
0.0642302
0.0265208
0.0132386
0.0071262
0.00351865
0.00147454
0.000470498
0.000123447
2.85537e-05
8.11082e-06
2.96848e-06
9.3122e-07
2.66708e-07
7.74173e-08
2.49376e-08
6.90806e-09
2.37951e-09
8.31699e-10
1.99707e-10
8.33147e-11
7.84251e-11
7.8668e-11
8.89659e-11
1.05792e-10
2.02213e-10
8.29126e-10
2.19857e-09
1.26222e-09
1.20313e-10
2.60353e-12
1.28576e-12
5.48429e-13
2.62106e-13
1.36634e-13
7.49346e-14
4.16693e-14
2.41063e-14
1.54124e-14
9.6569e-15
6.75661e-15
5.04658e-15
3.47088e-15
2.62886e-15
1.88349e-15
1.1653e-15
1.20555e-15
9.67587e-16
7.3758e-16
9.57596e-16
6.82259e-16
8.0664e-16
1.07943e-15
6.90248e-16
1.58317e-15
1.83509e-15
1.49864e-15
6.58011e-15
4.93781e-15
1.81573e-14
3.78233e-14
1.75728e-14
2.98972e-13
1.4652e-12
1.84494e-12
5.24156e-11
1.81683e-10
3.83178e-10
1.36905e-09
3.14149e-09
6.79906e-08
1.08075e-07
2.4569e-06
7.42017e-06
1.33948e-05
3.36966e-05
5.49714e-05
4.93887e-05
4.14943e-05
2.11279e-05
7.99693e-06
5.53884e-06
2.67432e-06
6.27941e-07
1.67079e-07
7.08482e-08
1.5166e-08
3.28641e-20
3.99023e-21
4.75709e-22
2.95384e-23
3.86601e-25
1.37417e-27
2.50121e-30
3.56648e-33
4.3317e-36
4.7888e-39
4.94495e-42
4.82773e-45
5.03387e-45
1.15642e-41
8.26706e-39
3.98639e-36
1.21934e-33
1.56859e-31
2.18679e-29
1.90121e-27
9.04434e-26
4.28072e-24
1.42942e-22
2.43629e-21
2.56065e-20
3.77162e-19
3.34307e-18
4.35753e-17
5.01742e-16
1.24783e-15
9.59204e-15
1.09853e-13
1.27525e-13
4.51818e-12
9.10184e-11
3.02e-10
4.27946e-08
2.23798e-07
2.92104e-06
2.85371e-05
0.000133404
0.000539775
0.00216926
0.00549758
0.00863472
0.00823215
0.00154352
0.000462415
0.000388201
0.000307746
0.00015258
8.62311e-05
3.39513e-05
1.79724e-05
6.46487e-06
2.633e-06
8.44999e-07
3.02349e-07
8.27354e-08
2.73584e-08
6.53731e-09
1.68884e-09
4.89125e-10
1.18697e-10
2.88815e-11
1.24158e-11
5.09528e-12
3.22187e-12
3.25073e-12
4.24621e-12
5.25605e-12
6.62973e-12
7.3439e-12
8.17817e-12
9.75603e-12
1.12987e-11
1.30961e-11
1.51066e-11
1.58611e-11
1.67397e-11
1.75205e-11
1.84458e-11
1.37451e-11
1.49138e-11
1.28362e-11
1.21069e-11
1.7626e-11
1.70537e-11
2.1451e-11
2.5532e-11
3.18239e-11
3.97495e-11
4.9367e-11
6.09285e-11
6.76977e-11
7.54853e-11
7.89861e-11
8.63784e-11
9.16369e-11
9.67236e-11
9.93854e-11
1.02075e-10
1.02383e-10
1.04006e-10
1.06174e-10
1.15822e-10
2.39135e-10
9.90457e-10
4.96792e-09
2.85545e-08
1.64544e-07
9.5695e-07
5.50276e-06
2.98973e-05
0.000144233
0.000612734
0.00200256
0.00548334
0.010763
0.0130754
0.0121022
0.00681455
0.00372595
0.0035356
0.00194156
0.000707867
0.000244813
6.94679e-05
1.84641e-05
6.77036e-06
2.18864e-06
7.14718e-07
2.05488e-07
5.63738e-08
1.43288e-08
3.46445e-09
8.18199e-10
1.93504e-10
8.66387e-11
5.96811e-11
5.72515e-11
3.57247e-11
4.00939e-11
3.06008e-11
3.31769e-11
3.06014e-11
2.11951e-11
2.77798e-11
1.76915e-11
2.42323e-11
2.60906e-11
4.01679e-11
4.42315e-11
7.39325e-11
5.48478e-11
4.43441e-11
3.65901e-11
2.8413e-11
3.3247e-11
3.12349e-11
5.08359e-11
4.71556e-11
4.54518e-11
4.93413e-11
5.04907e-11
6.76279e-11
7.41252e-11
8.51364e-11
9.55714e-11
9.87742e-11
1.09327e-10
1.31926e-10
1.95991e-10
1.9612e-10
1.93121e-10
1.92845e-10
1.92409e-10
2.00203e-10
2.00729e-10
2.0455e-10
2.0844e-10
2.21232e-10
5.45412e-10
1.64159e-09
5.65384e-09
3.8861e-08
2.3479e-07
1.15125e-06
5.09244e-06
1.39271e-05
2.39607e-05
1.89594e-05
0.000248415
0.000887822
4.97955e-05
0.00305583
0.00282279
0.00257548
0.00160137
0.000806659
0.000321906
0.000108002
3.29843e-05
1.02387e-05
2.55526e-06
8.08991e-07
2.15041e-07
4.949e-08
1.08855e-08
2.35456e-09
5.69762e-10
1.98488e-10
1.22458e-10
1.03454e-10
7.51659e-11
4.46717e-11
2.94324e-11
2.00425e-11
1.90356e-11
1.59702e-11
1.573e-11
1.7009e-11
1.54174e-11
1.8774e-11
2.28784e-11
3.69458e-11
1.02358e-10
1.65359e-10
1.77753e-10
1.7e-10
1.73617e-10
1.41376e-10
1.37357e-10
1.12079e-10
8.43392e-11
6.6719e-11
4.65707e-11
2.98017e-11
3.47926e-11
5.30868e-11
6.52887e-11
3.77511e-11
2.76611e-11
2.52968e-11
2.27978e-11
2.32477e-11
2.81122e-11
5.33041e-11
1.1538e-10
1.71299e-10
1.8232e-10
2.13278e-10
2.27047e-10
2.23658e-10
2.26733e-10
2.28948e-10
2.31664e-10
3.14057e-10
7.80761e-10
2.84188e-09
1.32121e-08
5.37501e-08
3.19334e-07
1.08291e-06
4.19841e-06
1.28984e-05
4.36252e-05
0.000105927
0.000394686
0.000236861
0.000840762
0.00263017
0.00152705
0.00169865
0.000940594
0.000471857
0.00019261
5.43144e-05
1.37437e-05
3.36996e-06
1.26127e-06
4.64066e-07
1.42166e-07
3.86025e-08
1.07162e-08
3.29448e-09
8.88293e-10
3.13494e-10
1.27542e-10
5.76009e-11
5.06145e-11
6.5186e-11
7.81837e-11
8.73942e-11
1.27858e-10
4.42594e-10
2.12536e-09
2.24821e-09
8.07849e-10
1.30814e-11
1.76247e-12
7.8528e-13
3.38667e-13
1.6343e-13
8.26722e-14
4.40978e-14
2.44418e-14
1.39584e-14
8.78264e-15
5.45213e-15
3.70722e-15
2.67566e-15
1.81131e-15
1.32016e-15
9.08956e-16
5.63732e-16
5.07223e-16
4.12788e-16
3.22229e-16
3.47551e-16
2.73323e-16
2.7298e-16
2.98178e-16
2.37005e-16
3.99909e-16
4.64408e-16
4.0519e-16
8.78732e-16
9.17164e-16
1.7678e-15
3.40092e-15
3.73165e-15
2.29968e-14
3.87437e-14
6.63987e-14
3.66415e-13
5.47409e-13
4.0208e-12
3.62469e-11
9.5617e-11
1.11939e-09
8.51574e-09
1.32159e-08
4.77015e-07
6.49351e-07
1.2969e-06
2.88844e-06
3.14005e-06
3.35468e-06
1.91211e-06
7.15775e-07
5.5781e-07
2.88109e-07
6.50065e-08
1.75143e-08
7.66119e-09
1.66039e-09
5.76919e-22
6.66252e-23
6.71027e-24
3.29053e-25
3.43069e-27
1.13299e-29
1.9482e-32
2.56937e-35
2.89791e-38
2.96594e-41
2.8372e-44
2.59939e-47
3.33471e-46
1.04959e-42
9.9191e-40
5.68069e-37
2.00186e-34
3.04992e-32
4.63717e-30
4.12314e-28
2.05897e-26
9.98469e-25
3.36569e-23
6.07116e-22
7.51044e-21
1.27938e-19
1.1209e-18
9.75129e-18
1.10141e-16
4.32126e-16
2.45014e-15
1.64352e-14
3.67817e-14
1.94345e-13
8.9815e-13
2.97227e-12
1.36308e-10
6.91546e-10
6.09903e-09
4.99054e-08
1.99819e-07
5.38837e-07
9.11756e-07
2.89985e-06
2.05286e-06
8.02096e-06
2.48209e-05
2.82376e-05
2.96447e-05
2.25409e-05
1.66948e-05
1.05744e-05
4.38131e-06
2.45202e-06
8.948e-07
3.64487e-07
1.15692e-07
4.021e-08
1.06704e-08
3.37614e-09
7.71808e-10
1.95113e-10
5.53033e-11
1.82109e-11
6.47135e-12
2.65099e-12
1.78621e-12
2.08308e-12
2.52407e-12
2.83015e-12
3.25895e-12
3.61006e-12
3.71387e-12
3.84728e-12
4.36262e-12
4.78862e-12
5.31156e-12
5.76436e-12
5.83423e-12
6.06429e-12
5.98444e-12
6.18976e-12
5.42774e-12
5.74728e-12
5.49014e-12
5.52181e-12
6.55334e-12
6.44442e-12
7.2103e-12
7.81841e-12
9.52682e-12
1.253e-11
1.64801e-11
2.27674e-11
2.66177e-11
3.29902e-11
3.75749e-11
4.83793e-11
6.087e-11
7.75695e-11
9.5902e-11
1.08613e-10
1.25696e-10
1.27632e-10
1.3074e-10
1.30766e-10
1.31443e-10
1.33805e-10
2.05943e-10
4.56707e-10
1.08871e-09
3.58823e-09
1.51849e-08
6.40738e-08
1.35947e-07
1.64772e-07
3.16271e-07
2.95622e-07
2.63185e-07
1.52692e-05
3.15953e-06
0.000204492
0.000215575
0.000234998
0.000138813
5.42287e-05
2.06975e-05
7.67483e-06
2.90553e-06
1.08138e-06
3.44104e-07
1.08834e-07
3.00943e-08
7.86371e-09
1.92009e-09
4.56469e-10
1.26483e-10
5.98414e-11
5.0437e-11
2.92497e-11
2.89062e-11
1.50131e-11
1.67583e-11
9.70114e-12
9.87628e-12
8.16335e-12
6.43185e-12
7.44754e-12
6.25314e-12
8.46809e-12
8.99774e-12
1.29191e-11
1.36217e-11
2.11422e-11
1.57404e-11
1.44068e-11
1.20594e-11
9.86498e-12
1.10318e-11
9.77056e-12
1.31994e-11
1.22733e-11
1.26066e-11
1.42256e-11
1.54377e-11
2.40533e-11
2.62742e-11
3.37974e-11
4.02141e-11
4.22204e-11
5.04685e-11
5.96965e-11
1.50405e-10
1.06307e-10
1.3948e-10
1.59914e-10
1.86486e-10
2.2218e-10
2.44873e-10
2.42899e-10
2.32269e-10
2.33831e-10
2.37702e-10
3.63704e-10
8.6179e-10
2.78324e-09
1.47543e-08
5.85886e-08
2.11331e-07
5.23571e-07
2.3945e-06
3.77767e-06
9.72097e-06
4.93765e-05
8.79956e-06
0.000125972
0.000107962
0.000116741
0.000116048
6.91786e-05
3.01877e-05
1.22117e-05
4.09578e-06
1.35127e-06
4.34502e-07
1.32359e-07
3.28123e-08
6.94489e-09
1.41641e-09
3.45472e-10
1.37281e-10
1.19414e-10
8.95696e-11
6.39667e-11
3.82509e-11
1.92831e-11
1.09029e-11
6.79337e-12
6.72769e-12
6.44431e-12
6.74734e-12
6.86364e-12
7.10179e-12
7.89548e-12
9.35809e-12
1.41232e-11
3.20104e-11
7.9081e-11
1.2965e-10
1.08053e-10
1.0807e-10
6.90626e-11
7.11329e-11
4.82783e-11
3.38304e-11
2.24706e-11
1.44932e-11
1.08255e-11
1.16847e-11
1.47349e-11
1.93562e-11
1.06079e-11
1.37573e-11
1.58638e-11
1.25615e-11
9.22485e-12
9.80204e-12
1.74938e-11
5.77546e-11
1.36943e-10
1.7823e-10
2.27334e-10
2.71412e-10
2.8497e-10
2.86758e-10
2.88953e-10
2.78989e-10
2.86257e-10
3.77343e-10
8.50604e-10
2.40654e-09
8.20921e-09
2.79954e-08
1.00643e-07
2.04747e-07
5.25555e-07
1.7693e-06
6.0124e-06
2.3462e-05
3.60787e-05
3.18941e-05
0.000102892
6.24578e-05
0.000108411
7.90936e-05
4.17344e-05
2.04867e-05
6.53069e-06
1.68351e-06
5.33063e-07
2.0781e-07
7.56178e-08
2.20551e-08
5.6554e-09
1.52644e-09
4.66007e-10
1.43002e-10
6.78716e-11
4.81468e-11
4.03588e-11
4.82221e-11
6.33271e-11
8.09601e-11
1.04853e-10
2.49586e-10
1.38221e-09
2.1366e-09
1.64712e-09
2.27031e-10
2.36688e-12
1.10415e-12
4.72032e-13
2.07421e-13
9.77791e-14
4.70906e-14
2.40369e-14
1.31759e-14
7.43302e-15
4.59742e-15
2.85859e-15
1.89421e-15
1.32614e-15
8.80014e-16
6.3598e-16
4.3247e-16
2.62872e-16
2.15014e-16
1.67796e-16
1.31253e-16
1.35891e-16
1.05983e-16
1.01821e-16
1.09446e-16
8.6096e-17
1.35551e-16
1.57818e-16
1.3788e-16
2.52865e-16
2.85097e-16
4.31826e-16
7.96976e-16
9.08832e-16
4.3047e-15
7.12075e-15
1.00373e-14
4.34578e-14
7.5672e-14
2.65305e-13
1.87485e-12
1.76395e-12
2.91052e-11
2.75144e-10
2.40013e-10
1.55227e-08
2.14653e-08
4.97185e-08
1.50604e-07
2.02063e-07
2.67803e-07
1.70917e-07
6.48041e-08
5.58108e-08
3.0639e-08
6.74051e-09
1.83461e-09
8.20227e-10
1.77544e-10
9.66172e-24
1.07674e-24
9.29129e-26
3.64524e-27
3.12915e-29
9.52275e-32
1.53132e-34
1.85203e-37
1.92339e-40
1.80894e-43
1.59145e-46
1.40664e-49
3.02657e-47
1.00861e-43
1.09651e-40
6.99666e-38
2.71111e-35
4.57056e-33
6.89619e-31
5.98223e-29
3.11964e-27
1.70943e-25
6.11694e-24
1.20236e-22
1.8058e-21
3.25389e-20
3.37432e-19
3.14569e-18
3.39387e-17
1.73781e-16
1.06998e-15
6.64964e-15
1.78008e-14
1.32743e-13
4.95823e-13
8.52105e-13
1.27498e-11
7.27751e-11
5.55365e-10
5.52412e-09
2.23936e-08
9.40458e-08
3.39211e-07
5.85873e-07
1.03653e-06
1.34067e-06
1.41821e-06
1.82439e-06
2.34344e-06
2.10116e-06
1.8294e-06
1.28584e-06
5.65063e-07
3.31245e-07
1.23307e-07
5.01029e-08
1.58061e-08
5.3371e-09
1.38253e-09
4.20863e-10
9.81266e-11
3.03459e-11
1.16502e-11
3.33778e-12
1.37712e-12
1.1704e-12
1.49536e-12
1.385e-12
1.44889e-12
1.56913e-12
1.73522e-12
1.84044e-12
1.84756e-12
1.87728e-12
2.11979e-12
2.30869e-12
2.55192e-12
2.68924e-12
2.72097e-12
2.88566e-12
2.83678e-12
3.00006e-12
2.81245e-12
3.00333e-12
2.94653e-12
2.98687e-12
3.40696e-12
3.43159e-12
3.7722e-12
4.12935e-12
4.52799e-12
5.10834e-12
5.60784e-12
6.50836e-12
7.5333e-12
9.34757e-12
1.10599e-11
1.61375e-11
2.36221e-11
3.40828e-11
4.98488e-11
6.74711e-11
9.69783e-11
1.20075e-10
1.41526e-10
1.44058e-10
1.5253e-10
1.50503e-10
1.52458e-10
1.70334e-10
3.11648e-10
1.041e-09
2.80728e-09
9.46353e-09
2.78981e-08
5.88882e-08
1.61285e-07
1.55249e-07
1.88705e-07
9.07158e-07
1.94774e-07
5.02626e-06
6.8962e-06
9.47631e-06
7.85095e-06
4.04245e-06
2.0505e-06
1.03308e-06
4.61227e-07
1.73364e-07
5.42435e-08
1.66236e-08
4.43054e-09
1.11009e-09
2.84711e-10
7.86296e-11
4.9483e-11
2.44684e-11
2.17108e-11
1.09908e-11
1.07155e-11
4.63118e-12
4.85656e-12
4.27062e-12
4.63108e-12
4.59514e-12
4.05535e-12
4.3126e-12
3.59304e-12
4.58007e-12
4.52423e-12
5.78549e-12
5.77714e-12
7.13496e-12
6.01613e-12
5.75459e-12
5.05055e-12
4.42216e-12
4.79683e-12
4.44819e-12
5.34743e-12
5.17617e-12
5.35562e-12
5.54355e-12
5.75246e-12
7.16377e-12
7.59463e-12
9.82718e-12
1.17208e-11
1.24878e-11
1.62098e-11
2.00301e-11
3.67493e-11
4.02058e-11
6.49121e-11
8.87495e-11
1.17069e-10
1.56623e-10
2.34456e-10
2.50776e-10
2.54973e-10
2.64072e-10
2.37115e-10
2.32025e-10
3.13846e-10
4.67248e-10
1.53876e-09
5.15013e-09
1.34982e-08
2.77469e-08
9.15668e-08
1.44943e-07
4.27541e-07
2.61295e-06
1.04946e-06
3.99697e-06
3.06493e-06
3.16713e-06
4.89291e-06
4.9636e-06
2.89802e-06
1.39748e-06
5.55951e-07
2.1991e-07
7.47451e-08
2.18324e-08
5.04486e-09
9.88838e-10
2.16587e-10
1.09885e-10
9.11727e-11
7.46311e-11
4.90385e-11
3.16248e-11
1.5479e-11
6.2402e-12
4.84245e-12
4.69027e-12
4.3599e-12
3.96541e-12
4.09566e-12
4.09213e-12
4.05018e-12
4.38707e-12
5.29699e-12
7.93619e-12
1.31195e-11
2.37683e-11
4.85288e-11
4.14296e-11
3.91658e-11
2.32586e-11
2.41465e-11
1.62645e-11
1.28319e-11
8.8422e-12
6.47807e-12
5.31322e-12
5.61128e-12
5.86404e-12
6.00647e-12
5.27245e-12
7.62431e-12
7.19244e-12
4.61988e-12
3.15526e-12
2.6798e-12
3.4891e-12
1.50519e-11
6.35518e-11
9.7202e-11
1.14189e-10
1.57273e-10
2.2191e-10
2.90071e-10
3.54428e-10
4.03528e-10
5.73468e-10
6.58077e-10
7.66588e-10
9.18156e-10
1.93981e-09
4.53824e-09
1.33165e-08
2.64234e-08
5.33605e-08
1.34961e-07
3.72177e-07
1.31681e-06
2.29072e-06
1.21758e-06
3.22498e-06
1.13722e-06
4.80603e-06
5.02854e-06
3.55878e-06
2.22431e-06
7.88454e-07
2.46243e-07
8.67139e-08
3.44379e-08
1.23944e-08
3.47199e-09
8.73161e-10
2.59204e-10
9.81479e-11
5.20424e-11
3.99819e-11
3.61053e-11
3.88982e-11
4.78659e-11
7.56812e-11
1.1236e-10
1.8691e-10
5.66146e-10
1.36483e-09
1.26431e-09
4.11742e-10
4.56635e-12
1.74111e-12
7.10583e-13
3.01272e-13
1.32245e-13
6.01076e-14
2.78383e-14
1.35644e-14
7.21961e-15
3.97764e-15
2.37696e-15
1.48072e-15
9.48979e-16
6.36046e-16
4.18924e-16
2.95228e-16
1.97242e-16
1.18461e-16
8.69875e-17
6.35304e-17
4.75278e-17
4.4616e-17
3.42509e-17
3.05069e-17
3.12653e-17
2.44332e-17
3.34537e-17
3.9255e-17
3.44447e-17
5.55849e-17
6.12024e-17
8.20273e-17
1.35884e-16
1.57443e-16
5.77456e-16
1.11893e-15
1.24945e-15
4.36028e-15
9.13745e-15
2.69153e-14
1.34232e-13
1.41198e-13
1.26949e-12
7.44184e-12
7.04994e-12
5.10004e-10
6.31634e-10
2.04489e-09
7.82023e-09
1.31134e-08
2.1159e-08
1.51241e-08
5.91397e-09
5.55267e-09
3.2246e-09
6.99601e-10
1.91819e-10
8.69482e-11
1.85848e-11
1.55045e-25
1.68661e-26
1.26301e-27
4.01571e-29
2.9097e-31
8.0982e-34
1.20442e-36
1.32333e-39
1.25292e-42
1.07295e-45
8.60333e-49
1.0331e-51
2.09552e-48
7.25857e-45
8.78283e-42
6.06713e-39
2.49121e-36
4.55204e-34
6.88335e-32
6.20049e-30
3.61754e-28
2.1117e-26
7.86595e-25
1.86413e-23
3.56576e-22
6.36082e-21
7.97755e-20
8.36561e-19
8.15739e-18
5.07269e-17
3.27326e-16
1.88435e-15
7.37854e-15
4.91929e-14
1.97648e-13
4.83897e-13
2.61735e-12
1.17937e-11
5.05207e-11
3.61832e-10
1.42305e-09
6.3538e-09
2.19459e-08
4.04783e-08
9.38414e-08
1.21951e-07
1.32754e-07
1.62347e-07
1.9915e-07
1.94938e-07
1.99811e-07
1.54801e-07
7.26568e-08
4.43547e-08
1.69274e-08
6.8554e-09
2.16315e-09
7.12087e-10
1.89842e-10
5.6722e-11
2.12929e-11
6.41661e-12
1.93032e-12
8.2798e-13
8.5855e-13
8.60555e-13
7.9371e-13
7.74127e-13
8.04298e-13
8.38208e-13
9.05401e-13
9.47444e-13
9.65611e-13
9.92801e-13
1.1443e-12
1.25473e-12
1.37395e-12
1.41505e-12
1.43266e-12
1.52901e-12
1.5286e-12
1.65687e-12
1.59519e-12
1.69367e-12
1.69554e-12
1.72664e-12
1.96426e-12
1.98762e-12
2.18585e-12
2.36633e-12
2.57161e-12
2.89078e-12
3.16755e-12
3.45475e-12
3.70259e-12
4.096e-12
4.30807e-12
5.28788e-12
7.43547e-12
1.21433e-11
1.97858e-11
2.9682e-11
4.82696e-11
6.66007e-11
1.0226e-10
1.13245e-10
1.4279e-10
1.56394e-10
1.61758e-10
1.73232e-10
2.199e-10
3.69492e-10
6.72124e-10
1.86975e-09
6.9768e-09
2.3582e-08
4.6201e-08
8.25874e-08
1.23792e-07
1.94719e-07
1.57142e-07
2.86724e-07
3.5913e-07
5.60398e-07
5.46185e-07
4.21721e-07
2.93083e-07
1.59194e-07
7.34433e-08
2.78502e-08
8.57337e-09
2.55738e-09
6.68102e-10
1.7328e-10
6.89594e-11
2.53115e-11
1.54859e-11
5.98205e-12
7.04212e-12
3.84261e-12
3.7913e-12
3.45619e-12
3.56119e-12
2.89153e-12
2.95526e-12
2.64525e-12
2.30083e-12
2.36232e-12
2.01081e-12
2.44113e-12
2.36775e-12
2.87957e-12
2.85978e-12
3.32522e-12
2.85344e-12
2.72532e-12
2.45307e-12
2.23182e-12
2.39745e-12
2.31033e-12
2.64881e-12
2.61346e-12
2.73278e-12
2.84569e-12
2.9328e-12
3.56632e-12
3.67559e-12
4.03245e-12
4.22485e-12
4.2523e-12
4.95569e-12
7.80253e-12
1.144e-11
1.98807e-11
2.88985e-11
4.53529e-11
6.48566e-11
8.56412e-11
1.21375e-10
1.64887e-10
1.78457e-10
2.07232e-10
1.79855e-10
1.80967e-10
2.149e-10
2.35326e-10
3.62889e-10
8.67231e-10
2.49459e-09
7.05797e-09
1.84334e-08
4.0349e-08
8.73637e-08
2.39522e-07
1.34519e-07
1.87844e-07
1.26946e-07
6.51138e-08
2.23269e-07
3.39078e-07
2.95207e-07
1.77994e-07
9.36162e-08
3.80277e-08
1.29502e-08
3.62433e-09
7.86929e-10
1.55068e-10
6.54127e-11
5.58595e-11
4.54463e-11
3.83874e-11
2.14041e-11
1.07372e-11
4.65287e-12
4.23113e-12
3.58407e-12
2.83811e-12
2.56118e-12
2.34776e-12
2.43796e-12
2.40946e-12
2.42216e-12
2.58296e-12
2.99037e-12
4.35996e-12
6.41193e-12
9.39963e-12
1.41888e-11
1.24678e-11
1.10925e-11
8.47623e-12
8.79844e-12
6.28819e-12
5.52855e-12
4.25068e-12
3.43937e-12
2.9563e-12
3.11443e-12
3.32106e-12
3.3848e-12
3.31865e-12
4.71805e-12
3.93282e-12
2.48613e-12
1.54604e-12
1.34217e-12
1.76939e-12
3.78303e-12
1.68442e-11
3.08332e-11
3.43487e-11
4.62371e-11
8.76801e-11
1.84657e-10
3.11999e-10
4.0525e-10
6.21156e-10
6.56924e-10
5.92098e-10
4.64107e-10
5.40052e-10
8.03471e-10
1.9996e-09
4.75512e-09
1.16425e-08
2.87084e-08
6.50048e-08
1.50703e-07
1.74017e-07
7.87062e-08
1.23171e-07
2.91891e-08
2.28103e-07
3.70475e-07
3.31434e-07
2.60406e-07
1.15242e-07
4.04457e-08
1.42357e-08
5.75445e-09
2.07081e-09
5.90393e-10
1.80293e-10
8.34591e-11
5.23272e-11
3.48166e-11
3.36186e-11
3.49851e-11
3.86153e-11
6.0598e-11
1.13743e-10
1.65391e-10
2.51442e-10
5.87001e-10
7.45242e-10
2.47432e-10
5.91141e-12
2.69558e-12
1.0929e-12
4.46794e-13
1.86932e-13
8.06186e-14
3.56457e-14
1.60888e-14
7.66581e-15
4.02909e-15
2.17786e-15
1.25795e-15
7.75298e-16
4.78938e-16
3.05118e-16
2.01518e-16
1.36756e-16
8.92673e-17
5.33585e-17
3.59315e-17
2.46036e-17
1.71142e-17
1.42054e-17
1.08135e-17
8.58032e-18
7.81443e-18
6.04215e-18
6.93016e-18
7.86138e-18
6.58877e-18
9.05607e-18
9.04497e-18
1.02769e-17
1.57288e-17
1.90494e-17
5.78254e-17
1.24532e-16
1.20788e-16
3.75564e-16
6.44473e-16
1.78189e-15
7.66096e-15
1.03893e-14
7.02293e-14
2.60411e-13
2.56604e-13
1.63568e-11
2.03694e-11
8.45231e-11
4.0561e-10
8.55935e-10
1.65777e-09
1.32775e-09
5.42601e-10
5.49829e-10
3.36457e-10
7.2564e-11
1.99975e-11
9.12842e-12
1.90975e-12
2.39432e-27
2.56532e-28
1.68614e-29
4.39792e-31
2.73593e-33
6.91049e-36
9.38883e-39
9.26099e-42
7.89712e-45
6.08705e-48
4.39801e-51
2.04877e-53
1.12372e-49
4.26233e-46
5.85202e-43
4.46026e-40
1.99549e-37
4.06198e-35
6.54072e-33
6.42638e-31
4.23066e-29
2.59309e-27
1.01162e-25
2.71265e-24
5.90576e-23
1.09191e-21
1.53739e-20
1.7235e-19
1.62847e-18
1.15868e-17
7.43301e-17
4.38971e-16
2.17321e-15
1.29001e-14
5.33548e-14
1.62811e-13
6.03917e-13
1.7674e-12
7.09723e-12
3.2018e-11
1.01108e-10
4.99614e-10
1.90796e-09
3.84408e-09
8.00534e-09
1.21265e-08
1.28874e-08
1.48372e-08
1.79077e-08
1.8071e-08
2.17589e-08
1.8484e-08
9.32435e-09
5.9074e-09
2.3286e-09
9.43577e-10
3.094e-10
1.0387e-10
3.88023e-11
1.41932e-11
3.68723e-12
1.1342e-12
5.67714e-13
7.004e-13
5.09207e-13
4.46393e-13
4.2988e-13
4.26357e-13
4.42345e-13
4.47881e-13
4.78704e-13
5.01183e-13
5.21601e-13
5.45332e-13
6.41819e-13
7.0537e-13
7.53348e-13
7.53905e-13
7.57838e-13
8.12391e-13
8.28907e-13
9.39264e-13
9.08502e-13
9.65896e-13
9.75664e-13
9.97165e-13
1.13877e-12
1.16365e-12
1.2809e-12
1.37522e-12
1.49171e-12
1.68731e-12
1.83684e-12
2.00367e-12
2.15862e-12
2.35785e-12
2.50718e-12
2.8508e-12
3.2015e-12
4.11811e-12
6.7145e-12
1.17855e-11
2.34908e-11
3.54586e-11
5.50937e-11
7.48032e-11
9.94572e-11
1.18167e-10
1.37062e-10
1.46834e-10
1.57841e-10
1.76624e-10
2.53165e-10
4.37828e-10
1.07904e-09
2.81738e-09
6.81656e-09
1.30218e-08
2.36089e-08
3.43683e-08
3.56558e-08
4.06346e-08
4.29443e-08
5.3498e-08
5.61583e-08
5.12523e-08
4.22555e-08
2.46593e-08
1.17325e-08
4.49609e-09
1.37403e-09
4.16501e-10
1.14456e-10
4.62479e-11
1.78523e-11
6.56025e-12
4.27455e-12
3.67165e-12
3.45913e-12
3.22154e-12
2.9885e-12
2.15163e-12
2.16785e-12
1.68877e-12
1.69682e-12
1.48774e-12
1.31398e-12
1.32227e-12
1.13974e-12
1.29788e-12
1.24406e-12
1.45955e-12
1.46937e-12
1.66192e-12
1.43307e-12
1.37867e-12
1.23207e-12
1.14696e-12
1.23762e-12
1.21607e-12
1.37923e-12
1.36438e-12
1.44521e-12
1.50764e-12
1.52144e-12
1.84953e-12
1.87497e-12
2.06285e-12
2.15876e-12
2.23605e-12
2.48051e-12
2.88948e-12
4.24524e-12
5.25395e-12
1.01008e-11
1.64879e-11
2.80762e-11
5.1411e-11
6.8039e-11
1.053e-10
1.35688e-10
1.47861e-10
1.49577e-10
1.6247e-10
1.86484e-10
2.00603e-10
2.33496e-10
3.58113e-10
8.16745e-10
2.79686e-09
5.71125e-09
1.3259e-08
2.34671e-08
3.20683e-08
2.19088e-08
1.99837e-08
1.40348e-08
7.90895e-09
2.02635e-08
3.46609e-08
3.64952e-08
2.8216e-08
1.60188e-08
6.64629e-09
2.26905e-09
6.21043e-10
1.37745e-10
4.11141e-11
1.84663e-11
2.06979e-11
1.80442e-11
1.3326e-11
5.69424e-12
3.92418e-12
3.80002e-12
2.91496e-12
2.20612e-12
1.68999e-12
1.52489e-12
1.41565e-12
1.45293e-12
1.42094e-12
1.41831e-12
1.44813e-12
1.54619e-12
2.02861e-12
3.0736e-12
4.07258e-12
5.99102e-12
5.40209e-12
5.07494e-12
3.63781e-12
3.79327e-12
2.82604e-12
2.62072e-12
2.19494e-12
1.917e-12
1.70674e-12
1.80584e-12
1.94106e-12
2.11896e-12
2.16205e-12
2.66297e-12
2.20413e-12
1.32808e-12
7.89167e-13
7.02637e-13
9.67582e-13
1.75739e-12
3.85933e-12
7.59786e-12
1.41731e-11
2.06751e-11
4.925e-11
1.34917e-10
2.65092e-10
3.41751e-10
4.02708e-10
4.1072e-10
3.37058e-10
2.96645e-10
2.86445e-10
3.12575e-10
5.61369e-10
1.43621e-09
4.52277e-09
9.34472e-09
1.54864e-08
2.01656e-08
1.9811e-08
1.24713e-08
1.44028e-08
9.95497e-09
2.87539e-08
4.62209e-08
5.0114e-08
4.01236e-08
1.93821e-08
6.71926e-09
2.38566e-09
9.9302e-10
3.93255e-10
1.42647e-10
8.13922e-11
5.1297e-11
3.44911e-11
3.09988e-11
3.15188e-11
3.48677e-11
4.35709e-11
7.88003e-11
1.277e-10
1.69298e-10
2.33226e-10
3.94684e-10
1.41893e-10
6.61269e-12
3.39346e-12
1.87711e-12
6.87083e-13
2.62799e-13
1.07629e-13
4.5255e-14
1.94616e-14
8.584e-15
4.05155e-15
2.12061e-15
1.12698e-15
6.32593e-16
3.85647e-16
2.30651e-16
1.401e-16
9.26461e-17
6.08927e-17
3.8924e-17
2.31433e-17
1.45976e-17
9.57922e-18
6.33562e-18
4.77312e-18
3.55409e-18
2.61094e-18
2.10576e-18
1.5652e-18
1.5145e-18
1.58454e-18
1.31423e-18
1.48107e-18
1.33681e-18
1.31117e-18
1.69497e-18
2.01548e-18
5.11093e-18
1.04273e-17
9.75032e-18
2.53167e-17
4.02389e-17
9.68267e-17
3.6203e-16
5.86832e-16
3.22392e-15
9.84748e-15
2.77957e-14
5.42231e-13
8.96406e-13
3.53678e-12
2.13607e-11
5.61753e-11
1.28989e-10
1.15796e-10
4.99794e-11
5.42021e-11
3.48469e-11
7.52663e-12
2.09016e-12
9.5258e-13
1.95285e-13
3.57315e-29
3.79688e-30
2.2121e-31
4.78553e-33
2.58171e-35
5.86628e-38
7.17955e-41
6.26644e-44
4.7426e-47
3.24396e-50
2.08245e-53
7.48397e-55
5.48714e-51
2.28961e-47
3.61859e-44
3.07511e-41
1.54905e-38
3.62102e-36
6.33735e-34
6.80325e-32
4.89393e-30
3.07623e-28
1.28341e-26
3.86142e-25
9.32879e-24
1.8161e-22
2.79045e-21
3.32141e-20
3.23888e-19
2.54684e-18
1.7038e-17
1.02669e-16
5.86686e-16
3.35353e-15
1.54163e-14
5.41969e-14
1.88041e-13
5.6439e-13
1.35558e-12
4.83778e-12
1.44405e-11
5.20973e-11
1.8393e-10
3.6306e-10
7.09096e-10
1.14139e-09
1.25371e-09
1.42413e-09
1.67228e-09
1.72626e-09
2.39204e-09
2.21876e-09
1.21468e-09
7.95645e-10
3.39233e-10
1.43996e-10
5.91376e-11
2.67893e-11
8.45498e-12
2.35769e-12
7.65566e-13
5.4861e-13
4.36826e-13
2.95624e-13
2.50912e-13
2.36945e-13
2.32848e-13
2.33284e-13
2.43953e-13
2.40348e-13
2.54553e-13
2.66421e-13
2.80166e-13
2.97047e-13
3.55278e-13
3.88979e-13
4.01619e-13
3.87264e-13
3.86882e-13
4.14442e-13
4.32268e-13
5.14308e-13
5.01577e-13
5.29723e-13
5.40306e-13
5.58739e-13
6.4119e-13
6.59104e-13
7.28171e-13
7.85003e-13
8.49079e-13
9.5515e-13
1.05479e-12
1.1646e-12
1.24992e-12
1.38282e-12
1.45915e-12
1.63864e-12
1.87326e-12
2.16811e-12
2.61552e-12
3.0986e-12
5.54646e-12
1.02453e-11
2.31372e-11
3.58893e-11
6.0014e-11
8.15366e-11
1.06096e-10
1.23532e-10
1.39591e-10
1.43326e-10
1.63328e-10
1.88242e-10
2.68373e-10
4.89438e-10
1.05618e-09
1.97701e-09
3.682e-09
5.25316e-09
5.96145e-09
6.23517e-09
6.42791e-09
7.00327e-09
7.16215e-09
6.91287e-09
6.16826e-09
3.87198e-09
1.90855e-09
7.51306e-10
2.47829e-10
8.87336e-11
3.78882e-11
1.31713e-11
5.57432e-12
3.61058e-12
3.48698e-12
3.13835e-12
2.84918e-12
2.1021e-12
1.86144e-12
1.27568e-12
1.26076e-12
9.63964e-13
9.6662e-13
8.35471e-13
7.44493e-13
7.32044e-13
6.30641e-13
6.71386e-13
6.36863e-13
7.26909e-13
7.37103e-13
8.23315e-13
7.1076e-13
6.94872e-13
6.15849e-13
5.82311e-13
6.18765e-13
6.21488e-13
7.06365e-13
6.97835e-13
7.39307e-13
7.78533e-13
7.79234e-13
9.27331e-13
9.48142e-13
1.0408e-12
1.09176e-12
1.13214e-12
1.24832e-12
1.44774e-12
1.89839e-12
2.04586e-12
2.57284e-12
3.49189e-12
6.1536e-12
1.44576e-11
3.11429e-11
5.59797e-11
8.08947e-11
1.02213e-10
1.10366e-10
1.35962e-10
1.6678e-10
1.82068e-10
1.94819e-10
2.23057e-10
3.00928e-10
5.81127e-10
1.17594e-09
2.58422e-09
4.24071e-09
4.5474e-09
3.33732e-09
2.86213e-09
2.32771e-09
1.96997e-09
2.98864e-09
4.64439e-09
5.51671e-09
4.69473e-09
2.80642e-09
1.18924e-09
4.30507e-10
1.19431e-10
4.30522e-11
1.22063e-11
5.31971e-12
5.23381e-12
4.77136e-12
3.58238e-12
3.46514e-12
3.24999e-12
2.46165e-12
1.77541e-12
1.30351e-12
9.98362e-13
9.0348e-13
8.36227e-13
8.38547e-13
8.14961e-13
7.96594e-13
7.66532e-13
7.72068e-13
9.58672e-13
1.36776e-12
1.76131e-12
2.4447e-12
2.25088e-12
2.22539e-12
1.65437e-12
1.75078e-12
1.36311e-12
1.31136e-12
1.19359e-12
1.09746e-12
9.88584e-13
1.04167e-12
1.12147e-12
1.31017e-12
1.36393e-12
1.48151e-12
1.17589e-12
6.88346e-13
3.95862e-13
3.58384e-13
5.13962e-13
9.63772e-13
1.67825e-12
2.33099e-12
4.07124e-12
7.92948e-12
2.13822e-11
7.21446e-11
1.87345e-10
2.8105e-10
3.03189e-10
2.97202e-10
2.83548e-10
2.6402e-10
2.57846e-10
2.66366e-10
3.30763e-10
5.83747e-10
1.26543e-09
2.10086e-09
2.82465e-09
3.01457e-09
2.80523e-09
2.42463e-09
2.88439e-09
3.32568e-09
5.60876e-09
7.42301e-09
8.20297e-09
6.80537e-09
3.32792e-09
1.15382e-09
4.44984e-10
2.09821e-10
1.20107e-10
7.77104e-11
5.18094e-11
3.49653e-11
2.50778e-11
2.72266e-11
3.10185e-11
3.44454e-11
4.58581e-11
7.80512e-11
1.16811e-10
1.41973e-10
1.46407e-10
1.18972e-10
8.99258e-12
4.49254e-12
2.88218e-12
1.18422e-12
3.92049e-13
1.41826e-13
5.69502e-14
2.33114e-14
9.73516e-15
4.14816e-15
1.94201e-15
1.01315e-15
5.30632e-16
2.92176e-16
1.76655e-16
1.02286e-16
5.9778e-17
3.9305e-17
2.5173e-17
1.56451e-17
9.19665e-18
5.51008e-18
3.56051e-18
2.2961e-18
1.60636e-18
1.17898e-18
8.4433e-19
6.18455e-19
4.51225e-19
3.89074e-19
3.65883e-19
3.08284e-19
3.01856e-19
2.5956e-19
2.36721e-19
2.59818e-19
3.00889e-19
5.82415e-19
1.01684e-18
1.25234e-18
2.57664e-18
4.49375e-18
9.85568e-18
2.67247e-17
6.42656e-17
2.68234e-16
8.41633e-16
3.64434e-15
4.07827e-14
8.7282e-14
2.43494e-13
1.20774e-12
3.81e-12
1.003e-11
1.00842e-11
4.62832e-12
5.34887e-12
3.60862e-12
8.00395e-13
2.34298e-13
1.09762e-13
2.30301e-14
5.17428e-31
5.48178e-32
2.85423e-33
5.16942e-35
2.42797e-37
4.90962e-40
5.3232e-43
4.03738e-46
2.66268e-49
1.5875e-52
8.89485e-56
4.86756e-56
4.17483e-52
1.87351e-48
3.36652e-45
3.12839e-42
1.71482e-39
4.51137e-37
8.37252e-35
9.5719e-33
7.33859e-31
4.66876e-29
2.04022e-27
6.63727e-26
1.69732e-24
3.4343e-23
5.64268e-22
7.06237e-21
7.14957e-20
6.21259e-19
4.35453e-18
2.6931e-17
1.61726e-16
9.23367e-16
4.54107e-15
1.81616e-14
6.57105e-14
2.11248e-13
5.48003e-13
1.26839e-12
2.88302e-12
8.18571e-12
2.3204e-11
4.17022e-11
7.32332e-11
1.21182e-10
1.37566e-10
1.65745e-10
1.94078e-10
2.26857e-10
3.00186e-10
2.99939e-10
1.8643e-10
1.24925e-10
7.11711e-11
3.94308e-11
1.6124e-11
4.98962e-12
1.47579e-12
6.09726e-13
4.70786e-13
3.09993e-13
1.77228e-13
1.37144e-13
1.29209e-13
1.2652e-13
1.25549e-13
1.26813e-13
1.33987e-13
1.27354e-13
1.32962e-13
1.38322e-13
1.45228e-13
1.55373e-13
1.87595e-13
2.04528e-13
2.02952e-13
1.88202e-13
1.84546e-13
1.97771e-13
2.11464e-13
2.6411e-13
2.59099e-13
2.73196e-13
2.8095e-13
2.931e-13
3.39083e-13
3.49745e-13
3.9068e-13
4.26286e-13
4.60195e-13
5.1868e-13
5.803e-13
6.54891e-13
7.07697e-13
7.85529e-13
8.49424e-13
9.5717e-13
1.10721e-12
1.25851e-12
1.56947e-12
1.85246e-12
2.28514e-12
2.69769e-12
5.03189e-12
9.18909e-12
2.10493e-11
3.63838e-11
5.78092e-11
7.88455e-11
1.05156e-10
1.19583e-10
1.37475e-10
1.4467e-10
1.63112e-10
1.88263e-10
2.50728e-10
3.56701e-10
5.81615e-10
8.16235e-10
9.67688e-10
9.67052e-10
1.01369e-09
1.05753e-09
1.05815e-09
1.03641e-09
9.58422e-10
6.62199e-10
3.55748e-10
1.47468e-10
7.66901e-11
2.98392e-11
1.03436e-11
4.54465e-12
3.32763e-12
3.05405e-12
2.81229e-12
2.14173e-12
1.86295e-12
1.28104e-12
1.0921e-12
7.32809e-13
7.11356e-13
5.36213e-13
5.36547e-13
4.55742e-13
4.05995e-13
3.87309e-13
3.30794e-13
3.28417e-13
3.06429e-13
3.44806e-13
3.47035e-13
3.87582e-13
3.32607e-13
3.3134e-13
2.91613e-13
2.76756e-13
2.91821e-13
2.96585e-13
3.39277e-13
3.34859e-13
3.58251e-13
3.83245e-13
3.813e-13
4.48029e-13
4.62877e-13
5.09065e-13
5.32655e-13
5.59815e-13
6.22392e-13
7.27909e-13
9.32728e-13
1.04407e-12
1.30216e-12
1.59178e-12
2.0774e-12
3.15845e-12
6.38655e-12
1.5865e-11
3.05189e-11
4.70734e-11
5.75107e-11
8.51302e-11
1.22575e-10
1.45752e-10
1.6377e-10
1.74978e-10
1.93304e-10
2.31914e-10
3.17534e-10
5.10039e-10
7.00934e-10
6.99818e-10
5.46391e-10
4.6897e-10
4.24439e-10
4.3826e-10
5.76331e-10
7.69259e-10
9.22545e-10
8.48068e-10
5.46805e-10
2.47743e-10
1.16572e-10
4.33041e-11
1.15178e-11
4.27674e-12
3.44291e-12
3.10699e-12
3.06919e-12
3.14806e-12
2.53941e-12
2.07815e-12
1.4782e-12
1.03153e-12
7.48436e-13
5.73288e-13
5.15712e-13
4.69103e-13
4.60251e-13
4.43842e-13
4.28611e-13
3.90305e-13
3.77105e-13
4.49782e-13
6.19879e-13
8.12334e-13
1.07938e-12
1.01615e-12
1.0149e-12
7.77911e-13
8.15765e-13
6.4839e-13
6.58878e-13
6.41749e-13
6.09238e-13
5.50335e-13
5.7928e-13
6.28892e-13
7.66604e-13
8.12104e-13
7.80148e-13
5.91133e-13
3.28341e-13
1.82806e-13
1.67542e-13
2.50731e-13
5.00874e-13
8.68914e-13
1.23625e-12
1.50462e-12
1.92237e-12
4.09422e-12
1.93034e-11
9.09899e-11
1.93909e-10
2.63576e-10
2.63317e-10
2.57469e-10
2.46695e-10
2.52983e-10
2.59387e-10
2.69903e-10
3.0127e-10
3.66696e-10
4.53706e-10
5.28372e-10
5.31153e-10
4.86684e-10
5.1133e-10
6.4431e-10
8.3207e-10
1.19161e-09
1.37543e-09
1.46643e-09
1.21767e-09
6.29817e-10
2.39227e-10
1.24926e-10
8.66081e-11
6.01155e-11
4.66174e-11
3.58463e-11
2.52781e-11
1.80894e-11
2.14832e-11
2.95066e-11
3.35182e-11
4.41778e-11
6.56654e-11
7.65102e-11
7.55704e-11
5.22892e-11
1.1233e-11
5.72968e-12
3.73223e-12
1.87575e-12
6.57005e-13
2.00592e-13
6.96991e-14
2.7323e-14
1.09885e-14
4.47808e-15
1.81811e-15
8.34376e-16
4.2909e-16
2.21493e-16
1.20966e-16
7.25597e-17
4.06446e-17
2.3047e-17
1.49548e-17
9.3644e-18
5.60923e-18
3.24658e-18
1.87324e-18
1.23363e-18
7.86485e-19
5.1858e-19
3.81059e-19
2.72374e-19
1.86879e-19
1.37309e-19
1.1095e-19
1.0003e-19
8.74674e-20
7.88782e-20
7.12318e-20
6.31832e-20
6.39691e-20
7.7132e-20
1.21805e-19
2.16513e-19
3.02428e-19
5.22494e-19
1.06055e-18
2.11355e-18
5.25791e-18
1.15925e-17
4.31022e-17
1.64698e-16
6.91736e-16
5.87977e-15
3.58959e-14
7.07152e-14
1.49987e-13
3.87404e-13
8.45004e-13
9.30792e-13
4.81917e-13
5.65088e-13
4.03423e-13
1.07601e-13
4.08104e-14
1.98157e-14
4.86223e-15
7.3004e-33
7.7404e-34
3.62555e-35
5.5372e-37
2.2608e-39
4.01192e-42
3.77387e-45
2.42896e-48
1.36285e-51
6.91787e-55
3.30663e-58
4.69856e-57
4.56477e-53
2.20089e-49
4.36372e-46
4.40834e-43
2.58301e-40
7.51737e-38
1.48526e-35
1.7852e-33
1.44701e-31
9.41386e-30
4.23059e-28
1.44e-26
3.7657e-25
7.78071e-24
1.33517e-22
1.73502e-21
1.80722e-20
1.68167e-19
1.22829e-18
7.75822e-18
4.79519e-17
2.7437e-16
1.4424e-15
6.30852e-15
2.41707e-14
8.77563e-14
2.53655e-13
6.43195e-13
1.47062e-12
2.8869e-12
5.99985e-12
1.06907e-11
1.89616e-11
2.65593e-11
3.71656e-11
5.10359e-11
6.32999e-11
7.54181e-11
8.03782e-11
7.7475e-11
6.2525e-11
4.13704e-11
2.11777e-11
8.3434e-12
2.70613e-12
9.87007e-13
4.88786e-13
4.88091e-13
2.17889e-13
1.15553e-13
7.71066e-14
6.79017e-14
6.78253e-14
6.7245e-14
6.69697e-14
6.78385e-14
7.19822e-14
6.51697e-14
6.65829e-14
6.84219e-14
7.09318e-14
7.59548e-14
9.18161e-14
9.91212e-14
9.41117e-14
8.34863e-14
7.93081e-14
8.53014e-14
9.39424e-14
1.23396e-13
1.20737e-13
1.28151e-13
1.31984e-13
1.39034e-13
1.61775e-13
1.68239e-13
1.90097e-13
2.09395e-13
2.28375e-13
2.59034e-13
2.93281e-13
3.37083e-13
3.70628e-13
4.15901e-13
4.58402e-13
5.20422e-13
6.09883e-13
7.11666e-13
8.98314e-13
1.06651e-12
1.3e-12
1.54016e-12
1.78406e-12
2.22364e-12
4.26708e-12
8.38908e-12
1.73555e-11
3.05111e-11
5.12607e-11
7.11446e-11
1.01586e-10
1.20132e-10
1.42978e-10
1.52844e-10
1.6594e-10
1.73162e-10
1.8119e-10
1.85606e-10
1.9282e-10
2.02378e-10
2.12941e-10
2.29802e-10
2.41914e-10
2.42876e-10
2.14837e-10
1.68678e-10
1.16133e-10
5.87261e-11
2.23861e-11
8.00512e-12
4.04518e-12
2.84707e-12
2.74384e-12
2.24757e-12
1.91182e-12
1.35586e-12
1.13187e-12
7.43859e-13
6.14666e-13
4.06112e-13
3.85963e-13
2.8475e-13
2.82487e-13
2.34403e-13
2.06427e-13
1.90539e-13
1.59352e-13
1.47002e-13
1.33488e-13
1.48577e-13
1.48123e-13
1.65612e-13
1.42307e-13
1.4281e-13
1.26111e-13
1.18994e-13
1.24301e-13
1.2783e-13
1.47511e-13
1.45447e-13
1.58903e-13
1.71594e-13
1.69849e-13
1.99795e-13
2.0744e-13
2.29482e-13
2.41304e-13
2.54275e-13
2.85286e-13
3.39744e-13
4.38613e-13
5.0712e-13
6.35726e-13
7.91967e-13
1.06219e-12
1.41174e-12
1.91595e-12
3.25933e-12
6.41059e-12
1.13157e-11
1.62853e-11
3.26944e-11
6.03911e-11
8.60737e-11
1.17792e-10
1.44439e-10
1.73516e-10
1.98191e-10
2.12605e-10
2.18703e-10
2.08691e-10
1.97531e-10
1.80062e-10
1.82777e-10
1.8692e-10
1.91292e-10
1.99567e-10
2.23987e-10
2.41205e-10
2.14356e-10
1.62303e-10
9.36661e-11
3.9399e-11
1.1404e-11
3.92851e-12
2.6111e-12
3.03739e-12
2.59995e-12
2.31134e-12
2.0253e-12
1.54334e-12
1.2204e-12
8.39668e-13
5.75075e-13
4.11868e-13
3.11305e-13
2.74968e-13
2.43138e-13
2.34151e-13
2.2227e-13
2.12702e-13
1.84673e-13
1.70022e-13
1.94776e-13
2.69562e-13
3.57662e-13
4.72843e-13
4.48574e-13
4.50596e-13
3.48028e-13
3.64082e-13
2.88418e-13
3.12733e-13
3.2315e-13
3.11125e-13
2.80582e-13
2.95331e-13
3.24618e-13
4.08253e-13
4.38186e-13
3.71971e-13
2.66605e-13
1.3862e-13
7.47057e-14
6.92319e-14
1.10093e-13
2.30513e-13
3.9922e-13
6.04995e-13
7.62821e-13
9.29959e-13
1.41487e-12
3.73341e-12
2.48694e-11
8.7841e-11
1.67583e-10
1.76116e-10
1.85262e-10
1.84315e-10
2.01645e-10
2.2569e-10
2.49985e-10
2.49774e-10
2.37464e-10
2.14664e-10
1.93746e-10
1.98604e-10
2.07278e-10
2.01746e-10
2.07322e-10
2.40197e-10
3.26129e-10
3.65141e-10
3.69494e-10
2.87304e-10
1.7746e-10
9.60856e-11
5.30964e-11
3.50916e-11
2.96983e-11
2.99318e-11
2.56206e-11
1.67483e-11
1.04095e-11
1.33285e-11
2.34406e-11
3.02373e-11
3.64859e-11
4.16866e-11
3.5178e-11
2.5328e-11
1.00127e-11
6.51099e-12
4.73369e-12
2.50732e-12
1.06854e-12
3.27899e-13
9.39294e-14
3.11571e-14
1.18632e-14
4.73562e-15
1.89637e-15
7.22915e-16
3.17961e-16
1.58336e-16
8.05875e-17
4.4475e-17
2.63572e-17
1.43276e-17
7.93497e-18
5.04348e-18
3.10389e-18
1.7927e-18
1.02482e-18
5.80432e-19
4.08606e-19
2.59076e-19
1.63412e-19
1.20412e-19
8.61912e-20
5.66031e-20
4.19291e-20
3.2524e-20
2.87568e-20
2.55324e-20
2.23281e-20
2.08984e-20
1.8043e-20
1.76585e-20
2.1562e-20
3.02515e-20
5.50431e-20
8.04911e-20
1.27886e-19
2.37136e-19
4.81324e-19
1.1266e-18
2.90725e-18
8.17255e-18
3.21171e-17
1.3022e-16
7.76724e-16
6.17067e-15
1.7765e-14
9.31418e-14
8.24803e-14
1.24665e-13
1.33149e-13
8.44223e-14
9.10899e-14
7.00415e-14
2.77853e-14
1.26975e-14
1.06427e-14
1.93256e-15
1.00761e-34
1.07191e-35
4.53879e-37
5.87286e-39
2.07033e-41
3.16481e-44
2.51266e-47
1.32798e-50
6.13323e-54
2.56625e-57
1.02545e-60
4.42199e-58
4.87968e-54
2.63862e-50
5.7794e-47
6.46971e-44
4.10981e-41
1.32412e-38
2.8321e-36
3.59969e-34
3.09244e-32
2.07763e-30
9.54031e-29
3.34831e-27
8.91917e-26
1.87392e-24
3.31271e-23
4.4183e-22
4.67844e-21
4.59555e-20
3.39391e-19
2.13633e-18
1.33498e-17
7.40171e-17
4.09549e-16
1.93082e-15
7.65748e-15
3.17732e-14
1.02953e-13
2.82278e-13
7.50466e-13
1.68423e-12
3.87633e-12
7.23596e-12
1.1477e-11
1.89683e-11
2.60359e-11
3.18109e-11
3.72687e-11
3.62829e-11
3.42501e-11
2.63205e-11
1.64739e-11
8.61571e-12
3.6361e-12
1.48551e-12
6.91976e-13
4.53227e-13
3.55976e-13
1.72417e-13
7.83328e-14
4.58184e-14
3.60048e-14
3.4727e-14
3.55635e-14
3.52286e-14
3.49538e-14
3.5181e-14
3.70639e-14
3.15716e-14
3.13034e-14
3.15394e-14
3.19147e-14
3.38446e-14
4.04753e-14
4.28225e-14
3.86801e-14
3.24718e-14
2.95397e-14
3.20396e-14
3.63353e-14
5.04012e-14
4.88433e-14
5.22905e-14
5.38262e-14
5.7231e-14
6.69451e-14
7.03128e-14
8.04452e-14
8.93374e-14
9.93367e-14
1.13838e-13
1.3049e-13
1.51849e-13
1.71002e-13
1.93682e-13
2.19028e-13
2.52344e-13
3.00676e-13
3.63417e-13
4.67902e-13
5.71871e-13
6.97907e-13
8.39624e-13
9.54737e-13
1.20147e-12
1.55879e-12
1.88448e-12
3.40033e-12
6.23578e-12
1.25181e-11
2.2387e-11
4.38556e-11
6.53716e-11
1.01075e-10
1.2941e-10
1.59671e-10
1.73557e-10
1.84233e-10
1.87985e-10
1.98407e-10
2.03363e-10
2.08602e-10
2.04351e-10
1.87236e-10
1.58639e-10
1.18142e-10
7.61243e-11
3.91298e-11
1.66629e-11
6.55918e-12
3.36214e-12
2.54045e-12
2.50196e-12
2.02139e-12
1.48125e-12
1.21058e-12
8.0999e-13
6.51768e-13
4.13307e-13
3.31244e-13
2.13763e-13
1.97561e-13
1.40968e-13
1.37426e-13
1.10449e-13
9.50168e-14
8.45323e-14
6.83807e-14
5.80721e-14
5.07148e-14
5.58783e-14
5.46539e-14
6.13609e-14
5.29356e-14
5.30783e-14
4.71226e-14
4.38292e-14
4.61827e-14
4.77637e-14
5.57405e-14
5.49918e-14
6.15199e-14
6.73077e-14
6.54553e-14
7.77203e-14
8.05801e-14
8.99636e-14
9.57759e-14
1.01115e-13
1.14706e-13
1.39221e-13
1.83577e-13
2.18459e-13
2.71079e-13
3.58439e-13
5.01808e-13
6.90183e-13
9.45787e-13
1.28543e-12
1.67253e-12
2.29546e-12
3.15284e-12
6.88357e-12
1.53547e-11
2.90333e-11
5.32681e-11
8.18232e-11
1.24842e-10
1.83004e-10
2.15342e-10
2.21163e-10
2.09911e-10
1.73563e-10
1.43317e-10
1.34681e-10
1.37304e-10
1.47357e-10
1.65482e-10
1.76043e-10
1.51473e-10
1.0838e-10
6.30539e-11
2.84248e-11
1.03485e-11
3.4838e-12
2.19231e-12
2.26526e-12
2.10384e-12
1.71222e-12
1.43249e-12
1.19517e-12
8.66285e-13
6.71881e-13
4.54392e-13
3.04636e-13
2.12651e-13
1.55711e-13
1.33201e-13
1.1331e-13
1.06781e-13
9.88385e-14
9.33375e-14
7.75842e-14
6.73094e-14
7.41989e-14
1.03471e-13
1.40095e-13
1.89489e-13
1.78976e-13
1.8127e-13
1.38385e-13
1.4539e-13
1.13285e-13
1.32899e-13
1.4418e-13
1.39792e-13
1.25045e-13
1.32122e-13
1.46714e-13
1.8951e-13
2.05104e-13
1.54135e-13
1.0287e-13
4.9622e-14
2.58679e-14
2.44154e-14
4.14117e-14
9.0033e-14
1.59982e-13
2.61104e-13
3.40683e-13
4.29045e-13
6.55455e-13
1.25032e-12
4.73331e-12
2.09228e-11
6.24227e-11
7.59295e-11
8.92712e-11
9.16044e-11
1.11441e-10
1.45396e-10
2.00335e-10
2.33954e-10
2.36609e-10
2.16725e-10
1.94627e-10
1.66428e-10
1.57806e-10
1.80146e-10
2.12746e-10
2.61626e-10
2.95745e-10
2.79009e-10
2.19397e-10
1.44837e-10
6.98595e-11
3.08377e-11
1.86248e-11
1.40388e-11
1.54803e-11
1.91504e-11
1.54131e-11
8.38074e-12
4.28842e-12
5.90185e-12
1.47176e-11
2.21108e-11
2.64412e-11
2.53008e-11
1.76023e-11
1.25904e-11
7.33239e-12
5.57173e-12
3.19677e-12
1.48796e-12
5.37253e-13
1.48626e-13
3.99588e-14
1.25703e-14
4.62891e-15
1.84284e-15
7.2342e-16
2.5703e-16
1.06097e-16
5.05321e-17
2.55129e-17
1.46861e-17
8.52697e-18
4.54877e-18
2.47969e-18
1.53741e-18
9.40428e-19
5.34516e-19
3.0626e-19
1.76612e-19
1.38158e-19
8.69359e-20
5.35085e-20
3.96639e-20
2.82785e-20
1.81579e-20
1.35258e-20
1.03367e-20
8.87475e-21
7.84135e-21
6.76997e-21
6.35449e-21
5.57663e-21
5.41743e-21
6.54126e-21
8.28414e-21
1.43919e-20
2.1444e-20
3.0909e-20
6.00862e-20
1.11367e-19
2.48444e-19
6.60943e-19
1.60151e-18
6.43418e-18
2.22996e-17
1.08819e-16
9.51143e-16
2.40487e-15
1.05791e-14
3.53037e-14
4.01672e-14
4.15185e-14
4.76374e-14
2.80959e-14
2.1985e-14
1.01087e-14
2.77509e-15
1.1388e-15
1.91418e-16
1.36594e-36
1.46e-37
5.60683e-39
6.15636e-41
1.85028e-43
2.37456e-46
1.53062e-49
6.32741e-53
2.29186e-56
7.53631e-60
3.29569e-63
3.7391e-59
4.68146e-55
2.92028e-51
7.20235e-48
9.06117e-45
6.31755e-42
2.2572e-39
5.30133e-37
7.15826e-35
6.49979e-33
4.49945e-31
2.10522e-29
7.63203e-28
2.0927e-26
4.47953e-25
8.15126e-24
1.12061e-22
1.1988e-21
1.2376e-20
9.23861e-20
5.78278e-19
3.61946e-18
1.8904e-17
1.03158e-16
4.83667e-16
1.82303e-15
7.63926e-15
2.50584e-14
6.60169e-14
1.74079e-13
3.88112e-13
9.69718e-13
2.10338e-12
3.39767e-12
6.08581e-12
7.93978e-12
7.7956e-12
7.29839e-12
6.57632e-12
5.95618e-12
4.36862e-12
2.69451e-12
1.55015e-12
8.34716e-13
4.98614e-13
5.74146e-13
2.77414e-13
1.28842e-13
6.02022e-14
2.94194e-14
1.96664e-14
1.7646e-14
1.78583e-14
1.83482e-14
1.7988e-14
1.761e-14
1.74078e-14
1.79614e-14
1.42451e-14
1.35748e-14
1.32738e-14
1.29394e-14
1.34008e-14
1.5575e-14
1.5943e-14
1.35796e-14
1.06358e-14
9.12395e-15
9.99528e-15
1.16887e-14
1.70645e-14
1.63316e-14
1.7577e-14
1.81138e-14
1.94581e-14
2.28436e-14
2.42522e-14
2.81632e-14
3.15177e-14
3.58432e-14
4.16423e-14
4.84445e-14
5.71135e-14
6.56743e-14
7.56498e-14
8.73557e-14
1.0286e-13
1.2524e-13
1.5757e-13
2.08073e-13
2.68095e-13
3.26852e-13
4.0046e-13
4.54619e-13
5.71584e-13
7.27729e-13
9.60065e-13
1.27464e-12
1.56213e-12
2.44577e-12
4.27755e-12
9.02864e-12
1.568e-11
3.20942e-11
5.05707e-11
7.66042e-11
9.44948e-11
1.1224e-10
1.1806e-10
1.28154e-10
1.25819e-10
1.17458e-10
9.96889e-11
8.19439e-11
6.10791e-11
3.86223e-11
2.15803e-11
1.02514e-11
4.67598e-12
2.72268e-12
2.35662e-12
2.23582e-12
1.73241e-12
1.33388e-12
9.22257e-13
7.22521e-13
4.60261e-13
3.57498e-13
2.18342e-13
1.68926e-13
1.0495e-13
9.34961e-14
6.36296e-14
6.02782e-14
4.63908e-14
3.84738e-14
3.27223e-14
2.52405e-14
1.94174e-14
1.6201e-14
1.74048e-14
1.6686e-14
1.87981e-14
1.61288e-14
1.61744e-14
1.4426e-14
1.31645e-14
1.41956e-14
1.45849e-14
1.71718e-14
1.71191e-14
1.9751e-14
2.18142e-14
2.06354e-14
2.49752e-14
2.57354e-14
2.92422e-14
3.11628e-14
3.3174e-14
3.79304e-14
4.68806e-14
6.36917e-14
7.80073e-14
9.87696e-14
1.34673e-13
1.97026e-13
2.83278e-13
4.21249e-13
5.60819e-13
8.1843e-13
9.84021e-13
1.15063e-12
1.46446e-12
2.90694e-12
5.57381e-12
1.21246e-11
2.27093e-11
4.57977e-11
8.56694e-11
1.25514e-10
1.48302e-10
1.3776e-10
1.05447e-10
8.18544e-11
7.41398e-11
7.43676e-11
7.62341e-11
7.51918e-11
6.86586e-11
5.51843e-11
3.38495e-11
1.74121e-11
7.54727e-12
3.19774e-12
1.80321e-12
1.95662e-12
1.51761e-12
1.34473e-12
1.03262e-12
8.18929e-13
6.54923e-13
4.55595e-13
3.4957e-13
2.33019e-13
1.50898e-13
1.00847e-13
7.00745e-14
5.71463e-14
4.61306e-14
4.2115e-14
3.75518e-14
3.47045e-14
2.74741e-14
2.22185e-14
2.32837e-14
3.29144e-14
4.52734e-14
6.38826e-14
5.99813e-14
6.12765e-14
4.57907e-14
4.82598e-14
3.69161e-14
4.74346e-14
5.39014e-14
5.22419e-14
4.62101e-14
4.9291e-14
5.50755e-14
7.27538e-14
7.9097e-14
5.24305e-14
3.20603e-14
1.43051e-14
7.21772e-15
6.88095e-15
1.25163e-14
2.87229e-14
5.25918e-14
9.42104e-14
1.29437e-13
1.60804e-13
2.57249e-13
5.58245e-13
1.22868e-12
3.59404e-12
1.24506e-11
1.87301e-11
2.60299e-11
2.92787e-11
4.13206e-11
6.21443e-11
1.05075e-10
1.37833e-10
1.50021e-10
1.43015e-10
1.29592e-10
1.03885e-10
9.70986e-11
1.22265e-10
1.54025e-10
1.826e-10
1.76682e-10
1.3954e-10
9.87757e-11
5.03216e-11
1.97407e-11
8.20519e-12
4.92361e-12
5.07515e-12
7.83723e-12
9.55779e-12
6.87889e-12
3.16544e-12
2.2258e-12
2.35843e-12
6.63751e-12
1.29974e-11
1.77534e-11
1.80121e-11
1.57009e-11
1.11639e-11
6.05842e-12
3.82932e-12
1.91552e-12
7.75478e-13
2.40779e-13
6.06661e-14
1.52099e-14
4.48689e-15
1.58048e-15
6.25379e-16
2.37986e-16
7.90168e-17
3.01687e-17
1.37955e-17
7.0652e-18
4.41304e-18
2.49694e-18
1.32533e-18
7.1816e-19
4.38565e-19
2.69327e-19
1.5404e-19
8.96804e-20
5.42694e-20
4.63911e-20
2.88314e-20
1.76454e-20
1.32065e-20
9.38506e-21
6.01868e-21
4.52433e-21
3.48741e-21
2.94419e-21
2.5812e-21
2.18185e-21
2.01156e-21
1.73849e-21
1.66149e-21
1.9585e-21
2.3309e-21
3.86656e-21
5.74136e-21
7.7307e-21
1.50651e-20
2.54921e-20
5.37703e-20
1.36781e-19
3.12029e-19
1.25191e-18
3.73028e-18
1.63089e-17
1.38761e-16
3.55456e-16
1.45385e-15
4.70083e-15
8.68134e-15
1.12014e-14
6.22449e-15
6.74606e-15
5.16689e-15
1.21672e-15
3.12808e-16
1.21226e-16
1.88158e-17
1.82602e-38
1.96171e-39
6.84306e-41
6.36316e-43
1.59793e-45
1.65847e-48
8.18056e-52
2.44099e-55
6.40401e-59
1.52841e-62
5.9313e-65
2.50009e-60
3.59854e-56
2.57054e-52
7.25652e-49
1.04445e-45
8.06975e-43
3.22015e-40
8.446e-38
1.2194e-35
1.18414e-33
8.57822e-32
4.13106e-30
1.57055e-28
4.51186e-27
1.0029e-25
1.92945e-24
2.78894e-23
3.08027e-22
3.41091e-21
2.64478e-20
1.70287e-19
1.11687e-18
6.11057e-18
3.4132e-17
1.63342e-16
6.10774e-16
2.43727e-15
7.84717e-15
2.00091e-14
4.76395e-14
9.71251e-14
1.9765e-13
3.3427e-13
4.90203e-13
7.74322e-13
8.05482e-13
9.19439e-13
1.07655e-12
1.0914e-12
1.07215e-12
9.20356e-13
7.05164e-13
5.61876e-13
5.6247e-13
3.80827e-13
2.22986e-13
1.02366e-13
4.50536e-14
2.12636e-14
1.17455e-14
9.02817e-15
8.81521e-15
9.05783e-15
9.20138e-15
8.84654e-15
8.45035e-15
8.10212e-15
8.0719e-15
5.90673e-15
5.34861e-15
5.00647e-15
4.62741e-15
4.5886e-15
5.06181e-15
4.92422e-15
3.88782e-15
2.7871e-15
2.204e-15
2.42266e-15
2.90694e-15
4.45023e-15
4.21011e-15
4.54127e-15
4.67777e-15
5.08999e-15
6.00316e-15
6.43025e-15
7.58644e-15
8.55711e-15
9.96562e-15
1.17634e-14
1.39558e-14
1.66793e-14
1.95132e-14
2.29668e-14
2.69833e-14
3.26901e-14
4.08479e-14
5.37224e-14
7.33143e-14
9.969e-14
1.23517e-13
1.53971e-13
1.73339e-13
2.17847e-13
2.85262e-13
3.89815e-13
5.66294e-13
7.11627e-13
9.6114e-13
1.39219e-12
2.05356e-12
3.59554e-12
7.84568e-12
1.34375e-11
2.42094e-11
3.24526e-11
4.32942e-11
4.87385e-11
5.64496e-11
5.40978e-11
4.93398e-11
3.99834e-11
2.80289e-11
1.64523e-11
9.6848e-12
5.69977e-12
3.50037e-12
2.36125e-12
2.21374e-12
1.98513e-12
1.55867e-12
1.13513e-12
8.32808e-13
5.44907e-13
4.09229e-13
2.48916e-13
1.8614e-13
1.08519e-13
8.04185e-14
4.73033e-14
4.01831e-14
2.56803e-14
2.332e-14
1.69305e-14
1.33089e-14
1.06695e-14
7.6972e-15
5.24589e-15
4.12493e-15
4.21139e-15
3.94328e-15
4.41643e-15
3.72757e-15
3.73003e-15
3.36981e-15
2.99736e-15
3.33051e-15
3.35189e-15
3.9984e-15
4.05095e-15
4.86342e-15
5.45987e-15
4.90751e-15
6.1026e-15
6.23546e-15
7.26663e-15
7.70781e-15
8.35968e-15
9.56867e-15
1.19971e-14
1.69072e-14
2.1431e-14
2.77274e-14
3.88452e-14
5.92171e-14
8.96629e-14
1.38911e-13
1.94318e-13
3.02455e-13
3.84682e-13
4.77669e-13
6.52423e-13
9.84842e-13
1.29501e-12
2.39775e-12
4.8193e-12
1.17633e-11
2.94244e-11
5.16335e-11
6.55537e-11
6.08443e-11
4.1085e-11
2.86693e-11
2.5221e-11
2.48999e-11
2.55974e-11
2.50751e-11
2.17325e-11
1.53221e-11
9.21424e-12
4.78432e-12
2.60564e-12
1.72299e-12
1.65848e-12
1.30002e-12
9.51191e-13
7.99738e-13
5.79236e-13
4.37467e-13
3.36334e-13
2.25715e-13
1.71695e-13
1.11978e-13
6.87872e-14
4.31427e-14
2.78058e-14
2.11812e-14
1.59171e-14
1.38301e-14
1.16588e-14
1.03596e-14
7.71721e-15
5.69091e-15
5.61337e-15
7.93223e-15
1.12361e-14
1.68294e-14
1.57333e-14
1.62093e-14
1.17708e-14
1.23947e-14
9.23195e-15
1.31178e-14
1.56827e-14
1.50642e-14
1.31767e-14
1.42191e-14
1.59673e-14
2.15244e-14
2.35007e-14
1.34798e-14
7.44576e-15
3.11506e-15
1.49313e-15
1.43225e-15
2.77481e-15
6.74695e-15
1.3332e-14
2.61266e-14
3.77862e-14
4.49156e-14
7.8191e-14
1.84699e-13
4.6137e-13
9.66214e-13
1.99978e-12
3.30592e-12
5.06395e-12
5.81195e-12
9.41238e-12
1.77731e-11
4.09522e-11
6.16576e-11
7.40125e-11
6.88719e-11
5.84877e-11
4.21834e-11
4.04494e-11
5.74329e-11
7.77217e-11
9.3639e-11
8.78678e-11
6.24978e-11
3.34177e-11
1.46235e-11
6.08933e-12
3.27035e-12
2.59499e-12
2.36233e-12
3.17069e-12
3.40124e-12
2.50173e-12
2.29646e-12
1.77556e-12
1.91377e-12
2.39292e-12
5.24607e-12
9.89607e-12
1.27661e-11
1.37162e-11
8.25462e-12
4.15979e-12
2.32319e-12
1.01751e-12
3.56946e-13
9.64721e-14
2.19816e-14
5.03732e-15
1.36544e-15
4.50109e-16
1.75184e-16
6.32348e-17
1.99054e-17
6.97806e-18
3.12375e-18
1.66448e-18
1.15353e-18
6.40698e-19
3.40014e-19
1.84025e-19
1.12307e-19
6.88535e-20
3.94129e-20
2.32161e-20
1.45888e-20
1.31451e-20
8.06029e-21
4.92587e-21
3.75489e-21
2.66828e-21
1.71019e-21
1.30084e-21
1.00856e-21
8.58837e-22
7.60945e-22
6.46604e-22
5.97312e-22
5.14433e-22
4.84195e-22
5.57431e-22
6.41009e-22
1.02236e-21
1.51627e-21
1.9797e-21
3.6635e-21
5.80268e-21
1.13686e-20
2.67632e-20
6.0212e-20
2.33722e-19
6.36446e-19
2.56341e-18
1.99081e-17
5.40411e-17
2.08173e-16
6.43954e-16
1.00182e-15
1.43131e-15
8.17147e-16
7.95923e-16
6.31397e-16
1.46118e-16
3.52388e-17
1.28517e-17
1.83897e-18
2.41688e-40
2.60798e-41
8.26193e-43
6.4635e-45
1.31434e-47
1.0401e-50
3.53567e-54
6.46759e-58
1.04668e-61
1.55092e-65
1.62103e-66
9.19121e-62
1.70242e-57
1.43024e-53
4.8443e-50
8.4027e-47
7.35813e-44
3.31429e-41
9.93528e-39
1.53811e-36
1.60845e-34
1.2287e-32
6.14077e-31
2.46921e-29
7.44144e-28
1.72805e-26
3.54608e-25
5.43016e-24
6.24726e-23
7.4176e-22
6.08004e-21
4.06506e-20
2.81042e-19
1.62881e-18
9.60854e-18
4.94195e-17
1.96019e-16
8.43173e-16
2.87137e-15
7.70643e-15
1.98388e-14
4.21093e-14
9.39918e-14
1.7748e-13
2.75073e-13
4.7877e-13
6.74767e-13
7.98148e-13
9.55868e-13
9.71605e-13
9.53131e-13
8.02393e-13
5.89069e-13
4.38385e-13
2.88205e-13
1.57323e-13
8.28661e-14
3.63419e-14
1.55734e-14
7.78728e-15
5.00765e-15
4.30791e-15
4.38089e-15
4.47034e-15
4.43898e-15
4.14478e-15
3.8185e-15
3.5068e-15
3.32647e-15
2.22598e-15
1.89073e-15
1.66506e-15
1.43076e-15
1.32306e-15
1.34344e-15
1.20593e-15
8.54309e-16
5.42488e-16
3.79591e-16
4.07848e-16
4.95735e-16
7.92102e-16
7.39468e-16
7.98248e-16
8.20672e-16
9.04118e-16
1.07613e-15
1.15868e-15
1.38945e-15
1.58224e-15
1.88895e-15
2.26671e-15
2.75849e-15
3.33813e-15
3.9653e-15
4.76332e-15
5.69962e-15
7.14342e-15
9.19732e-15
1.26881e-14
1.80316e-14
2.58833e-14
3.32162e-14
4.208e-14
4.59111e-14
5.91471e-14
7.34911e-14
1.12127e-13
1.65757e-13
2.32537e-13
3.346e-13
6.25828e-13
8.39684e-13
1.27841e-12
1.69383e-12
3.10329e-12
5.80327e-12
7.2953e-12
9.19832e-12
9.90532e-12
1.28016e-11
1.19404e-11
1.17417e-11
8.7228e-12
5.53744e-12
4.05546e-12
3.1951e-12
2.57853e-12
2.2874e-12
2.24077e-12
1.78531e-12
1.36729e-12
1.02544e-12
7.06545e-13
4.94187e-13
3.06627e-13
2.20494e-13
1.27743e-13
9.13957e-14
5.02498e-14
3.53148e-14
1.93331e-14
1.54687e-14
9.12174e-15
7.80367e-15
5.2431e-15
3.81571e-15
2.8237e-15
1.84875e-15
1.08331e-15
7.7329e-16
7.23655e-16
6.45815e-16
7.01109e-16
5.72824e-16
5.76827e-16
5.27526e-16
4.54763e-16
5.23722e-16
5.11403e-16
6.22052e-16
6.47293e-16
8.05539e-16
9.30442e-16
7.75101e-16
9.93693e-16
1.00348e-15
1.197e-15
1.28028e-15
1.41685e-15
1.60382e-15
2.02279e-15
2.96875e-15
3.91314e-15
5.14076e-15
7.36374e-15
1.15843e-14
1.83636e-14
2.96926e-14
4.34922e-14
7.30652e-14
9.95961e-14
1.32655e-13
1.98094e-13
3.24748e-13
4.64305e-13
6.88248e-13
1.02739e-12
1.9504e-12
5.39023e-12
1.28782e-11
1.95737e-11
1.53153e-11
6.9396e-12
4.77207e-12
4.39595e-12
4.32539e-12
4.56812e-12
4.97113e-12
5.1329e-12
4.01374e-12
3.0651e-12
2.17076e-12
1.71082e-12
1.58461e-12
1.08842e-12
8.16815e-13
5.6123e-13
4.46338e-13
3.05062e-13
2.19808e-13
1.62605e-13
1.05343e-13
7.91402e-14
4.98389e-14
2.84805e-14
1.64081e-14
9.56116e-15
6.63075e-15
4.51427e-15
3.62501e-15
2.80014e-15
2.30833e-15
1.5643e-15
1.01113e-15
9.16522e-16
1.25803e-15
1.91092e-15
3.12848e-15
2.90074e-15
3.04212e-15
2.08365e-15
2.17949e-15
1.5621e-15
2.47921e-15
3.12448e-15
2.97088e-15
2.56832e-15
2.7984e-15
3.1591e-15
4.35346e-15
4.76594e-15
2.3146e-15
1.13232e-15
4.49864e-16
1.98217e-16
1.91748e-16
3.82295e-16
9.64451e-16
2.19304e-15
4.85876e-15
7.43956e-15
8.25221e-15
1.4478e-14
3.68054e-14
1.12372e-13
2.48103e-13
5.23238e-13
6.67781e-13
8.74039e-13
9.43597e-13
1.19653e-12
2.44526e-12
7.55535e-12
1.62259e-11
2.39549e-11
2.17547e-11
1.50344e-11
7.49704e-12
6.96416e-12
1.21173e-11
2.33277e-11
3.29715e-11
3.27459e-11
1.8969e-11
8.06512e-12
4.24809e-12
2.77248e-12
2.41585e-12
2.47623e-12
2.24224e-12
2.12118e-12
2.15854e-12
2.16881e-12
1.6671e-12
1.14387e-12
1.23951e-12
1.91333e-12
2.13905e-12
3.59617e-12
6.24052e-12
7.06032e-12
3.09501e-12
2.5419e-12
1.25406e-12
4.81405e-13
1.45838e-13
3.42911e-14
6.8959e-15
1.39426e-15
3.35957e-16
1.00177e-16
3.75385e-17
1.23729e-17
3.80072e-18
1.22972e-18
5.39312e-19
2.95665e-19
2.23127e-19
1.23109e-19
6.51169e-20
3.4969e-20
2.13792e-20
1.3002e-20
7.38818e-21
4.36361e-21
2.78796e-21
2.62401e-21
1.60441e-21
9.87804e-22
7.69518e-22
5.53237e-22
3.5768e-22
2.77218e-22
2.17791e-22
1.89758e-22
1.71947e-22
1.49576e-22
1.41488e-22
1.24578e-22
1.17991e-22
1.35972e-22
1.56035e-22
2.4439e-22
3.694e-22
4.8299e-22
8.58494e-22
1.29888e-21
2.34887e-21
5.12952e-21
1.14244e-20
4.2426e-20
1.10675e-19
4.14754e-19
2.86266e-18
8.17148e-18
2.93124e-17
8.942e-17
1.1616e-16
1.82116e-16
1.07292e-16
9.38998e-17
7.6674e-17
1.74986e-17
3.96914e-18
1.35833e-18
1.79036e-19
3.18005e-42
3.44079e-43
9.87841e-45
6.42008e-47
1.00507e-49
5.47506e-53
1.03217e-56
7.49191e-61
4.99669e-65
3.17383e-69
2.18484e-68
1.89372e-63
4.80572e-59
4.78477e-55
1.90029e-51
3.9944e-48
3.99225e-45
1.97401e-42
6.77113e-40
1.11073e-37
1.24305e-35
9.97184e-34
5.19175e-32
2.20998e-30
6.97031e-29
1.69426e-27
3.69097e-26
5.99632e-25
7.24528e-24
9.21189e-23
8.06629e-22
5.67782e-21
4.16286e-20
2.59756e-19
1.65648e-18
9.47216e-18
4.16544e-17
2.05431e-16
7.90981e-16
2.40222e-15
7.1972e-15
1.7321e-14
4.4277e-14
9.36984e-14
1.54626e-13
2.76206e-13
3.85912e-13
4.4382e-13
5.14842e-13
5.05197e-13
4.63356e-13
3.82921e-13
2.79342e-13
1.94992e-13
1.15475e-13
6.10062e-14
2.95645e-14
1.25633e-14
5.43589e-15
3.01897e-15
2.2497e-15
2.07566e-15
2.12894e-15
2.12503e-15
2.04206e-15
1.8335e-15
1.61083e-15
1.39976e-15
1.24709e-15
7.56582e-16
5.93986e-16
4.82313e-16
3.7636e-16
3.14001e-16
2.82043e-16
2.22632e-16
1.33656e-16
7.00588e-17
3.939e-17
3.78622e-17
4.34978e-17
7.19463e-17
6.59956e-17
7.14523e-17
7.3159e-17
8.14957e-17
9.8436e-17
1.06376e-16
1.29811e-16
1.48943e-16
1.82598e-16
2.22736e-16
2.79821e-16
3.4124e-16
4.1258e-16
5.0483e-16
6.15651e-16
7.99555e-16
1.06534e-15
1.54753e-15
2.30994e-15
3.49172e-15
4.67133e-15
5.9909e-15
6.44303e-15
8.42942e-15
9.26637e-15
1.64594e-14
2.41634e-14
3.40498e-14
5.47411e-14
1.44352e-13
2.02088e-13
4.06416e-13
4.96451e-13
8.65796e-13
1.19162e-12
2.4332e-12
3.79705e-12
4.39794e-12
4.78871e-12
4.59345e-12
4.15645e-12
3.67657e-12
3.26252e-12
2.87622e-12
2.56939e-12
2.45869e-12
2.06081e-12
1.61984e-12
1.23269e-12
8.91723e-13
6.40299e-13
4.18822e-13
2.79288e-13
1.6423e-13
1.12805e-13
6.1814e-14
4.1997e-14
2.14805e-14
1.4175e-14
7.09888e-15
5.28361e-15
2.81923e-15
2.22732e-15
1.35205e-15
8.83706e-16
5.85313e-16
3.31378e-16
1.6002e-16
9.56676e-17
7.57603e-17
5.92488e-17
5.75343e-17
4.44164e-17
4.44795e-17
4.11681e-17
3.44219e-17
4.09566e-17
3.81538e-17
4.7723e-17
5.22359e-17
6.65436e-17
8.10864e-17
6.03911e-17
7.94297e-17
7.81808e-17
9.72027e-17
1.0533e-16
1.19351e-16
1.3151e-16
1.64399e-16
2.52187e-16
3.47085e-16
4.54154e-16
6.56578e-16
1.04689e-15
1.7359e-15
2.84302e-15
4.16194e-15
7.61778e-15
1.1321e-14
1.67623e-14
2.77092e-14
4.88102e-14
7.51544e-14
1.23506e-13
1.96397e-13
3.35564e-13
4.48356e-13
7.36601e-13
1.92486e-12
3.87757e-12
4.80941e-12
4.08207e-12
4.06348e-12
4.0478e-12
4.29828e-12
3.39435e-12
2.98823e-12
2.50947e-12
2.13792e-12
1.87993e-12
1.48857e-12
1.05973e-12
6.8157e-13
4.86126e-13
3.13042e-13
2.35067e-13
1.51477e-13
1.04097e-13
7.40323e-14
4.61421e-14
3.39869e-14
2.03408e-14
1.0604e-14
5.48992e-15
2.81252e-15
1.72218e-15
1.02457e-15
7.26749e-16
4.87605e-16
3.45347e-16
1.94472e-16
9.95453e-17
7.62914e-17
9.77877e-17
1.73659e-16
3.4611e-16
3.30427e-16
3.45799e-16
2.11441e-16
2.0243e-16
1.32462e-16
2.40726e-16
3.20125e-16
2.98449e-16
2.55908e-16
2.81332e-16
3.18737e-16
4.50995e-16
4.93292e-16
1.95326e-16
8.05433e-17
3.11265e-17
1.24497e-17
1.18912e-17
2.1584e-17
5.57401e-17
1.65426e-16
4.14127e-16
6.83332e-16
7.04863e-16
1.10795e-15
2.75804e-15
1.02508e-14
2.60532e-14
4.59073e-14
6.35375e-14
1.13182e-13
1.35937e-13
1.58694e-13
2.46999e-13
3.73491e-13
6.40683e-13
1.60565e-12
2.04133e-12
3.83468e-12
4.69423e-12
4.77808e-12
5.15354e-12
5.28664e-12
6.76865e-12
6.31e-12
4.30131e-12
3.21964e-12
2.61618e-12
2.29498e-12
2.11929e-12
1.82765e-12
1.63439e-12
1.69446e-12
1.71303e-12
1.49546e-12
1.06253e-12
6.82236e-13
7.39964e-13
1.22497e-12
1.66492e-12
1.88437e-12
2.25367e-12
2.17881e-12
1.89875e-12
1.3953e-12
6.08187e-13
2.04427e-13
5.31156e-14
1.07165e-14
1.82996e-15
3.11066e-16
6.33701e-17
1.60395e-17
5.4582e-18
1.52407e-18
4.58954e-19
1.35218e-19
5.49159e-20
2.83382e-20
2.22467e-20
1.22012e-20
6.46031e-21
3.47094e-21
2.13286e-21
1.29978e-21
7.36623e-22
4.35791e-22
2.80386e-22
2.73115e-22
1.67691e-22
1.04703e-22
8.3439e-23
6.12763e-23
4.03755e-23
3.20986e-23
2.58664e-23
2.33005e-23
2.1828e-23
1.97398e-23
1.94407e-23
1.79065e-23
1.75303e-23
2.08628e-23
2.48916e-23
3.98689e-23
6.36835e-23
8.76403e-23
1.59916e-22
2.44419e-22
4.29681e-22
9.20676e-22
2.05253e-21
7.48599e-21
1.93379e-20
6.81315e-20
4.16718e-19
1.21846e-18
4.02013e-18
1.24148e-17
1.36395e-17
2.30409e-17
1.40488e-17
1.10971e-17
9.26457e-18
2.08941e-18
4.4721e-19
1.43291e-19
1.73956e-20
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
bottom
{
type zeroGradient;
}
outlet
{
type zeroGradient;
}
atmosphere
{
type inletOutlet;
inletValue uniform 0;
value nonuniform List<scalar>
357
(
3.18005e-42
3.44079e-43
9.87841e-45
6.42008e-47
1.00507e-49
5.47506e-53
1.03217e-56
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.76206e-13
3.85912e-13
4.4382e-13
5.14842e-13
5.05197e-13
4.63356e-13
3.82921e-13
2.79342e-13
1.94992e-13
1.15475e-13
6.10062e-14
2.95645e-14
1.25633e-14
5.43589e-15
3.01897e-15
2.2497e-15
2.07566e-15
2.12894e-15
2.12503e-15
2.04206e-15
1.8335e-15
1.61083e-15
1.39976e-15
1.24709e-15
7.56582e-16
5.93986e-16
4.82313e-16
3.7636e-16
3.14001e-16
2.82043e-16
2.22632e-16
1.33656e-16
7.00588e-17
3.939e-17
3.78622e-17
4.34978e-17
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.78871e-12
4.59345e-12
4.15645e-12
3.67657e-12
3.26252e-12
2.87622e-12
2.56939e-12
2.45869e-12
2.06081e-12
1.61984e-12
1.23269e-12
8.91723e-13
6.40299e-13
4.18822e-13
2.79288e-13
1.6423e-13
1.12805e-13
6.1814e-14
4.1997e-14
2.14805e-14
1.4175e-14
7.09888e-15
5.28361e-15
2.81923e-15
2.22732e-15
1.35205e-15
8.83706e-16
5.85313e-16
3.31378e-16
1.6002e-16
9.56676e-17
7.57603e-17
5.92488e-17
5.75343e-17
4.44164e-17
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.08207e-12
4.06348e-12
4.0478e-12
4.29828e-12
3.39435e-12
2.98823e-12
2.50947e-12
2.13792e-12
1.87993e-12
1.48857e-12
1.05973e-12
6.8157e-13
4.86126e-13
3.13042e-13
2.35067e-13
1.51477e-13
1.04097e-13
7.40323e-14
4.61421e-14
3.39869e-14
2.03408e-14
1.0604e-14
5.48992e-15
2.81252e-15
1.72218e-15
1.02457e-15
7.26749e-16
4.87605e-16
3.45347e-16
1.94472e-16
9.95453e-17
7.62914e-17
9.77877e-17
1.73659e-16
3.4611e-16
3.30427e-16
3.45799e-16
2.11441e-16
2.0243e-16
1.32462e-16
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.15354e-12
5.28664e-12
6.76865e-12
6.31e-12
4.30131e-12
3.21964e-12
2.61618e-12
2.29498e-12
2.11929e-12
1.82765e-12
1.63439e-12
1.69446e-12
1.71303e-12
1.49546e-12
1.06253e-12
6.82236e-13
7.39964e-13
1.22497e-12
1.66492e-12
1.88437e-12
2.25367e-12
2.17881e-12
1.89875e-12
1.3953e-12
6.08187e-13
2.04427e-13
5.31156e-14
1.07165e-14
1.82996e-15
3.11066e-16
6.33701e-17
1.60395e-17
5.4582e-18
1.52407e-18
4.58954e-19
1.35218e-19
5.49159e-20
2.83382e-20
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.81315e-20
4.16718e-19
1.21846e-18
4.02013e-18
1.24148e-17
1.36395e-17
2.30409e-17
1.40488e-17
1.10971e-17
9.26457e-18
2.08941e-18
4.4721e-19
1.43291e-19
1.73956e-20
)
;
}
frontBack
{
type empty;
}
}
// ************************************************************************* //
|
deef06b6205048d39f30c78acddb26550dd009c2 | ca715cd87f563e69177f762b05960a029ab6a775 | /inven,itemImageRecource/아이템_인벤_만들기/spaceShip.h | a623ef23881da99d13646fca15017291696c9cc2 | [] | no_license | RecetteLemon/Disgaea | 8f17f045b320ec860ea35924c1ad953e3af60e40 | f8e38fe4d1c7066c89bf976f2c0998a1aad59c93 | refs/heads/master | 2021-01-01T06:09:22.775218 | 2017-07-26T05:56:26 | 2017-07-26T05:56:26 | 97,367,173 | 0 | 1 | null | null | null | null | UHC | C++ | false | false | 793 | h | spaceShip.h | #pragma once
#include "gameNode.h"
#include "bullets.h"
#include "progressBar.h"
//상호참조하게되었을 떄 무한루프를 빠져나오기 위한 전방선언
class enemyManager;
class spaceShip : public gameNode
{
private:
image* _ship;
missile* _missile;
thaadMissile* _thaad;
enemyManager* _em;
progressBar* _hpBar;
float _maxHP, _currentHP;
int _alphaValue;
public:
virtual HRESULT init(void);
virtual void release(void);
virtual void update(void);
virtual void render(void);
void collision();
void removeMissile(int arrNum);
void hitDamage(float damage);
image* getShipImage() { return _ship; }
void setEnemyManagerMemoryAddressLink(enemyManager* em) { _em = em; }
thaadMissile* getThaadMissile() { return _thaad; }
spaceShip();
~spaceShip();
};
|
9e43dd1e91091633e6f0b789eb821597996da034 | fdec1e0e9e5eb339c7c08eb12001a780203eb374 | /C++/Parser_qq/analyzer.h | 7c26e3c25939ee3b58191b0e19ec3bbe369b78cb | [] | no_license | alonakorzhnev/sqlink | 8b681c55124418abcb441e5d96d8ec4a576c94fd | 110d22350c79b22843cab61fba02c2445b93b4a8 | refs/heads/master | 2020-06-30T14:05:46.841909 | 2019-12-12T13:39:15 | 2019-12-12T13:39:15 | 200,849,808 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,185 | h | analyzer.h | #pragma once
#include <queue>
#include <set>
#include <string>
class Analyzer
{
public:
virtual ~Analyzer() {}
Analyzer();
void analyze(std::queue<std::string>& tokens, size_t lineNum);
virtual void analyzeEnd();
private:
void analyzeToken(const std::string& token, size_t lineNum);
virtual void checkType(const std::string& token, size_t lineNum);
virtual void checkKeyWords(const std::string& token, size_t lineNum);
virtual void checkOperators(const std::string& token, size_t lineNum);
virtual void checkBrackets(const std::string& token, size_t lineNum);
virtual void checkVar(const std::string& token, size_t lineNum);
void checkIfElse(const std::string& token, size_t lineNum);
void checkMain(const std::string& token, size_t lineNum);
void checkRound(const std::string& token, size_t lineNum);
void checkSquare(const std::string& token, size_t lineNum);
void checkCurly(const std::string& token, size_t lineNum);
void checkPlus(const std::string& token, size_t lineNum);
void checkMinus(const std::string& token, size_t lineNum);
bool isTypeDeclared(const std::string& token, size_t lineNum);
bool isNameValid(const std::string& token) const;
void clearPlusMinus() { m_plus = 0; m_minus = 0; }
void clearCounters();
std::set<std::string> m_predTypes;
std::set<std::string> m_keyWords;
std::set<std::string> m_operators;
std::set<std::string> m_delimeters;
std::set<std::string> m_varTable;
static std::string predTypes[];
static std::string keyWords[];
static std::string operators[];
static std::string delimeters[];
//counters
bool m_firstToken;
bool m_type;
int m_ifElse;
int m_plus;
int m_minus;
int m_round; //()
int m_square; //[]
int m_curly; //{}
Analyzer(const Analyzer& a);
Analyzer& operator=(const Analyzer& a);
}; |
93e057e3bc321aeaa9956ac4cdf35ada13bea92d | ade27bf8c49da2ef982036e5a1a64881ca42dbe5 | /ggo2d/src/2d/io/ggo_tga.h | aa8f65b14ea14e1f2664f9c1f543f2592087306c | [] | no_license | gourdi/ggp | 1cafb02719422f64f9eb346691abb3f2cb4de5ce | 4ac58ec2937907617adac24473c9a7314a9e9b16 | refs/heads/master | 2021-06-25T12:23:25.407944 | 2020-12-03T15:47:30 | 2020-12-03T15:47:30 | 47,816,211 | 0 | 0 | null | 2016-01-06T14:38:21 | 2015-12-11T09:06:38 | C++ | UTF-8 | C++ | false | false | 238 | h | ggo_tga.h | #pragma once
#include <2d/ggo_image.h>
namespace ggo
{
image load_tga(const std::string & filename);
bool save_tga(const std::string & filename, const void * buffer, ggo::pixel_type pixel_type, const memory_layout & mem_layout);
}
|
47575bd87731c2df119feefe919d1f02598a3ead | 96df46515663aee49a753171fb3b07d74c8ef72f | /bindgen-tests/tests/headers/eval-variadic-template-parameter.hpp | 0a9e51c1e3d983e811248b3c4bffe59d9be4b611 | [
"BSD-3-Clause"
] | permissive | rust-lang/rust-bindgen | 05273ad4d385ce0b5a2315859f8c7c453c150db6 | 820ca42982fe77d5504f7a0534a3de6db6a1d703 | refs/heads/main | 2023-08-30T19:59:33.017994 | 2023-08-15T18:01:02 | 2023-08-15T18:01:02 | 61,728,459 | 2,874 | 391 | BSD-3-Clause | 2023-09-12T20:32:46 | 2016-06-22T15:05:51 | Rust | UTF-8 | C++ | false | false | 231 | hpp | eval-variadic-template-parameter.hpp | // bindgen-flags: -- -std=c++11
template <typename... T>
struct B {
// Can't generate anything meaningful in Rust for this, but we shouldn't
// trigger an assertion inside Clang.
static const long c = sizeof...(T);
};
|
4186ffef81f7957364bc604a6e37a8d868b0cbf6 | d4240a19b3a97e8c4a39a7925e8046ead6642d19 | /2016/Enceladus/Temp/StagingArea/Data/il2cppOutput/Bulk_Generics_0.cpp | 48669ae0177cad4c02d5aaae72230c3996af485b | [] | no_license | mgoadric/csci370 | 05561a24a8a6c3ace4d9ab673b20c03fc40686e9 | 9ffd5d0e373c8a415cd23799fc29a6f6d83c08af | refs/heads/master | 2023-03-17T18:51:45.095212 | 2023-03-13T19:45:59 | 2023-03-13T19:45:59 | 81,270,581 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 718,135 | cpp | Bulk_Generics_0.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>
// System.Action`1<System.Boolean>
struct Action_1_t3627374100;
// System.Object
struct Il2CppObject;
// System.IAsyncResult
struct IAsyncResult_t1999651008;
// System.AsyncCallback
struct AsyncCallback_t163412349;
// System.Action`1<System.Object>
struct Action_1_t2491248677;
// System.Action`2<System.Boolean,System.Object>
struct Action_2_t2525452034;
// System.Action`2<System.Object,System.Object>
struct Action_2_t2572051853;
// System.Action`3<System.Object,System.Object,System.Object>
struct Action_3_t1115657183;
// System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>
struct U3CGetEnumeratorU3Ec__Iterator0_t2445488949;
// System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>
struct U3CGetEnumeratorU3Ec__Iterator0_t4145164493;
// System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>
struct U3CGetEnumeratorU3Ec__Iterator0_t1254237568;
// System.Array/ArrayReadOnlyList`1<System.Object>
struct ArrayReadOnlyList_1_t2471096271;
// System.Object[]
struct ObjectU5BU5D_t3614634134;
// System.Collections.IEnumerator
struct IEnumerator_t1466026749;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_t164973122;
// System.Exception
struct Exception_t1927440687;
// System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>
struct ArrayReadOnlyList_1_t4170771815;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t3304067486;
// System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeNamedArgument>
struct IEnumerator_1_t1864648666;
// System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>
struct ArrayReadOnlyList_1_t1279844890;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t1075686591;
// System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeTypedArgument>
struct IEnumerator_1_t3268689037;
// System.Array
struct Il2CppArray;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Char>
struct DefaultComparer_t1943751571;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTime>
struct DefaultComparer_t3477443198;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTimeOffset>
struct DefaultComparer_t4147226435;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Guid>
struct DefaultComparer_t1022871826;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Int32>
struct DefaultComparer_t561147681;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Object>
struct DefaultComparer_t1178719528;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument>
struct DefaultComparer_t2878395072;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument>
struct DefaultComparer_t4282435443;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.Single>
struct DefaultComparer_t565780165;
// System.Collections.Generic.Comparer`1/DefaultComparer<System.TimeSpan>
struct DefaultComparer_t1919529182;
// System.Collections.Generic.Comparer`1/DefaultComparer<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>
struct DefaultComparer_t3042092431;
// System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Color>
struct DefaultComparer_t509662308;
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Array3829468939.h"
#include "mscorlib_System_Action_1_gen3627374100.h"
#include "mscorlib_System_Action_1_gen3627374100MethodDeclarations.h"
#include "mscorlib_System_Object2689449295.h"
#include "mscorlib_System_IntPtr2504060609.h"
#include "mscorlib_System_Void1841601450.h"
#include "mscorlib_System_Boolean3825574718.h"
#include "mscorlib_System_AsyncCallback163412349.h"
#include "mscorlib_System_Action_1_gen2491248677.h"
#include "mscorlib_System_Action_1_gen2491248677MethodDeclarations.h"
#include "System_Core_System_Action_2_gen2525452034.h"
#include "System_Core_System_Action_2_gen2525452034MethodDeclarations.h"
#include "System_Core_System_Action_2_gen2572051853.h"
#include "System_Core_System_Action_2_gen2572051853MethodDeclarations.h"
#include "System_Core_System_Action_3_gen1115657183.h"
#include "System_Core_System_Action_3_gen1115657183MethodDeclarations.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_U3CGetEn2445488949.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_U3CGetEn2445488949MethodDeclarations.h"
#include "mscorlib_System_Object2689449295MethodDeclarations.h"
#include "mscorlib_System_UInt322149682021.h"
#include "mscorlib_System_Int322071877448.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_gen2471096271.h"
#include "mscorlib_ArrayTypes.h"
#include "mscorlib_System_NotSupportedException1793819818MethodDeclarations.h"
#include "mscorlib_System_NotSupportedException1793819818.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_U3CGetEn4145164493.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_U3CGetEn4145164493MethodDeclarations.h"
#include "mscorlib_System_Reflection_CustomAttributeNamedArgum94157543.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_gen4170771815.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_U3CGetEn1254237568.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_U3CGetEn1254237568MethodDeclarations.h"
#include "mscorlib_System_Reflection_CustomAttributeTypedArg1498197914.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_gen1279844890.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_gen2471096271MethodDeclarations.h"
#include "mscorlib_System_ArgumentOutOfRangeException279959794MethodDeclarations.h"
#include "mscorlib_System_String2029220233.h"
#include "mscorlib_System_ArgumentOutOfRangeException279959794.h"
#include "mscorlib_System_Exception1927440687.h"
#include "mscorlib_System_Array3829468939MethodDeclarations.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_gen4170771815MethodDeclarations.h"
#include "mscorlib_System_Array_ArrayReadOnlyList_1_gen1279844890MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2870158877.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2870158877MethodDeclarations.h"
#include "mscorlib_Mono_Globalization_Unicode_CodePointIndex2011406615.h"
#include "mscorlib_System_InvalidOperationException721527559MethodDeclarations.h"
#include "mscorlib_System_InvalidOperationException721527559.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen565169432.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen565169432MethodDeclarations.h"
#include "Mono_Security_Mono_Security_Protocol_Tls_Handshake4001384466.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen389359684.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen389359684MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen246889402.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen246889402MethodDeclarations.h"
#include "mscorlib_System_Byte3683104436.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen18266304.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen18266304MethodDeclarations.h"
#include "mscorlib_System_Char3454481338.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3907627660.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3907627660MethodDeclarations.h"
#include "mscorlib_System_Collections_DictionaryEntry3048875398.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1723885533.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1723885533MethodDeclarations.h"
#include "System_Core_System_Collections_Generic_HashSet_1_Li865133271.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1449497837.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1449497837MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_2_590745575.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1078404457.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1078404457MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_2_219652195.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3990767863.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3990767863MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_23132015601.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2827968452.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2827968452MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_21969216190.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen313372414.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen313372414MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_23749587448.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2295065181.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2295065181MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_21436312919.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2033732330.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2033732330MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_21174980068.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen280035060.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen280035060MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_23716250094.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen897606907.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen897606907MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_KeyValuePair_2_g38854645.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3582009740.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3582009740MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Link2723257478.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2881283523.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2881283523MethodDeclarations.h"
#include "mscorlib_System_Collections_Hashtable_Slot2022531261.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3126312864.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3126312864MethodDeclarations.h"
#include "mscorlib_System_Collections_SortedList_Slot2267560602.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1551957931.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1551957931MethodDeclarations.h"
#include "mscorlib_System_DateTime693205669.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1583453339.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1583453339MethodDeclarations.h"
#include "mscorlib_System_Decimal724701077.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen641800647.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen641800647MethodDeclarations.h"
#include "mscorlib_System_Double4078015681.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen605030880.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen605030880MethodDeclarations.h"
#include "mscorlib_System_Int164041245914.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2930629710.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2930629710MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1767830299.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1767830299MethodDeclarations.h"
#include "mscorlib_System_Int64909078037.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3362812871.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3362812871MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3548201557.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3548201557MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen952909805.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen952909805MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2356950176.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2356950176MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen275897710.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen275897710MethodDeclarations.h"
#include "mscorlib_System_Reflection_Emit_ILGenerator_LabelD3712112744.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen654694480.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen654694480MethodDeclarations.h"
#include "mscorlib_System_Reflection_Emit_ILGenerator_LabelF4090909514.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1008311600.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1008311600MethodDeclarations.h"
#include "mscorlib_System_Reflection_Emit_ILTokenInfo149559338.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2679387182.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2679387182MethodDeclarations.h"
#include "mscorlib_System_Reflection_ParameterModifier1820634920.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1191988411.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1191988411MethodDeclarations.h"
#include "mscorlib_System_Resources_ResourceReader_ResourceCa333236149.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen496834202.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen496834202MethodDeclarations.h"
#include "mscorlib_System_Resources_ResourceReader_ResourceI3933049236.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen999961858.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen999961858MethodDeclarations.h"
#include "mscorlib_System_Runtime_Serialization_Formatters_Bi141209596.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1313169811.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1313169811MethodDeclarations.h"
#include "mscorlib_System_SByte454417549.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen842163687.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen842163687MethodDeclarations.h"
#include "System_System_Security_Cryptography_X509Certificat4278378721.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2935262194.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2935262194MethodDeclarations.h"
#include "mscorlib_System_Single2076509932.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3583626735.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3583626735MethodDeclarations.h"
#include "System_System_Text_RegularExpressions_Mark2724874473.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen4289011211.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen4289011211MethodDeclarations.h"
#include "mscorlib_System_TimeSpan3430258949.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1845634873.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1845634873MethodDeclarations.h"
#include "mscorlib_System_UInt16986882611.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3008434283.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3008434283MethodDeclarations.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3767949176.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3767949176MethodDeclarations.h"
#include "mscorlib_System_UInt642909196914.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2735343205.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2735343205MethodDeclarations.h"
#include "System_System_Uri_UriScheme1876590943.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3006529267.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3006529267MethodDeclarations.h"
#include "AssemblyU2DCSharp_TMPro_Examples_VertexJitter_Vert2147777005.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3713105758.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3713105758MethodDeclarations.h"
#include "TextMeshPro_TMPro_MaterialReference2854353496.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1116607164.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1116607164MethodDeclarations.h"
#include "TextMeshPro_TMPro_SpriteAssetUtilities_TexturePacke257854902.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2325540586.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2325540586MethodDeclarations.h"
#include "TextMeshPro_TMPro_TextAlignmentOptions1466788324.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2280055053.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2280055053MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_CharacterInfo1421302791.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2422920564.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2422920564MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_FontWeights1564168302.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen858221390.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen858221390MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_InputField_ContentType4294436424.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3179170388.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3179170388MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_LineInfo2320418126.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen190679926.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen190679926MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_LinkInfo3626894960.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2156060579.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2156060579MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_MeshInfo1297308317.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen408917303.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen408917303MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_PageInfo3845132337.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen371242578.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen371242578MethodDeclarations.h"
#include "TextMeshPro_TMPro_TMP_WordInfo3807457612.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2738537254.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2738537254MethodDeclarations.h"
#include "TextMeshPro_TMPro_XML_TagAttribute1879784992.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2879144337.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2879144337MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Color2020392075.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1733269780.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1733269780MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Color32874517518.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2235177892.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2235177892MethodDeclarations.h"
#include "UnityEngine_UnityEngine_ContactPoint1376425630.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen223115942.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen223115942MethodDeclarations.h"
#include "UnityEngine_UnityEngine_ContactPoint2D3659330976.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen879938638.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen879938638MethodDeclarations.h"
#include "UnityEngine_UI_UnityEngine_EventSystems_RaycastResul21186376.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen231330514.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen231330514MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Experimental_Director_Play3667545548.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2308223602.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2308223602MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Keyframe1449471340.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen945932582.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen945932582MethodDeclarations.h"
#include "UnityEngine_UnityEngine_RaycastHit87180320.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen627693740.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen627693740MethodDeclarations.h"
#include "UnityEngine_UnityEngine_RaycastHit2D4063908774.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2620119317.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2620119317MethodDeclarations.h"
#include "UnityEngine_UnityEngine_SendMouseEvents_HitInfo1761367055.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1887381311.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen1887381311MethodDeclarations.h"
#include "UnityEngine_UI_UnityEngine_UI_InputField_ContentTy1028629049.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3915389062.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3915389062MethodDeclarations.h"
#include "UnityEngine_UnityEngine_UICharInfo3056636800.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen185062840.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen185062840MethodDeclarations.h"
#include "UnityEngine_UnityEngine_UILineInfo3621277874.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2063011080.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2063011080MethodDeclarations.h"
#include "UnityEngine_UnityEngine_UIVertex1204258818.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3102459841.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3102459841MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Vector22243707579.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3102459842.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3102459842MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Vector32243707580.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3102459843.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen3102459843MethodDeclarations.h"
#include "UnityEngine_UnityEngine_Vector42243707581.h"
#include "mscorlib_System_Collections_Generic_CollectionDebug517719049.h"
#include "mscorlib_System_Collections_Generic_CollectionDebug517719049MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_CollectionDebu2230541861.h"
#include "mscorlib_System_Collections_Generic_CollectionDebu2230541861MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1943751571.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1943751571MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen2344490457MethodDeclarations.h"
#include "mscorlib_System_ArgumentException3259014390MethodDeclarations.h"
#include "mscorlib_System_ArgumentException3259014390.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def3477443198.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def3477443198MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen3878182084MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def4147226435.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def4147226435MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen252998025MethodDeclarations.h"
#include "mscorlib_System_DateTimeOffset1362988906.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1022871826.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1022871826MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen1423610712MethodDeclarations.h"
#include "mscorlib_System_Guid2533601593.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Defa561147681.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Defa561147681MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen961886567MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1178719528.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1178719528MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen1579458414MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def2878395072.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def2878395072MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen3279133958MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def4282435443.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def4282435443MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen388207033MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Defa565780165.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Defa565780165MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen966519051MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1919529182.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def1919529182MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen2320268068MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def3042092431.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Def3042092431MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen3442831317MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Defa509662308.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_Defa509662308MethodDeclarations.h"
#include "mscorlib_System_Collections_Generic_Comparer_1_gen910401194MethodDeclarations.h"
// System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0)
extern "C" int32_t Array_IndexOf_TisIl2CppObject_m2032877681_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t3614634134* p0, Il2CppObject * p1, const MethodInfo* method);
#define Array_IndexOf_TisIl2CppObject_m2032877681(__this /* static, unused */, p0, p1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t3614634134*, Il2CppObject *, const MethodInfo*))Array_IndexOf_TisIl2CppObject_m2032877681_gshared)(__this /* static, unused */, p0, p1, method)
// System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeNamedArgument>(!!0[],!!0)
extern "C" int32_t Array_IndexOf_TisCustomAttributeNamedArgument_t94157543_m745056346_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3304067486* p0, CustomAttributeNamedArgument_t94157543 p1, const MethodInfo* method);
#define Array_IndexOf_TisCustomAttributeNamedArgument_t94157543_m745056346(__this /* static, unused */, p0, p1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3304067486*, CustomAttributeNamedArgument_t94157543 , const MethodInfo*))Array_IndexOf_TisCustomAttributeNamedArgument_t94157543_m745056346_gshared)(__this /* static, unused */, p0, p1, method)
// System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeTypedArgument>(!!0[],!!0)
extern "C" int32_t Array_IndexOf_TisCustomAttributeTypedArgument_t1498197914_m3666284377_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1075686591* p0, CustomAttributeTypedArgument_t1498197914 p1, const MethodInfo* method);
#define Array_IndexOf_TisCustomAttributeTypedArgument_t1498197914_m3666284377(__this /* static, unused */, p0, p1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1075686591*, CustomAttributeTypedArgument_t1498197914 , const MethodInfo*))Array_IndexOf_TisCustomAttributeTypedArgument_t1498197914_m3666284377_gshared)(__this /* static, unused */, p0, p1, method)
// !!0 System.Array::InternalArray__get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32)
extern "C" TableRange_t2011406615 Array_InternalArray__get_Item_TisTableRange_t2011406615_m602485977_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTableRange_t2011406615_m602485977(__this, p0, method) (( TableRange_t2011406615 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTableRange_t2011406615_m602485977_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(System.Int32)
extern "C" int32_t Array_InternalArray__get_Item_TisClientCertificateType_t4001384466_m1933364177_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisClientCertificateType_t4001384466_m1933364177(__this, p0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisClientCertificateType_t4001384466_m1933364177_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Boolean>(System.Int32)
extern "C" bool Array_InternalArray__get_Item_TisBoolean_t3825574718_m3129847639_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisBoolean_t3825574718_m3129847639(__this, p0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisBoolean_t3825574718_m3129847639_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Byte>(System.Int32)
extern "C" uint8_t Array_InternalArray__get_Item_TisByte_t3683104436_m635665873_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisByte_t3683104436_m635665873(__this, p0, method) (( uint8_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisByte_t3683104436_m635665873_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Char>(System.Int32)
extern "C" Il2CppChar Array_InternalArray__get_Item_TisChar_t3454481338_m3646615547_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisChar_t3454481338_m3646615547(__this, p0, method) (( Il2CppChar (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisChar_t3454481338_m3646615547_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.DictionaryEntry>(System.Int32)
extern "C" DictionaryEntry_t3048875398 Array_InternalArray__get_Item_TisDictionaryEntry_t3048875398_m2371191320_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisDictionaryEntry_t3048875398_m2371191320(__this, p0, method) (( DictionaryEntry_t3048875398 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisDictionaryEntry_t3048875398_m2371191320_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1/Link<System.Object>>(System.Int32)
extern "C" Link_t865133271 Array_InternalArray__get_Item_TisLink_t865133271_m2489845481_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisLink_t865133271_m2489845481(__this, p0, method) (( Link_t865133271 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisLink_t865133271_m2489845481_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(System.Int32)
extern "C" KeyValuePair_2_t590745575 Array_InternalArray__get_Item_TisKeyValuePair_2_t590745575_m1918195671_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t590745575_m1918195671(__this, p0, method) (( KeyValuePair_2_t590745575 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t590745575_m1918195671_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(System.Int32)
extern "C" KeyValuePair_2_t219652195 Array_InternalArray__get_Item_TisKeyValuePair_2_t219652195_m2605697699_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t219652195_m2605697699(__this, p0, method) (( KeyValuePair_2_t219652195 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t219652195_m2605697699_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(System.Int32)
extern "C" KeyValuePair_2_t3132015601 Array_InternalArray__get_Item_TisKeyValuePair_2_t3132015601_m2931568841_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t3132015601_m2931568841(__this, p0, method) (( KeyValuePair_2_t3132015601 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t3132015601_m2931568841_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(System.Int32)
extern "C" KeyValuePair_2_t1969216190 Array_InternalArray__get_Item_TisKeyValuePair_2_t1969216190_m3648236056_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t1969216190_m3648236056(__this, p0, method) (( KeyValuePair_2_t1969216190 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t1969216190_m3648236056_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32)
extern "C" KeyValuePair_2_t3749587448 Array_InternalArray__get_Item_TisKeyValuePair_2_t3749587448_m833470118_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t3749587448_m833470118(__this, p0, method) (( KeyValuePair_2_t3749587448 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t3749587448_m833470118_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(System.Int32)
extern "C" KeyValuePair_2_t1436312919 Array_InternalArray__get_Item_TisKeyValuePair_2_t1436312919_m950284541_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t1436312919_m950284541(__this, p0, method) (( KeyValuePair_2_t1436312919 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t1436312919_m950284541_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32)
extern "C" KeyValuePair_2_t1174980068 Array_InternalArray__get_Item_TisKeyValuePair_2_t1174980068_m964958642_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t1174980068_m964958642(__this, p0, method) (( KeyValuePair_2_t1174980068 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t1174980068_m964958642_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32)
extern "C" KeyValuePair_2_t3716250094 Array_InternalArray__get_Item_TisKeyValuePair_2_t3716250094_m3120861630_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t3716250094_m3120861630(__this, p0, method) (( KeyValuePair_2_t3716250094 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t3716250094_m3120861630_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32)
extern "C" KeyValuePair_2_t38854645 Array_InternalArray__get_Item_TisKeyValuePair_2_t38854645_m2422121821_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyValuePair_2_t38854645_m2422121821(__this, p0, method) (( KeyValuePair_2_t38854645 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyValuePair_2_t38854645_m2422121821_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Generic.Link>(System.Int32)
extern "C" Link_t2723257478 Array_InternalArray__get_Item_TisLink_t2723257478_m2281261655_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisLink_t2723257478_m2281261655(__this, p0, method) (( Link_t2723257478 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisLink_t2723257478_m2281261655_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.Hashtable/Slot>(System.Int32)
extern "C" Slot_t2022531261 Array_InternalArray__get_Item_TisSlot_t2022531261_m426645551_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisSlot_t2022531261_m426645551(__this, p0, method) (( Slot_t2022531261 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisSlot_t2022531261_m426645551_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Collections.SortedList/Slot>(System.Int32)
extern "C" Slot_t2267560602 Array_InternalArray__get_Item_TisSlot_t2267560602_m1004716430_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisSlot_t2267560602_m1004716430(__this, p0, method) (( Slot_t2267560602 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisSlot_t2267560602_m1004716430_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.DateTime>(System.Int32)
extern "C" DateTime_t693205669 Array_InternalArray__get_Item_TisDateTime_t693205669_m3661692220_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisDateTime_t693205669_m3661692220(__this, p0, method) (( DateTime_t693205669 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisDateTime_t693205669_m3661692220_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Decimal>(System.Int32)
extern "C" Decimal_t724701077 Array_InternalArray__get_Item_TisDecimal_t724701077_m4156246600_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisDecimal_t724701077_m4156246600(__this, p0, method) (( Decimal_t724701077 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisDecimal_t724701077_m4156246600_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Double>(System.Int32)
extern "C" double Array_InternalArray__get_Item_TisDouble_t4078015681_m2215331088_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisDouble_t4078015681_m2215331088(__this, p0, method) (( double (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisDouble_t4078015681_m2215331088_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Int16>(System.Int32)
extern "C" int16_t Array_InternalArray__get_Item_TisInt16_t4041245914_m2533263979_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisInt16_t4041245914_m2533263979(__this, p0, method) (( int16_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisInt16_t4041245914_m2533263979_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Int32>(System.Int32)
extern "C" int32_t Array_InternalArray__get_Item_TisInt32_t2071877448_m966348849_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisInt32_t2071877448_m966348849(__this, p0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisInt32_t2071877448_m966348849_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Int64>(System.Int32)
extern "C" int64_t Array_InternalArray__get_Item_TisInt64_t909078037_m1431563204_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisInt64_t909078037_m1431563204(__this, p0, method) (( int64_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisInt64_t909078037_m1431563204_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.IntPtr>(System.Int32)
extern "C" IntPtr_t Array_InternalArray__get_Item_TisIntPtr_t_m210946760_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisIntPtr_t_m210946760(__this, p0, method) (( IntPtr_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisIntPtr_t_m210946760_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Object>(System.Int32)
extern "C" Il2CppObject * Array_InternalArray__get_Item_TisIl2CppObject_m371871810_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisIl2CppObject_m371871810(__this, p0, method) (( Il2CppObject * (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisIl2CppObject_m371871810_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32)
extern "C" CustomAttributeNamedArgument_t94157543 Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t94157543_m4258992745_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t94157543_m4258992745(__this, p0, method) (( CustomAttributeNamedArgument_t94157543 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t94157543_m4258992745_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32)
extern "C" CustomAttributeTypedArgument_t1498197914 Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t1498197914_m1864496094_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t1498197914_m1864496094(__this, p0, method) (( CustomAttributeTypedArgument_t1498197914 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t1498197914_m1864496094_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Reflection.Emit.ILGenerator/LabelData>(System.Int32)
extern "C" LabelData_t3712112744 Array_InternalArray__get_Item_TisLabelData_t3712112744_m863115768_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisLabelData_t3712112744_m863115768(__this, p0, method) (( LabelData_t3712112744 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisLabelData_t3712112744_m863115768_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Reflection.Emit.ILGenerator/LabelFixup>(System.Int32)
extern "C" LabelFixup_t4090909514 Array_InternalArray__get_Item_TisLabelFixup_t4090909514_m2966857142_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisLabelFixup_t4090909514_m2966857142(__this, p0, method) (( LabelFixup_t4090909514 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisLabelFixup_t4090909514_m2966857142_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Reflection.Emit.ILTokenInfo>(System.Int32)
extern "C" ILTokenInfo_t149559338 Array_InternalArray__get_Item_TisILTokenInfo_t149559338_m2004750537_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisILTokenInfo_t149559338_m2004750537(__this, p0, method) (( ILTokenInfo_t149559338 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisILTokenInfo_t149559338_m2004750537_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Reflection.ParameterModifier>(System.Int32)
extern "C" ParameterModifier_t1820634920 Array_InternalArray__get_Item_TisParameterModifier_t1820634920_m1898755304_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisParameterModifier_t1820634920_m1898755304(__this, p0, method) (( ParameterModifier_t1820634920 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisParameterModifier_t1820634920_m1898755304_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Resources.ResourceReader/ResourceCacheItem>(System.Int32)
extern "C" ResourceCacheItem_t333236149 Array_InternalArray__get_Item_TisResourceCacheItem_t333236149_m649009631_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisResourceCacheItem_t333236149_m649009631(__this, p0, method) (( ResourceCacheItem_t333236149 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisResourceCacheItem_t333236149_m649009631_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Resources.ResourceReader/ResourceInfo>(System.Int32)
extern "C" ResourceInfo_t3933049236 Array_InternalArray__get_Item_TisResourceInfo_t3933049236_m107404352_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisResourceInfo_t3933049236_m107404352(__this, p0, method) (( ResourceInfo_t3933049236 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisResourceInfo_t3933049236_m107404352_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Runtime.Serialization.Formatters.Binary.TypeTag>(System.Int32)
extern "C" uint8_t Array_InternalArray__get_Item_TisTypeTag_t141209596_m1747911007_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTypeTag_t141209596_m1747911007(__this, p0, method) (( uint8_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTypeTag_t141209596_m1747911007_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.SByte>(System.Int32)
extern "C" int8_t Array_InternalArray__get_Item_TisSByte_t454417549_m3315206452_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisSByte_t454417549_m3315206452(__this, p0, method) (( int8_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisSByte_t454417549_m3315206452_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32)
extern "C" X509ChainStatus_t4278378721 Array_InternalArray__get_Item_TisX509ChainStatus_t4278378721_m4197592500_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisX509ChainStatus_t4278378721_m4197592500(__this, p0, method) (( X509ChainStatus_t4278378721 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisX509ChainStatus_t4278378721_m4197592500_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Single>(System.Int32)
extern "C" float Array_InternalArray__get_Item_TisSingle_t2076509932_m1495809753_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisSingle_t2076509932_m1495809753(__this, p0, method) (( float (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisSingle_t2076509932_m1495809753_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Text.RegularExpressions.Mark>(System.Int32)
extern "C" Mark_t2724874473 Array_InternalArray__get_Item_TisMark_t2724874473_m2044327706_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisMark_t2724874473_m2044327706(__this, p0, method) (( Mark_t2724874473 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisMark_t2724874473_m2044327706_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.TimeSpan>(System.Int32)
extern "C" TimeSpan_t3430258949 Array_InternalArray__get_Item_TisTimeSpan_t3430258949_m1147719260_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTimeSpan_t3430258949_m1147719260(__this, p0, method) (( TimeSpan_t3430258949 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTimeSpan_t3430258949_m1147719260_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.UInt16>(System.Int32)
extern "C" uint16_t Array_InternalArray__get_Item_TisUInt16_t986882611_m2599215710_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUInt16_t986882611_m2599215710(__this, p0, method) (( uint16_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUInt16_t986882611_m2599215710_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.UInt32>(System.Int32)
extern "C" uint32_t Array_InternalArray__get_Item_TisUInt32_t2149682021_m2554907852_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUInt32_t2149682021_m2554907852(__this, p0, method) (( uint32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUInt32_t2149682021_m2554907852_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.UInt64>(System.Int32)
extern "C" uint64_t Array_InternalArray__get_Item_TisUInt64_t2909196914_m2580870875_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUInt64_t2909196914_m2580870875(__this, p0, method) (( uint64_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUInt64_t2909196914_m2580870875_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<System.Uri/UriScheme>(System.Int32)
extern "C" UriScheme_t1876590943 Array_InternalArray__get_Item_TisUriScheme_t1876590943_m1821482697_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUriScheme_t1876590943_m1821482697(__this, p0, method) (( UriScheme_t1876590943 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUriScheme_t1876590943_m1821482697_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.Examples.VertexJitter/VertexAnim>(System.Int32)
extern "C" VertexAnim_t2147777005 Array_InternalArray__get_Item_TisVertexAnim_t2147777005_m2318044399_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisVertexAnim_t2147777005_m2318044399(__this, p0, method) (( VertexAnim_t2147777005 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisVertexAnim_t2147777005_m2318044399_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.MaterialReference>(System.Int32)
extern "C" MaterialReference_t2854353496 Array_InternalArray__get_Item_TisMaterialReference_t2854353496_m1132906446_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisMaterialReference_t2854353496_m1132906446(__this, p0, method) (( MaterialReference_t2854353496 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisMaterialReference_t2854353496_m1132906446_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>(System.Int32)
extern "C" SpriteData_t257854902 Array_InternalArray__get_Item_TisSpriteData_t257854902_m1123569466_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisSpriteData_t257854902_m1123569466(__this, p0, method) (( SpriteData_t257854902 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisSpriteData_t257854902_m1123569466_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TextAlignmentOptions>(System.Int32)
extern "C" int32_t Array_InternalArray__get_Item_TisTextAlignmentOptions_t1466788324_m2309624678_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTextAlignmentOptions_t1466788324_m2309624678(__this, p0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTextAlignmentOptions_t1466788324_m2309624678_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_CharacterInfo>(System.Int32)
extern "C" TMP_CharacterInfo_t1421302791 Array_InternalArray__get_Item_TisTMP_CharacterInfo_t1421302791_m637010875_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_CharacterInfo_t1421302791_m637010875(__this, p0, method) (( TMP_CharacterInfo_t1421302791 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_CharacterInfo_t1421302791_m637010875_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_FontWeights>(System.Int32)
extern "C" TMP_FontWeights_t1564168302 Array_InternalArray__get_Item_TisTMP_FontWeights_t1564168302_m2324447928_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_FontWeights_t1564168302_m2324447928(__this, p0, method) (( TMP_FontWeights_t1564168302 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_FontWeights_t1564168302_m2324447928_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_InputField/ContentType>(System.Int32)
extern "C" int32_t Array_InternalArray__get_Item_TisContentType_t4294436424_m2049062832_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisContentType_t4294436424_m2049062832(__this, p0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisContentType_t4294436424_m2049062832_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_LineInfo>(System.Int32)
extern "C" TMP_LineInfo_t2320418126 Array_InternalArray__get_Item_TisTMP_LineInfo_t2320418126_m3964440012_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_LineInfo_t2320418126_m3964440012(__this, p0, method) (( TMP_LineInfo_t2320418126 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_LineInfo_t2320418126_m3964440012_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_LinkInfo>(System.Int32)
extern "C" TMP_LinkInfo_t3626894960 Array_InternalArray__get_Item_TisTMP_LinkInfo_t3626894960_m1061282198_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_LinkInfo_t3626894960_m1061282198(__this, p0, method) (( TMP_LinkInfo_t3626894960 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_LinkInfo_t3626894960_m1061282198_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_MeshInfo>(System.Int32)
extern "C" TMP_MeshInfo_t1297308317 Array_InternalArray__get_Item_TisTMP_MeshInfo_t1297308317_m1096218489_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_MeshInfo_t1297308317_m1096218489(__this, p0, method) (( TMP_MeshInfo_t1297308317 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_MeshInfo_t1297308317_m1096218489_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_PageInfo>(System.Int32)
extern "C" TMP_PageInfo_t3845132337 Array_InternalArray__get_Item_TisTMP_PageInfo_t3845132337_m45247357_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_PageInfo_t3845132337_m45247357(__this, p0, method) (( TMP_PageInfo_t3845132337 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_PageInfo_t3845132337_m45247357_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.TMP_WordInfo>(System.Int32)
extern "C" TMP_WordInfo_t3807457612 Array_InternalArray__get_Item_TisTMP_WordInfo_t3807457612_m2406315390_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisTMP_WordInfo_t3807457612_m2406315390(__this, p0, method) (( TMP_WordInfo_t3807457612 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisTMP_WordInfo_t3807457612_m2406315390_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<TMPro.XML_TagAttribute>(System.Int32)
extern "C" XML_TagAttribute_t1879784992 Array_InternalArray__get_Item_TisXML_TagAttribute_t1879784992_m2256388462_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisXML_TagAttribute_t1879784992_m2256388462(__this, p0, method) (( XML_TagAttribute_t1879784992 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisXML_TagAttribute_t1879784992_m2256388462_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Color>(System.Int32)
extern "C" Color_t2020392075 Array_InternalArray__get_Item_TisColor_t2020392075_m996560062_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisColor_t2020392075_m996560062(__this, p0, method) (( Color_t2020392075 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisColor_t2020392075_m996560062_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Color32>(System.Int32)
extern "C" Color32_t874517518 Array_InternalArray__get_Item_TisColor32_t874517518_m1877643687_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisColor32_t874517518_m1877643687(__this, p0, method) (( Color32_t874517518 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisColor32_t874517518_m1877643687_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.ContactPoint>(System.Int32)
extern "C" ContactPoint_t1376425630 Array_InternalArray__get_Item_TisContactPoint_t1376425630_m3234597783_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisContactPoint_t1376425630_m3234597783(__this, p0, method) (( ContactPoint_t1376425630 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisContactPoint_t1376425630_m3234597783_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.ContactPoint2D>(System.Int32)
extern "C" ContactPoint2D_t3659330976 Array_InternalArray__get_Item_TisContactPoint2D_t3659330976_m825151777_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisContactPoint2D_t3659330976_m825151777(__this, p0, method) (( ContactPoint2D_t3659330976 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisContactPoint2D_t3659330976_m825151777_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32)
extern "C" RaycastResult_t21186376 Array_InternalArray__get_Item_TisRaycastResult_t21186376_m4125877765_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisRaycastResult_t21186376_m4125877765(__this, p0, method) (( RaycastResult_t21186376 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisRaycastResult_t21186376_m4125877765_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Experimental.Director.Playable>(System.Int32)
extern "C" Playable_t3667545548 Array_InternalArray__get_Item_TisPlayable_t3667545548_m1976366877_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisPlayable_t3667545548_m1976366877(__this, p0, method) (( Playable_t3667545548 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisPlayable_t3667545548_m1976366877_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Keyframe>(System.Int32)
extern "C" Keyframe_t1449471340 Array_InternalArray__get_Item_TisKeyframe_t1449471340_m1003508933_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisKeyframe_t1449471340_m1003508933(__this, p0, method) (( Keyframe_t1449471340 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisKeyframe_t1449471340_m1003508933_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.RaycastHit>(System.Int32)
extern "C" RaycastHit_t87180320 Array_InternalArray__get_Item_TisRaycastHit_t87180320_m3529622569_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisRaycastHit_t87180320_m3529622569(__this, p0, method) (( RaycastHit_t87180320 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisRaycastHit_t87180320_m3529622569_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.RaycastHit2D>(System.Int32)
extern "C" RaycastHit2D_t4063908774 Array_InternalArray__get_Item_TisRaycastHit2D_t4063908774_m3592947655_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisRaycastHit2D_t4063908774_m3592947655(__this, p0, method) (( RaycastHit2D_t4063908774 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisRaycastHit2D_t4063908774_m3592947655_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32)
extern "C" HitInfo_t1761367055 Array_InternalArray__get_Item_TisHitInfo_t1761367055_m2443000901_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisHitInfo_t1761367055_m2443000901(__this, p0, method) (( HitInfo_t1761367055 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisHitInfo_t1761367055_m2443000901_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.UI.InputField/ContentType>(System.Int32)
extern "C" int32_t Array_InternalArray__get_Item_TisContentType_t1028629049_m2406619723_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisContentType_t1028629049_m2406619723(__this, p0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisContentType_t1028629049_m2406619723_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.UICharInfo>(System.Int32)
extern "C" UICharInfo_t3056636800 Array_InternalArray__get_Item_TisUICharInfo_t3056636800_m3872982785_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUICharInfo_t3056636800_m3872982785(__this, p0, method) (( UICharInfo_t3056636800 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUICharInfo_t3056636800_m3872982785_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.UILineInfo>(System.Int32)
extern "C" UILineInfo_t3621277874 Array_InternalArray__get_Item_TisUILineInfo_t3621277874_m1432166059_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUILineInfo_t3621277874_m1432166059(__this, p0, method) (( UILineInfo_t3621277874 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUILineInfo_t3621277874_m1432166059_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.UIVertex>(System.Int32)
extern "C" UIVertex_t1204258818 Array_InternalArray__get_Item_TisUIVertex_t1204258818_m3450355955_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisUIVertex_t1204258818_m3450355955(__this, p0, method) (( UIVertex_t1204258818 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisUIVertex_t1204258818_m3450355955_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Vector2>(System.Int32)
extern "C" Vector2_t2243707579 Array_InternalArray__get_Item_TisVector2_t2243707579_m2394947294_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisVector2_t2243707579_m2394947294(__this, p0, method) (( Vector2_t2243707579 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisVector2_t2243707579_m2394947294_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Vector3>(System.Int32)
extern "C" Vector3_t2243707580 Array_InternalArray__get_Item_TisVector3_t2243707580_m2841870745_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisVector3_t2243707580_m2841870745(__this, p0, method) (( Vector3_t2243707580 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisVector3_t2243707580_m2841870745_gshared)(__this, p0, method)
// !!0 System.Array::InternalArray__get_Item<UnityEngine.Vector4>(System.Int32)
extern "C" Vector4_t2243707581 Array_InternalArray__get_Item_TisVector4_t2243707581_m3866288892_gshared (Il2CppArray * __this, int32_t p0, const MethodInfo* method);
#define Array_InternalArray__get_Item_TisVector4_t2243707581_m3866288892(__this, p0, method) (( Vector4_t2243707581 (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__get_Item_TisVector4_t2243707581_m3866288892_gshared)(__this, p0, method)
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Action`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
extern "C" void Action_1__ctor_m3072925129_gshared (Action_1_t3627374100 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method)
{
__this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer);
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Boolean>::Invoke(T)
extern "C" void Action_1_Invoke_m2319281225_gshared (Action_1_t3627374100 * __this, bool ___obj0, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
Action_1_Invoke_m2319281225((Action_1_t3627374100 *)__this->get_prev_9(),___obj0, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, bool ___obj0, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___obj0,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, bool ___obj0, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___obj0,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
// System.IAsyncResult System.Action`1<System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern Il2CppClass* Boolean_t3825574718_il2cpp_TypeInfo_var;
extern const uint32_t Action_1_BeginInvoke_m226849422_MetadataUsageId;
extern "C" Il2CppObject * Action_1_BeginInvoke_m226849422_gshared (Action_1_t3627374100 * __this, bool ___obj0, AsyncCallback_t163412349 * ___callback1, Il2CppObject * ___object2, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_1_BeginInvoke_m226849422_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[2] = {0};
__d_args[0] = Box(Boolean_t3825574718_il2cpp_TypeInfo_var, &___obj0);
return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback1, (Il2CppObject*)___object2);
}
// System.Void System.Action`1<System.Boolean>::EndInvoke(System.IAsyncResult)
extern "C" void Action_1_EndInvoke_m2990292511_gshared (Action_1_t3627374100 * __this, Il2CppObject * ___result0, const MethodInfo* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" void Action_1__ctor_m584977596_gshared (Action_1_t2491248677 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method)
{
__this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer);
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`1<System.Object>::Invoke(T)
extern "C" void Action_1_Invoke_m1684652980_gshared (Action_1_t2491248677 * __this, Il2CppObject * ___obj0, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
Action_1_Invoke_m1684652980((Action_1_t2491248677 *)__this->get_prev_9(),___obj0, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___obj0, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___obj0,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___obj0, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___obj0,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___obj0,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
// System.IAsyncResult System.Action`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * Action_1_BeginInvoke_m1305519803_gshared (Action_1_t2491248677 * __this, Il2CppObject * ___obj0, AsyncCallback_t163412349 * ___callback1, Il2CppObject * ___object2, const MethodInfo* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___obj0;
return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback1, (Il2CppObject*)___object2);
}
// System.Void System.Action`1<System.Object>::EndInvoke(System.IAsyncResult)
extern "C" void Action_1_EndInvoke_m2057605070_gshared (Action_1_t2491248677 * __this, Il2CppObject * ___result0, const MethodInfo* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
// System.Void System.Action`2<System.Boolean,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" void Action_2__ctor_m946854823_gshared (Action_2_t2525452034 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method)
{
__this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer);
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Boolean,System.Object>::Invoke(T1,T2)
extern "C" void Action_2_Invoke_m3842146412_gshared (Action_2_t2525452034 * __this, bool ___arg10, Il2CppObject * ___arg21, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
Action_2_Invoke_m3842146412((Action_2_t2525452034 *)__this->get_prev_9(),___arg10, ___arg21, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, bool ___arg10, Il2CppObject * ___arg21, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___arg10, ___arg21,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, bool ___arg10, Il2CppObject * ___arg21, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___arg10, ___arg21,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
// System.IAsyncResult System.Action`2<System.Boolean,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
extern Il2CppClass* Boolean_t3825574718_il2cpp_TypeInfo_var;
extern const uint32_t Action_2_BeginInvoke_m3907381723_MetadataUsageId;
extern "C" Il2CppObject * Action_2_BeginInvoke_m3907381723_gshared (Action_2_t2525452034 * __this, bool ___arg10, Il2CppObject * ___arg21, AsyncCallback_t163412349 * ___callback2, Il2CppObject * ___object3, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Action_2_BeginInvoke_m3907381723_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Boolean_t3825574718_il2cpp_TypeInfo_var, &___arg10);
__d_args[1] = ___arg21;
return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback2, (Il2CppObject*)___object3);
}
// System.Void System.Action`2<System.Boolean,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" void Action_2_EndInvoke_m2798191693_gshared (Action_2_t2525452034 * __this, Il2CppObject * ___result0, const MethodInfo* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
// System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" void Action_2__ctor_m3362391082_gshared (Action_2_t2572051853 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method)
{
__this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer);
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2)
extern "C" void Action_2_Invoke_m1501152969_gshared (Action_2_t2572051853 * __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
Action_2_Invoke_m1501152969((Action_2_t2572051853 *)__this->get_prev_9(),___arg10, ___arg21, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___arg10, ___arg21,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___arg10, ___arg21,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___arg21, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___arg10, ___arg21,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
// System.IAsyncResult System.Action`2<System.Object,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * Action_2_BeginInvoke_m1914861552_gshared (Action_2_t2572051853 * __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, AsyncCallback_t163412349 * ___callback2, Il2CppObject * ___object3, const MethodInfo* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___arg10;
__d_args[1] = ___arg21;
return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback2, (Il2CppObject*)___object3);
}
// System.Void System.Action`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" void Action_2_EndInvoke_m3956733788_gshared (Action_2_t2572051853 * __this, Il2CppObject * ___result0, const MethodInfo* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
// System.Void System.Action`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
extern "C" void Action_3__ctor_m2182397233_gshared (Action_3_t1115657183 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method)
{
__this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer);
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3)
extern "C" void Action_3_Invoke_m759875865_gshared (Action_3_t1115657183 * __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, Il2CppObject * ___arg32, const MethodInfo* method)
{
if(__this->get_prev_9() != NULL)
{
Action_3_Invoke_m759875865((Action_3_t1115657183 *)__this->get_prev_9(),___arg10, ___arg21, ___arg32, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0()));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0()));
if (__this->get_m_target_2() != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, Il2CppObject * ___arg32, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___arg10, ___arg21, ___arg32,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else if (__this->get_m_target_2() != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, Il2CppObject * ___arg32, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___arg10, ___arg21, ___arg32,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
else
{
typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ___arg21, Il2CppObject * ___arg32, const MethodInfo* method);
((FunctionPointerType)__this->get_method_ptr_0())(___arg10, ___arg21, ___arg32,(MethodInfo*)(__this->get_method_3().get_m_value_0()));
}
}
// System.IAsyncResult System.Action`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object)
extern "C" Il2CppObject * Action_3_BeginInvoke_m275697784_gshared (Action_3_t1115657183 * __this, Il2CppObject * ___arg10, Il2CppObject * ___arg21, Il2CppObject * ___arg32, AsyncCallback_t163412349 * ___callback3, Il2CppObject * ___object4, const MethodInfo* method)
{
void *__d_args[4] = {0};
__d_args[0] = ___arg10;
__d_args[1] = ___arg21;
__d_args[2] = ___arg32;
return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback3, (Il2CppObject*)___object4);
}
// System.Void System.Action`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult)
extern "C" void Action_3_EndInvoke_m4265906515_gshared (Action_3_t1115657183 * __this, Il2CppObject * ___result0, const MethodInfo* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::.ctor()
extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m1015489335_gshared (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * __this, const MethodInfo* method)
{
{
Object__ctor_m2551263788((Il2CppObject *)__this, /*hidden argument*/NULL);
return;
}
}
// T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::System.Collections.Generic.IEnumerator<T>.get_Current()
extern "C" Il2CppObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m1791706206_gshared (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = (Il2CppObject *)__this->get_U24current_2();
return L_0;
}
}
// System.Object System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m2580780957_gshared (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = (Il2CppObject *)__this->get_U24current_2();
return L_0;
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::MoveNext()
extern "C" bool U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m2489948797_gshared (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * __this, const MethodInfo* method)
{
uint32_t V_0 = 0;
bool V_1 = false;
{
int32_t L_0 = (int32_t)__this->get_U24PC_1();
V_0 = (uint32_t)L_0;
__this->set_U24PC_1((-1));
uint32_t L_1 = V_0;
if (L_1 == 0)
{
goto IL_0021;
}
if (L_1 == 1)
{
goto IL_0055;
}
}
{
goto IL_0082;
}
IL_0021:
{
__this->set_U3CiU3E__0_0(0);
goto IL_0063;
}
IL_002d:
{
ArrayReadOnlyList_1_t2471096271 * L_2 = (ArrayReadOnlyList_1_t2471096271 *)__this->get_U3CU3Ef__this_3();
ObjectU5BU5D_t3614634134* L_3 = (ObjectU5BU5D_t3614634134*)L_2->get_array_0();
int32_t L_4 = (int32_t)__this->get_U3CiU3E__0_0();
int32_t L_5 = L_4;
Il2CppObject * L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
__this->set_U24current_2(L_6);
__this->set_U24PC_1(1);
goto IL_0084;
}
IL_0055:
{
int32_t L_7 = (int32_t)__this->get_U3CiU3E__0_0();
__this->set_U3CiU3E__0_0(((int32_t)((int32_t)L_7+(int32_t)1)));
}
IL_0063:
{
int32_t L_8 = (int32_t)__this->get_U3CiU3E__0_0();
ArrayReadOnlyList_1_t2471096271 * L_9 = (ArrayReadOnlyList_1_t2471096271 *)__this->get_U3CU3Ef__this_3();
ObjectU5BU5D_t3614634134* L_10 = (ObjectU5BU5D_t3614634134*)L_9->get_array_0();
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length)))))))
{
goto IL_002d;
}
}
{
__this->set_U24PC_1((-1));
}
IL_0082:
{
return (bool)0;
}
IL_0084:
{
return (bool)1;
}
// Dead block : IL_0086: ldloc.1
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::Dispose()
extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m1859988746_gshared (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * __this, const MethodInfo* method)
{
{
__this->set_U24PC_1((-1));
return;
}
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Object>::Reset()
extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var;
extern const uint32_t U3CGetEnumeratorU3Ec__Iterator0_Reset_m2980566576_MetadataUsageId;
extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m2980566576_gshared (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ec__Iterator0_Reset_m2980566576_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::.ctor()
extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m1942816078_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * __this, const MethodInfo* method)
{
{
Object__ctor_m2551263788((Il2CppObject *)__this, /*hidden argument*/NULL);
return;
}
}
// T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IEnumerator<T>.get_Current()
extern "C" CustomAttributeNamedArgument_t94157543 U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m285299945_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * __this, const MethodInfo* method)
{
{
CustomAttributeNamedArgument_t94157543 L_0 = (CustomAttributeNamedArgument_t94157543 )__this->get_U24current_2();
return L_0;
}
}
// System.Object System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m480171694_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * __this, const MethodInfo* method)
{
{
CustomAttributeNamedArgument_t94157543 L_0 = (CustomAttributeNamedArgument_t94157543 )__this->get_U24current_2();
CustomAttributeNamedArgument_t94157543 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0), &L_1);
return L_2;
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::MoveNext()
extern "C" bool U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m949306872_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * __this, const MethodInfo* method)
{
uint32_t V_0 = 0;
bool V_1 = false;
{
int32_t L_0 = (int32_t)__this->get_U24PC_1();
V_0 = (uint32_t)L_0;
__this->set_U24PC_1((-1));
uint32_t L_1 = V_0;
if (L_1 == 0)
{
goto IL_0021;
}
if (L_1 == 1)
{
goto IL_0055;
}
}
{
goto IL_0082;
}
IL_0021:
{
__this->set_U3CiU3E__0_0(0);
goto IL_0063;
}
IL_002d:
{
ArrayReadOnlyList_1_t4170771815 * L_2 = (ArrayReadOnlyList_1_t4170771815 *)__this->get_U3CU3Ef__this_3();
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_3 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)L_2->get_array_0();
int32_t L_4 = (int32_t)__this->get_U3CiU3E__0_0();
int32_t L_5 = L_4;
CustomAttributeNamedArgument_t94157543 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
__this->set_U24current_2(L_6);
__this->set_U24PC_1(1);
goto IL_0084;
}
IL_0055:
{
int32_t L_7 = (int32_t)__this->get_U3CiU3E__0_0();
__this->set_U3CiU3E__0_0(((int32_t)((int32_t)L_7+(int32_t)1)));
}
IL_0063:
{
int32_t L_8 = (int32_t)__this->get_U3CiU3E__0_0();
ArrayReadOnlyList_1_t4170771815 * L_9 = (ArrayReadOnlyList_1_t4170771815 *)__this->get_U3CU3Ef__this_3();
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_10 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)L_9->get_array_0();
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length)))))))
{
goto IL_002d;
}
}
{
__this->set_U24PC_1((-1));
}
IL_0082:
{
return (bool)0;
}
IL_0084:
{
return (bool)1;
}
// Dead block : IL_0086: ldloc.1
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::Dispose()
extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m2403602883_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * __this, const MethodInfo* method)
{
{
__this->set_U24PC_1((-1));
return;
}
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeNamedArgument>::Reset()
extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var;
extern const uint32_t U3CGetEnumeratorU3Ec__Iterator0_Reset_m194260881_MetadataUsageId;
extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m194260881_gshared (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ec__Iterator0_Reset_m194260881_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::.ctor()
extern "C" void U3CGetEnumeratorU3Ec__Iterator0__ctor_m409316647_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * __this, const MethodInfo* method)
{
{
Object__ctor_m2551263788((Il2CppObject *)__this, /*hidden argument*/NULL);
return;
}
}
// T System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IEnumerator<T>.get_Current()
extern "C" CustomAttributeTypedArgument_t1498197914 U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m988222504_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * __this, const MethodInfo* method)
{
{
CustomAttributeTypedArgument_t1498197914 L_0 = (CustomAttributeTypedArgument_t1498197914 )__this->get_U24current_2();
return L_0;
}
}
// System.Object System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m2332089385_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * __this, const MethodInfo* method)
{
{
CustomAttributeTypedArgument_t1498197914 L_0 = (CustomAttributeTypedArgument_t1498197914 )__this->get_U24current_2();
CustomAttributeTypedArgument_t1498197914 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 0), &L_1);
return L_2;
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::MoveNext()
extern "C" bool U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m692741405_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * __this, const MethodInfo* method)
{
uint32_t V_0 = 0;
bool V_1 = false;
{
int32_t L_0 = (int32_t)__this->get_U24PC_1();
V_0 = (uint32_t)L_0;
__this->set_U24PC_1((-1));
uint32_t L_1 = V_0;
if (L_1 == 0)
{
goto IL_0021;
}
if (L_1 == 1)
{
goto IL_0055;
}
}
{
goto IL_0082;
}
IL_0021:
{
__this->set_U3CiU3E__0_0(0);
goto IL_0063;
}
IL_002d:
{
ArrayReadOnlyList_1_t1279844890 * L_2 = (ArrayReadOnlyList_1_t1279844890 *)__this->get_U3CU3Ef__this_3();
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_3 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)L_2->get_array_0();
int32_t L_4 = (int32_t)__this->get_U3CiU3E__0_0();
int32_t L_5 = L_4;
CustomAttributeTypedArgument_t1498197914 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
__this->set_U24current_2(L_6);
__this->set_U24PC_1(1);
goto IL_0084;
}
IL_0055:
{
int32_t L_7 = (int32_t)__this->get_U3CiU3E__0_0();
__this->set_U3CiU3E__0_0(((int32_t)((int32_t)L_7+(int32_t)1)));
}
IL_0063:
{
int32_t L_8 = (int32_t)__this->get_U3CiU3E__0_0();
ArrayReadOnlyList_1_t1279844890 * L_9 = (ArrayReadOnlyList_1_t1279844890 *)__this->get_U3CU3Ef__this_3();
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_10 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)L_9->get_array_0();
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length)))))))
{
goto IL_002d;
}
}
{
__this->set_U24PC_1((-1));
}
IL_0082:
{
return (bool)0;
}
IL_0084:
{
return (bool)1;
}
// Dead block : IL_0086: ldloc.1
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::Dispose()
extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Dispose_m2201090542_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * __this, const MethodInfo* method)
{
{
__this->set_U24PC_1((-1));
return;
}
}
// System.Void System.Array/ArrayReadOnlyList`1/<GetEnumerator>c__Iterator0<System.Reflection.CustomAttributeTypedArgument>::Reset()
extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var;
extern const uint32_t U3CGetEnumeratorU3Ec__Iterator0_Reset_m1125157804_MetadataUsageId;
extern "C" void U3CGetEnumeratorU3Ec__Iterator0_Reset_m1125157804_gshared (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ec__Iterator0_Reset_m1125157804_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::.ctor(T[])
extern "C" void ArrayReadOnlyList_1__ctor_m2430810679_gshared (ArrayReadOnlyList_1_t2471096271 * __this, ObjectU5BU5D_t3614634134* ___array0, const MethodInfo* method)
{
{
Object__ctor_m2551263788((Il2CppObject *)__this, /*hidden argument*/NULL);
ObjectU5BU5D_t3614634134* L_0 = ___array0;
__this->set_array_0(L_0);
return;
}
}
// System.Collections.IEnumerator System.Array/ArrayReadOnlyList`1<System.Object>::System.Collections.IEnumerable.GetEnumerator()
extern "C" Il2CppObject * ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m2780765696_gshared (ArrayReadOnlyList_1_t2471096271 * __this, const MethodInfo* method)
{
{
Il2CppObject* L_0 = (( Il2CppObject* (*) (ArrayReadOnlyList_1_t2471096271 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((ArrayReadOnlyList_1_t2471096271 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return L_0;
}
}
// T System.Array/ArrayReadOnlyList`1<System.Object>::get_Item(System.Int32)
extern Il2CppClass* ArgumentOutOfRangeException_t279959794_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1460639766;
extern const uint32_t ArrayReadOnlyList_1_get_Item_m176001975_MetadataUsageId;
extern "C" Il2CppObject * ArrayReadOnlyList_1_get_Item_m176001975_gshared (ArrayReadOnlyList_1_t2471096271 * __this, int32_t ___index0, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_get_Item_m176001975_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
ObjectU5BU5D_t3614634134* L_1 = (ObjectU5BU5D_t3614634134*)__this->get_array_0();
if ((!(((uint32_t)L_0) >= ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length))))))))
{
goto IL_0019;
}
}
{
ArgumentOutOfRangeException_t279959794 * L_2 = (ArgumentOutOfRangeException_t279959794 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t279959794_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m1595007065(L_2, (String_t*)_stringLiteral1460639766, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2);
}
IL_0019:
{
ObjectU5BU5D_t3614634134* L_3 = (ObjectU5BU5D_t3614634134*)__this->get_array_0();
int32_t L_4 = ___index0;
int32_t L_5 = L_4;
Il2CppObject * L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
return L_6;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::set_Item(System.Int32,T)
extern "C" void ArrayReadOnlyList_1_set_Item_m314687476_gshared (ArrayReadOnlyList_1_t2471096271 * __this, int32_t ___index0, Il2CppObject * ___value1, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Int32 System.Array/ArrayReadOnlyList`1<System.Object>::get_Count()
extern "C" int32_t ArrayReadOnlyList_1_get_Count_m962317777_gshared (ArrayReadOnlyList_1_t2471096271 * __this, const MethodInfo* method)
{
{
ObjectU5BU5D_t3614634134* L_0 = (ObjectU5BU5D_t3614634134*)__this->get_array_0();
return (((int32_t)((int32_t)(((Il2CppArray *)L_0)->max_length))));
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Object>::get_IsReadOnly()
extern "C" bool ArrayReadOnlyList_1_get_IsReadOnly_m2717922212_gshared (ArrayReadOnlyList_1_t2471096271 * __this, const MethodInfo* method)
{
{
return (bool)1;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::Add(T)
extern "C" void ArrayReadOnlyList_1_Add_m3970067462_gshared (ArrayReadOnlyList_1_t2471096271 * __this, Il2CppObject * ___item0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::Clear()
extern "C" void ArrayReadOnlyList_1_Clear_m2539474626_gshared (ArrayReadOnlyList_1_t2471096271 * __this, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Object>::Contains(T)
extern "C" bool ArrayReadOnlyList_1_Contains_m1266627404_gshared (ArrayReadOnlyList_1_t2471096271 * __this, Il2CppObject * ___item0, const MethodInfo* method)
{
{
ObjectU5BU5D_t3614634134* L_0 = (ObjectU5BU5D_t3614634134*)__this->get_array_0();
Il2CppObject * L_1 = ___item0;
int32_t L_2 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t3614634134*, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t3614634134*)L_0, (Il2CppObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::CopyTo(T[],System.Int32)
extern "C" void ArrayReadOnlyList_1_CopyTo_m816115094_gshared (ArrayReadOnlyList_1_t2471096271 * __this, ObjectU5BU5D_t3614634134* ___array0, int32_t ___index1, const MethodInfo* method)
{
{
ObjectU5BU5D_t3614634134* L_0 = (ObjectU5BU5D_t3614634134*)__this->get_array_0();
ObjectU5BU5D_t3614634134* L_1 = ___array0;
int32_t L_2 = ___index1;
Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_0, (Il2CppArray *)(Il2CppArray *)L_1, (int32_t)L_2, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Array/ArrayReadOnlyList`1<System.Object>::GetEnumerator()
extern "C" Il2CppObject* ArrayReadOnlyList_1_GetEnumerator_m1078352793_gshared (ArrayReadOnlyList_1_t2471096271 * __this, const MethodInfo* method)
{
U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * V_0 = NULL;
{
U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * L_0 = (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4));
(( void (*) (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
V_0 = (U3CGetEnumeratorU3Ec__Iterator0_t2445488949 *)L_0;
U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * L_1 = V_0;
L_1->set_U3CU3Ef__this_3(__this);
U3CGetEnumeratorU3Ec__Iterator0_t2445488949 * L_2 = V_0;
return L_2;
}
}
// System.Int32 System.Array/ArrayReadOnlyList`1<System.Object>::IndexOf(T)
extern "C" int32_t ArrayReadOnlyList_1_IndexOf_m1537228832_gshared (ArrayReadOnlyList_1_t2471096271 * __this, Il2CppObject * ___item0, const MethodInfo* method)
{
{
ObjectU5BU5D_t3614634134* L_0 = (ObjectU5BU5D_t3614634134*)__this->get_array_0();
Il2CppObject * L_1 = ___item0;
int32_t L_2 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t3614634134*, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t3614634134*)L_0, (Il2CppObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::Insert(System.Int32,T)
extern "C" void ArrayReadOnlyList_1_Insert_m1136669199_gshared (ArrayReadOnlyList_1_t2471096271 * __this, int32_t ___index0, Il2CppObject * ___item1, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Object>::Remove(T)
extern "C" bool ArrayReadOnlyList_1_Remove_m1875216835_gshared (ArrayReadOnlyList_1_t2471096271 * __this, Il2CppObject * ___item0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Object>::RemoveAt(System.Int32)
extern "C" void ArrayReadOnlyList_1_RemoveAt_m2701218731_gshared (ArrayReadOnlyList_1_t2471096271 * __this, int32_t ___index0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Exception System.Array/ArrayReadOnlyList`1<System.Object>::ReadOnlyError()
extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2772642243;
extern const uint32_t ArrayReadOnlyList_1_ReadOnlyError_m2289309720_MetadataUsageId;
extern "C" Exception_t1927440687 * ArrayReadOnlyList_1_ReadOnlyError_m2289309720_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_ReadOnlyError_m2289309720_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m836173213(L_0, (String_t*)_stringLiteral2772642243, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(T[])
extern "C" void ArrayReadOnlyList_1__ctor_m691892240_gshared (ArrayReadOnlyList_1_t4170771815 * __this, CustomAttributeNamedArgumentU5BU5D_t3304067486* ___array0, const MethodInfo* method)
{
{
Object__ctor_m2551263788((Il2CppObject *)__this, /*hidden argument*/NULL);
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_0 = ___array0;
__this->set_array_0(L_0);
return;
}
}
// System.Collections.IEnumerator System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerable.GetEnumerator()
extern "C" Il2CppObject * ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3039869667_gshared (ArrayReadOnlyList_1_t4170771815 * __this, const MethodInfo* method)
{
{
Il2CppObject* L_0 = (( Il2CppObject* (*) (ArrayReadOnlyList_1_t4170771815 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((ArrayReadOnlyList_1_t4170771815 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return L_0;
}
}
// T System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32)
extern Il2CppClass* ArgumentOutOfRangeException_t279959794_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1460639766;
extern const uint32_t ArrayReadOnlyList_1_get_Item_m2694472846_MetadataUsageId;
extern "C" CustomAttributeNamedArgument_t94157543 ArrayReadOnlyList_1_get_Item_m2694472846_gshared (ArrayReadOnlyList_1_t4170771815 * __this, int32_t ___index0, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_get_Item_m2694472846_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_1 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)__this->get_array_0();
if ((!(((uint32_t)L_0) >= ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length))))))))
{
goto IL_0019;
}
}
{
ArgumentOutOfRangeException_t279959794 * L_2 = (ArgumentOutOfRangeException_t279959794 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t279959794_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m1595007065(L_2, (String_t*)_stringLiteral1460639766, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2);
}
IL_0019:
{
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_3 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)__this->get_array_0();
int32_t L_4 = ___index0;
int32_t L_5 = L_4;
CustomAttributeNamedArgument_t94157543 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
return L_6;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::set_Item(System.Int32,T)
extern "C" void ArrayReadOnlyList_1_set_Item_m3536854615_gshared (ArrayReadOnlyList_1_t4170771815 * __this, int32_t ___index0, CustomAttributeNamedArgument_t94157543 ___value1, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::get_Count()
extern "C" int32_t ArrayReadOnlyList_1_get_Count_m2661355086_gshared (ArrayReadOnlyList_1_t4170771815 * __this, const MethodInfo* method)
{
{
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)__this->get_array_0();
return (((int32_t)((int32_t)(((Il2CppArray *)L_0)->max_length))));
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::get_IsReadOnly()
extern "C" bool ArrayReadOnlyList_1_get_IsReadOnly_m2189922207_gshared (ArrayReadOnlyList_1_t4170771815 * __this, const MethodInfo* method)
{
{
return (bool)1;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Add(T)
extern "C" void ArrayReadOnlyList_1_Add_m961024239_gshared (ArrayReadOnlyList_1_t4170771815 * __this, CustomAttributeNamedArgument_t94157543 ___item0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Clear()
extern "C" void ArrayReadOnlyList_1_Clear_m1565299387_gshared (ArrayReadOnlyList_1_t4170771815 * __this, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T)
extern "C" bool ArrayReadOnlyList_1_Contains_m1269788217_gshared (ArrayReadOnlyList_1_t4170771815 * __this, CustomAttributeNamedArgument_t94157543 ___item0, const MethodInfo* method)
{
{
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)__this->get_array_0();
CustomAttributeNamedArgument_t94157543 L_1 = ___item0;
int32_t L_2 = (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3304067486*, CustomAttributeNamedArgument_t94157543 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeNamedArgumentU5BU5D_t3304067486*)L_0, (CustomAttributeNamedArgument_t94157543 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32)
extern "C" void ArrayReadOnlyList_1_CopyTo_m4003949395_gshared (ArrayReadOnlyList_1_t4170771815 * __this, CustomAttributeNamedArgumentU5BU5D_t3304067486* ___array0, int32_t ___index1, const MethodInfo* method)
{
{
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)__this->get_array_0();
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_1 = ___array0;
int32_t L_2 = ___index1;
Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_0, (Il2CppArray *)(Il2CppArray *)L_1, (int32_t)L_2, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator()
extern "C" Il2CppObject* ArrayReadOnlyList_1_GetEnumerator_m634288642_gshared (ArrayReadOnlyList_1_t4170771815 * __this, const MethodInfo* method)
{
U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * V_0 = NULL;
{
U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * L_0 = (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4));
(( void (*) (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
V_0 = (U3CGetEnumeratorU3Ec__Iterator0_t4145164493 *)L_0;
U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * L_1 = V_0;
L_1->set_U3CU3Ef__this_3(__this);
U3CGetEnumeratorU3Ec__Iterator0_t4145164493 * L_2 = V_0;
return L_2;
}
}
// System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T)
extern "C" int32_t ArrayReadOnlyList_1_IndexOf_m1220844927_gshared (ArrayReadOnlyList_1_t4170771815 * __this, CustomAttributeNamedArgument_t94157543 ___item0, const MethodInfo* method)
{
{
CustomAttributeNamedArgumentU5BU5D_t3304067486* L_0 = (CustomAttributeNamedArgumentU5BU5D_t3304067486*)__this->get_array_0();
CustomAttributeNamedArgument_t94157543 L_1 = ___item0;
int32_t L_2 = (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3304067486*, CustomAttributeNamedArgument_t94157543 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeNamedArgumentU5BU5D_t3304067486*)L_0, (CustomAttributeNamedArgument_t94157543 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Insert(System.Int32,T)
extern "C" void ArrayReadOnlyList_1_Insert_m2938723476_gshared (ArrayReadOnlyList_1_t4170771815 * __this, int32_t ___index0, CustomAttributeNamedArgument_t94157543 ___item1, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::Remove(T)
extern "C" bool ArrayReadOnlyList_1_Remove_m2325516426_gshared (ArrayReadOnlyList_1_t4170771815 * __this, CustomAttributeNamedArgument_t94157543 ___item0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::RemoveAt(System.Int32)
extern "C" void ArrayReadOnlyList_1_RemoveAt_m4104441984_gshared (ArrayReadOnlyList_1_t4170771815 * __this, int32_t ___index0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Exception System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeNamedArgument>::ReadOnlyError()
extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2772642243;
extern const uint32_t ArrayReadOnlyList_1_ReadOnlyError_m2160816107_MetadataUsageId;
extern "C" Exception_t1927440687 * ArrayReadOnlyList_1_ReadOnlyError_m2160816107_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_ReadOnlyError_m2160816107_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m836173213(L_0, (String_t*)_stringLiteral2772642243, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(T[])
extern "C" void ArrayReadOnlyList_1__ctor_m3778554727_gshared (ArrayReadOnlyList_1_t1279844890 * __this, CustomAttributeTypedArgumentU5BU5D_t1075686591* ___array0, const MethodInfo* method)
{
{
Object__ctor_m2551263788((Il2CppObject *)__this, /*hidden argument*/NULL);
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_0 = ___array0;
__this->set_array_0(L_0);
return;
}
}
// System.Collections.IEnumerator System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerable.GetEnumerator()
extern "C" Il2CppObject * ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3194679940_gshared (ArrayReadOnlyList_1_t1279844890 * __this, const MethodInfo* method)
{
{
Il2CppObject* L_0 = (( Il2CppObject* (*) (ArrayReadOnlyList_1_t1279844890 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((ArrayReadOnlyList_1_t1279844890 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return L_0;
}
}
// T System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32)
extern Il2CppClass* ArgumentOutOfRangeException_t279959794_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1460639766;
extern const uint32_t ArrayReadOnlyList_1_get_Item_m2045253203_MetadataUsageId;
extern "C" CustomAttributeTypedArgument_t1498197914 ArrayReadOnlyList_1_get_Item_m2045253203_gshared (ArrayReadOnlyList_1_t1279844890 * __this, int32_t ___index0, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_get_Item_m2045253203_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_1 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)__this->get_array_0();
if ((!(((uint32_t)L_0) >= ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length))))))))
{
goto IL_0019;
}
}
{
ArgumentOutOfRangeException_t279959794 * L_2 = (ArgumentOutOfRangeException_t279959794 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t279959794_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m1595007065(L_2, (String_t*)_stringLiteral1460639766, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2);
}
IL_0019:
{
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_3 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)__this->get_array_0();
int32_t L_4 = ___index0;
int32_t L_5 = L_4;
CustomAttributeTypedArgument_t1498197914 L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
return L_6;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::set_Item(System.Int32,T)
extern "C" void ArrayReadOnlyList_1_set_Item_m1476592004_gshared (ArrayReadOnlyList_1_t1279844890 * __this, int32_t ___index0, CustomAttributeTypedArgument_t1498197914 ___value1, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::get_Count()
extern "C" int32_t ArrayReadOnlyList_1_get_Count_m2272682593_gshared (ArrayReadOnlyList_1_t1279844890 * __this, const MethodInfo* method)
{
{
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)__this->get_array_0();
return (((int32_t)((int32_t)(((Il2CppArray *)L_0)->max_length))));
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::get_IsReadOnly()
extern "C" bool ArrayReadOnlyList_1_get_IsReadOnly_m745254596_gshared (ArrayReadOnlyList_1_t1279844890 * __this, const MethodInfo* method)
{
{
return (bool)1;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Add(T)
extern "C" void ArrayReadOnlyList_1_Add_m592463462_gshared (ArrayReadOnlyList_1_t1279844890 * __this, CustomAttributeTypedArgument_t1498197914 ___item0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Clear()
extern "C" void ArrayReadOnlyList_1_Clear_m638842154_gshared (ArrayReadOnlyList_1_t1279844890 * __this, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T)
extern "C" bool ArrayReadOnlyList_1_Contains_m1984901664_gshared (ArrayReadOnlyList_1_t1279844890 * __this, CustomAttributeTypedArgument_t1498197914 ___item0, const MethodInfo* method)
{
{
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)__this->get_array_0();
CustomAttributeTypedArgument_t1498197914 L_1 = ___item0;
int32_t L_2 = (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1075686591*, CustomAttributeTypedArgument_t1498197914 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeTypedArgumentU5BU5D_t1075686591*)L_0, (CustomAttributeTypedArgument_t1498197914 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32)
extern "C" void ArrayReadOnlyList_1_CopyTo_m3708038182_gshared (ArrayReadOnlyList_1_t1279844890 * __this, CustomAttributeTypedArgumentU5BU5D_t1075686591* ___array0, int32_t ___index1, const MethodInfo* method)
{
{
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)__this->get_array_0();
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_1 = ___array0;
int32_t L_2 = ___index1;
Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_0, (Il2CppArray *)(Il2CppArray *)L_1, (int32_t)L_2, /*hidden argument*/NULL);
return;
}
}
// System.Collections.Generic.IEnumerator`1<T> System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator()
extern "C" Il2CppObject* ArrayReadOnlyList_1_GetEnumerator_m3821693737_gshared (ArrayReadOnlyList_1_t1279844890 * __this, const MethodInfo* method)
{
U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * V_0 = NULL;
{
U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * L_0 = (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 4));
(( void (*) (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 5));
V_0 = (U3CGetEnumeratorU3Ec__Iterator0_t1254237568 *)L_0;
U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * L_1 = V_0;
L_1->set_U3CU3Ef__this_3(__this);
U3CGetEnumeratorU3Ec__Iterator0_t1254237568 * L_2 = V_0;
return L_2;
}
}
// System.Int32 System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T)
extern "C" int32_t ArrayReadOnlyList_1_IndexOf_m1809425308_gshared (ArrayReadOnlyList_1_t1279844890 * __this, CustomAttributeTypedArgument_t1498197914 ___item0, const MethodInfo* method)
{
{
CustomAttributeTypedArgumentU5BU5D_t1075686591* L_0 = (CustomAttributeTypedArgumentU5BU5D_t1075686591*)__this->get_array_0();
CustomAttributeTypedArgument_t1498197914 L_1 = ___item0;
int32_t L_2 = (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1075686591*, CustomAttributeTypedArgument_t1498197914 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3)->methodPointer)(NULL /*static, unused*/, (CustomAttributeTypedArgumentU5BU5D_t1075686591*)L_0, (CustomAttributeTypedArgument_t1498197914 )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 3));
return L_2;
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Insert(System.Int32,T)
extern "C" void ArrayReadOnlyList_1_Insert_m503707439_gshared (ArrayReadOnlyList_1_t1279844890 * __this, int32_t ___index0, CustomAttributeTypedArgument_t1498197914 ___item1, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Boolean System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::Remove(T)
extern "C" bool ArrayReadOnlyList_1_Remove_m632503387_gshared (ArrayReadOnlyList_1_t1279844890 * __this, CustomAttributeTypedArgument_t1498197914 ___item0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Void System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::RemoveAt(System.Int32)
extern "C" void ArrayReadOnlyList_1_RemoveAt_m2270349795_gshared (ArrayReadOnlyList_1_t1279844890 * __this, int32_t ___index0, const MethodInfo* method)
{
{
Exception_t1927440687 * L_0 = (( Exception_t1927440687 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 1));
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0);
}
}
// System.Exception System.Array/ArrayReadOnlyList`1<System.Reflection.CustomAttributeTypedArgument>::ReadOnlyError()
extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral2772642243;
extern const uint32_t ArrayReadOnlyList_1_ReadOnlyError_m2158247090_MetadataUsageId;
extern "C" Exception_t1927440687 * ArrayReadOnlyList_1_ReadOnlyError_m2158247090_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayReadOnlyList_1_ReadOnlyError_m2158247090_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m836173213(L_0, (String_t*)_stringLiteral2772642243, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2265739932_gshared (InternalEnumerator_1_t2870158877 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2265739932_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2870158877 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2870158877 *>(__this + 1);
InternalEnumerator_1__ctor_m2265739932(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1027964204_gshared (InternalEnumerator_1_t2870158877 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1027964204_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2870158877 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2870158877 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1027964204(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m429673344_gshared (InternalEnumerator_1_t2870158877 * __this, const MethodInfo* method)
{
{
TableRange_t2011406615 L_0 = InternalEnumerator_1_get_Current_m2151132603((InternalEnumerator_1_t2870158877 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TableRange_t2011406615 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m429673344_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2870158877 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2870158877 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m429673344(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1050822571_gshared (InternalEnumerator_1_t2870158877 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1050822571_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2870158877 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2870158877 *>(__this + 1);
InternalEnumerator_1_Dispose_m1050822571(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1979432532_gshared (InternalEnumerator_1_t2870158877 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1979432532_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2870158877 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2870158877 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1979432532(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2151132603_MetadataUsageId;
extern "C" TableRange_t2011406615 InternalEnumerator_1_get_Current_m2151132603_gshared (InternalEnumerator_1_t2870158877 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2151132603_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TableRange_t2011406615 L_8 = (( TableRange_t2011406615 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TableRange_t2011406615 InternalEnumerator_1_get_Current_m2151132603_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2870158877 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2870158877 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2151132603(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2111763266_gshared (InternalEnumerator_1_t565169432 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2111763266_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t565169432 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t565169432 *>(__this + 1);
InternalEnumerator_1__ctor_m2111763266(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181480250_gshared (InternalEnumerator_1_t565169432 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181480250_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t565169432 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t565169432 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181480250(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1335784110_gshared (InternalEnumerator_1_t565169432 * __this, const MethodInfo* method)
{
{
int32_t L_0 = InternalEnumerator_1_get_Current_m3847951219((InternalEnumerator_1_t565169432 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int32_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1335784110_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t565169432 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t565169432 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1335784110(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2038682075_gshared (InternalEnumerator_1_t565169432 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2038682075_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t565169432 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t565169432 *>(__this + 1);
InternalEnumerator_1_Dispose_m2038682075(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1182905290_gshared (InternalEnumerator_1_t565169432 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1182905290_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t565169432 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t565169432 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1182905290(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3847951219_MetadataUsageId;
extern "C" int32_t InternalEnumerator_1_get_Current_m3847951219_gshared (InternalEnumerator_1_t565169432 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3847951219_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int32_t L_8 = (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int32_t InternalEnumerator_1_get_Current_m3847951219_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t565169432 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t565169432 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3847951219(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m4119890600_gshared (InternalEnumerator_1_t389359684 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m4119890600_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t389359684 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t389359684 *>(__this + 1);
InternalEnumerator_1__ctor_m4119890600(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3731327620_gshared (InternalEnumerator_1_t389359684 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3731327620_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t389359684 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t389359684 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3731327620(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1931522460_gshared (InternalEnumerator_1_t389359684 * __this, const MethodInfo* method)
{
{
bool L_0 = InternalEnumerator_1_get_Current_m1943362081((InternalEnumerator_1_t389359684 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
bool L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1931522460_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t389359684 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t389359684 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1931522460(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1640363425_gshared (InternalEnumerator_1_t389359684 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1640363425_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t389359684 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t389359684 *>(__this + 1);
InternalEnumerator_1_Dispose_m1640363425(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1595676968_gshared (InternalEnumerator_1_t389359684 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1595676968_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t389359684 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t389359684 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1595676968(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Boolean>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1943362081_MetadataUsageId;
extern "C" bool InternalEnumerator_1_get_Current_m1943362081_gshared (InternalEnumerator_1_t389359684 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1943362081_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
bool L_8 = (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" bool InternalEnumerator_1_get_Current_m1943362081_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t389359684 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t389359684 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1943362081(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3043733612_gshared (InternalEnumerator_1_t246889402 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3043733612_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t246889402 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246889402 *>(__this + 1);
InternalEnumerator_1__ctor_m3043733612(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3647617676_gshared (InternalEnumerator_1_t246889402 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3647617676_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t246889402 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246889402 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3647617676(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164294642_gshared (InternalEnumerator_1_t246889402 * __this, const MethodInfo* method)
{
{
uint8_t L_0 = InternalEnumerator_1_get_Current_m4154615771((InternalEnumerator_1_t246889402 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
uint8_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164294642_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t246889402 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246889402 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164294642(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1148506519_gshared (InternalEnumerator_1_t246889402 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1148506519_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t246889402 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246889402 *>(__this + 1);
InternalEnumerator_1_Dispose_m1148506519(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2651026500_gshared (InternalEnumerator_1_t246889402 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2651026500_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t246889402 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246889402 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2651026500(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Byte>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4154615771_MetadataUsageId;
extern "C" uint8_t InternalEnumerator_1_get_Current_m4154615771_gshared (InternalEnumerator_1_t246889402 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4154615771_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
uint8_t L_8 = (( uint8_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" uint8_t InternalEnumerator_1_get_Current_m4154615771_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t246889402 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t246889402 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4154615771(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m960275522_gshared (InternalEnumerator_1_t18266304 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m960275522_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t18266304 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t18266304 *>(__this + 1);
InternalEnumerator_1__ctor_m960275522(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2729797654_gshared (InternalEnumerator_1_t18266304 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2729797654_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t18266304 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t18266304 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2729797654(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3583252352_gshared (InternalEnumerator_1_t18266304 * __this, const MethodInfo* method)
{
{
Il2CppChar L_0 = InternalEnumerator_1_get_Current_m2960188445((InternalEnumerator_1_t18266304 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Il2CppChar L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3583252352_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t18266304 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t18266304 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3583252352(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m811081805_gshared (InternalEnumerator_1_t18266304 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m811081805_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t18266304 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t18266304 *>(__this + 1);
InternalEnumerator_1_Dispose_m811081805(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m412569442_gshared (InternalEnumerator_1_t18266304 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m412569442_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t18266304 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t18266304 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m412569442(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Char>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2960188445_MetadataUsageId;
extern "C" Il2CppChar InternalEnumerator_1_get_Current_m2960188445_gshared (InternalEnumerator_1_t18266304 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2960188445_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Il2CppChar L_8 = (( Il2CppChar (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Il2CppChar InternalEnumerator_1_get_Current_m2960188445_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t18266304 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t18266304 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2960188445(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m675130983_gshared (InternalEnumerator_1_t3907627660 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m675130983_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3907627660 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3907627660 *>(__this + 1);
InternalEnumerator_1__ctor_m675130983(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4211243679_gshared (InternalEnumerator_1_t3907627660 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4211243679_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3907627660 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3907627660 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4211243679(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3125080595_gshared (InternalEnumerator_1_t3907627660 * __this, const MethodInfo* method)
{
{
DictionaryEntry_t3048875398 L_0 = InternalEnumerator_1_get_Current_m2351441486((InternalEnumerator_1_t3907627660 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
DictionaryEntry_t3048875398 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3125080595_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3907627660 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3907627660 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3125080595(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3597982928_gshared (InternalEnumerator_1_t3907627660 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3597982928_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3907627660 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3907627660 *>(__this + 1);
InternalEnumerator_1_Dispose_m3597982928(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1636015243_gshared (InternalEnumerator_1_t3907627660 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1636015243_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3907627660 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3907627660 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1636015243(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2351441486_MetadataUsageId;
extern "C" DictionaryEntry_t3048875398 InternalEnumerator_1_get_Current_m2351441486_gshared (InternalEnumerator_1_t3907627660 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2351441486_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
DictionaryEntry_t3048875398 L_8 = (( DictionaryEntry_t3048875398 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" DictionaryEntry_t3048875398 InternalEnumerator_1_get_Current_m2351441486_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3907627660 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3907627660 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2351441486(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2688327768_gshared (InternalEnumerator_1_t1723885533 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2688327768_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1723885533 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1723885533 *>(__this + 1);
InternalEnumerator_1__ctor_m2688327768(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4216238272_gshared (InternalEnumerator_1_t1723885533 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4216238272_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1723885533 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1723885533 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4216238272(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3680087284_gshared (InternalEnumerator_1_t1723885533 * __this, const MethodInfo* method)
{
{
Link_t865133271 L_0 = InternalEnumerator_1_get_Current_m1855333455((InternalEnumerator_1_t1723885533 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Link_t865133271 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3680087284_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1723885533 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1723885533 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3680087284(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1064404287_gshared (InternalEnumerator_1_t1723885533 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1064404287_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1723885533 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1723885533 *>(__this + 1);
InternalEnumerator_1_Dispose_m1064404287(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3585886944_gshared (InternalEnumerator_1_t1723885533 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3585886944_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1723885533 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1723885533 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3585886944(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1855333455_MetadataUsageId;
extern "C" Link_t865133271 InternalEnumerator_1_get_Current_m1855333455_gshared (InternalEnumerator_1_t1723885533 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1855333455_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Link_t865133271 L_8 = (( Link_t865133271 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Link_t865133271 InternalEnumerator_1_get_Current_m1855333455_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1723885533 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1723885533 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1855333455(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1202389214_gshared (InternalEnumerator_1_t1449497837 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1202389214_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1449497837 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1449497837 *>(__this + 1);
InternalEnumerator_1__ctor_m1202389214(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m102440378_gshared (InternalEnumerator_1_t1449497837 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m102440378_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1449497837 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1449497837 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m102440378(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2634994298_gshared (InternalEnumerator_1_t1449497837 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t590745575 L_0 = InternalEnumerator_1_get_Current_m2437461525((InternalEnumerator_1_t1449497837 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t590745575 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2634994298_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1449497837 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1449497837 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2634994298(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2422912205_gshared (InternalEnumerator_1_t1449497837 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2422912205_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1449497837 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1449497837 *>(__this + 1);
InternalEnumerator_1_Dispose_m2422912205(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2193615806_gshared (InternalEnumerator_1_t1449497837 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2193615806_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1449497837 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1449497837 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2193615806(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2437461525_MetadataUsageId;
extern "C" KeyValuePair_2_t590745575 InternalEnumerator_1_get_Current_m2437461525_gshared (InternalEnumerator_1_t1449497837 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2437461525_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t590745575 L_8 = (( KeyValuePair_2_t590745575 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t590745575 InternalEnumerator_1_get_Current_m2437461525_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1449497837 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1449497837 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2437461525(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1621661896_gshared (InternalEnumerator_1_t1078404457 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1621661896_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1078404457 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1078404457 *>(__this + 1);
InternalEnumerator_1__ctor_m1621661896(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2102813428_gshared (InternalEnumerator_1_t1078404457 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2102813428_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1078404457 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1078404457 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2102813428(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3923705506_gshared (InternalEnumerator_1_t1078404457 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t219652195 L_0 = InternalEnumerator_1_get_Current_m4009601197((InternalEnumerator_1_t1078404457 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t219652195 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3923705506_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1078404457 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1078404457 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3923705506(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2089072901_gshared (InternalEnumerator_1_t1078404457 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2089072901_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1078404457 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1078404457 *>(__this + 1);
InternalEnumerator_1_Dispose_m2089072901(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1601592872_gshared (InternalEnumerator_1_t1078404457 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1601592872_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1078404457 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1078404457 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1601592872(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4009601197_MetadataUsageId;
extern "C" KeyValuePair_2_t219652195 InternalEnumerator_1_get_Current_m4009601197_gshared (InternalEnumerator_1_t1078404457 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4009601197_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t219652195 L_8 = (( KeyValuePair_2_t219652195 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t219652195 InternalEnumerator_1_get_Current_m4009601197_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1078404457 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1078404457 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4009601197(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m971224554_gshared (InternalEnumerator_1_t3990767863 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m971224554_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3990767863 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3990767863 *>(__this + 1);
InternalEnumerator_1__ctor_m971224554(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2418489778_gshared (InternalEnumerator_1_t3990767863 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2418489778_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3990767863 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3990767863 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2418489778(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1125095150_gshared (InternalEnumerator_1_t3990767863 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t3132015601 L_0 = InternalEnumerator_1_get_Current_m3903656979((InternalEnumerator_1_t3990767863 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t3132015601 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1125095150_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3990767863 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3990767863 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1125095150(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2362056211_gshared (InternalEnumerator_1_t3990767863 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2362056211_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3990767863 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3990767863 *>(__this + 1);
InternalEnumerator_1_Dispose_m2362056211(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m68568274_gshared (InternalEnumerator_1_t3990767863 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m68568274_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3990767863 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3990767863 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m68568274(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3903656979_MetadataUsageId;
extern "C" KeyValuePair_2_t3132015601 InternalEnumerator_1_get_Current_m3903656979_gshared (InternalEnumerator_1_t3990767863 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3903656979_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t3132015601 L_8 = (( KeyValuePair_2_t3132015601 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t3132015601 InternalEnumerator_1_get_Current_m3903656979_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3990767863 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3990767863 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3903656979(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3451922505_gshared (InternalEnumerator_1_t2827968452 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3451922505_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2827968452 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2827968452 *>(__this + 1);
InternalEnumerator_1__ctor_m3451922505(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m777306933_gshared (InternalEnumerator_1_t2827968452 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m777306933_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2827968452 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2827968452 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m777306933(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m150945877_gshared (InternalEnumerator_1_t2827968452 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t1969216190 L_0 = InternalEnumerator_1_get_Current_m577633754((InternalEnumerator_1_t2827968452 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t1969216190 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m150945877_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2827968452 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2827968452 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m150945877(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m4143583296_gshared (InternalEnumerator_1_t2827968452 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m4143583296_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2827968452 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2827968452 *>(__this + 1);
InternalEnumerator_1_Dispose_m4143583296(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2240526973_gshared (InternalEnumerator_1_t2827968452 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2240526973_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2827968452 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2827968452 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2240526973(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m577633754_MetadataUsageId;
extern "C" KeyValuePair_2_t1969216190 InternalEnumerator_1_get_Current_m577633754_gshared (InternalEnumerator_1_t2827968452 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m577633754_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t1969216190 L_8 = (( KeyValuePair_2_t1969216190 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t1969216190 InternalEnumerator_1_get_Current_m577633754_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2827968452 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2827968452 *>(__this + 1);
return InternalEnumerator_1_get_Current_m577633754(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3441346029_gshared (InternalEnumerator_1_t313372414 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3441346029_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t313372414 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t313372414 *>(__this + 1);
InternalEnumerator_1__ctor_m3441346029(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715953809_gshared (InternalEnumerator_1_t313372414 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715953809_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t313372414 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t313372414 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715953809(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3584266157_gshared (InternalEnumerator_1_t313372414 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t3749587448 L_0 = InternalEnumerator_1_get_Current_m3582710858((InternalEnumerator_1_t313372414 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t3749587448 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3584266157_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t313372414 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t313372414 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3584266157(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m718416578_gshared (InternalEnumerator_1_t313372414 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m718416578_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t313372414 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t313372414 *>(__this + 1);
InternalEnumerator_1_Dispose_m718416578(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1791963761_gshared (InternalEnumerator_1_t313372414 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1791963761_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t313372414 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t313372414 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1791963761(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3582710858_MetadataUsageId;
extern "C" KeyValuePair_2_t3749587448 InternalEnumerator_1_get_Current_m3582710858_gshared (InternalEnumerator_1_t313372414 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3582710858_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t3749587448 L_8 = (( KeyValuePair_2_t3749587448 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t3749587448 InternalEnumerator_1_get_Current_m3582710858_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t313372414 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t313372414 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3582710858(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m522706436_gshared (InternalEnumerator_1_t2295065181 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m522706436_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2295065181 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2295065181 *>(__this + 1);
InternalEnumerator_1__ctor_m522706436(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1826130532_gshared (InternalEnumerator_1_t2295065181 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1826130532_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2295065181 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2295065181 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1826130532(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1499316562_gshared (InternalEnumerator_1_t2295065181 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t1436312919 L_0 = InternalEnumerator_1_get_Current_m1571839435((InternalEnumerator_1_t2295065181 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t1436312919 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1499316562_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2295065181 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2295065181 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1499316562(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m190395855_gshared (InternalEnumerator_1_t2295065181 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m190395855_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2295065181 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2295065181 *>(__this + 1);
InternalEnumerator_1_Dispose_m190395855(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m111667820_gshared (InternalEnumerator_1_t2295065181 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m111667820_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2295065181 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2295065181 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m111667820(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1571839435_MetadataUsageId;
extern "C" KeyValuePair_2_t1436312919 InternalEnumerator_1_get_Current_m1571839435_gshared (InternalEnumerator_1_t2295065181 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1571839435_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t1436312919 L_8 = (( KeyValuePair_2_t1436312919 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t1436312919 InternalEnumerator_1_get_Current_m1571839435_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2295065181 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2295065181 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1571839435(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m967618647_gshared (InternalEnumerator_1_t2033732330 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m967618647_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2033732330 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2033732330 *>(__this + 1);
InternalEnumerator_1__ctor_m967618647(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m324760031_gshared (InternalEnumerator_1_t2033732330 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m324760031_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2033732330 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2033732330 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m324760031(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1004764375_gshared (InternalEnumerator_1_t2033732330 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t1174980068 L_0 = InternalEnumerator_1_get_Current_m3900993294((InternalEnumerator_1_t2033732330 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t1174980068 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1004764375_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2033732330 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2033732330 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1004764375(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m318835130_gshared (InternalEnumerator_1_t2033732330 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m318835130_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2033732330 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2033732330 *>(__this + 1);
InternalEnumerator_1_Dispose_m318835130(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4294226955_gshared (InternalEnumerator_1_t2033732330 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4294226955_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2033732330 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2033732330 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4294226955(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3900993294_MetadataUsageId;
extern "C" KeyValuePair_2_t1174980068 InternalEnumerator_1_get_Current_m3900993294_gshared (InternalEnumerator_1_t2033732330 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3900993294_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t1174980068 L_8 = (( KeyValuePair_2_t1174980068 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t1174980068 InternalEnumerator_1_get_Current_m3900993294_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2033732330 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2033732330 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3900993294(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3362782841_gshared (InternalEnumerator_1_t280035060 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3362782841_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t280035060 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t280035060 *>(__this + 1);
InternalEnumerator_1__ctor_m3362782841(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2173715269_gshared (InternalEnumerator_1_t280035060 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2173715269_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t280035060 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t280035060 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2173715269(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1679297177_gshared (InternalEnumerator_1_t280035060 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t3716250094 L_0 = InternalEnumerator_1_get_Current_m2882946014((InternalEnumerator_1_t280035060 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t3716250094 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1679297177_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t280035060 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t280035060 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1679297177(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1748410190_gshared (InternalEnumerator_1_t280035060 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1748410190_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t280035060 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t280035060 *>(__this + 1);
InternalEnumerator_1_Dispose_m1748410190(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3486952605_gshared (InternalEnumerator_1_t280035060 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3486952605_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t280035060 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t280035060 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3486952605(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2882946014_MetadataUsageId;
extern "C" KeyValuePair_2_t3716250094 InternalEnumerator_1_get_Current_m2882946014_gshared (InternalEnumerator_1_t280035060 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2882946014_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t3716250094 L_8 = (( KeyValuePair_2_t3716250094 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t3716250094 InternalEnumerator_1_get_Current_m2882946014_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t280035060 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t280035060 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2882946014(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3587374424_gshared (InternalEnumerator_1_t897606907 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3587374424_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t897606907 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t897606907 *>(__this + 1);
InternalEnumerator_1__ctor_m3587374424(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m740705392_gshared (InternalEnumerator_1_t897606907 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m740705392_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t897606907 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t897606907 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m740705392(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3546309124_gshared (InternalEnumerator_1_t897606907 * __this, const MethodInfo* method)
{
{
KeyValuePair_2_t38854645 L_0 = InternalEnumerator_1_get_Current_m2345377791((InternalEnumerator_1_t897606907 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
KeyValuePair_2_t38854645 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3546309124_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t897606907 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t897606907 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3546309124(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2413981551_gshared (InternalEnumerator_1_t897606907 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2413981551_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t897606907 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t897606907 *>(__this + 1);
InternalEnumerator_1_Dispose_m2413981551(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1667794624_gshared (InternalEnumerator_1_t897606907 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1667794624_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t897606907 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t897606907 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1667794624(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2345377791_MetadataUsageId;
extern "C" KeyValuePair_2_t38854645 InternalEnumerator_1_get_Current_m2345377791_gshared (InternalEnumerator_1_t897606907 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2345377791_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
KeyValuePair_2_t38854645 L_8 = (( KeyValuePair_2_t38854645 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" KeyValuePair_2_t38854645 InternalEnumerator_1_get_Current_m2345377791_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t897606907 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t897606907 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2345377791(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m439810834_gshared (InternalEnumerator_1_t3582009740 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m439810834_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3582009740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3582009740 *>(__this + 1);
InternalEnumerator_1__ctor_m439810834(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1090540230_gshared (InternalEnumerator_1_t3582009740 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1090540230_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3582009740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3582009740 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1090540230(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3088751576_gshared (InternalEnumerator_1_t3582009740 * __this, const MethodInfo* method)
{
{
Link_t2723257478 L_0 = InternalEnumerator_1_get_Current_m3444791149((InternalEnumerator_1_t3582009740 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Link_t2723257478 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3088751576_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3582009740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3582009740 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3088751576(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m296683029_gshared (InternalEnumerator_1_t3582009740 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m296683029_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3582009740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3582009740 *>(__this + 1);
InternalEnumerator_1_Dispose_m296683029(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1994485778_gshared (InternalEnumerator_1_t3582009740 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1994485778_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3582009740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3582009740 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1994485778(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Generic.Link>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3444791149_MetadataUsageId;
extern "C" Link_t2723257478 InternalEnumerator_1_get_Current_m3444791149_gshared (InternalEnumerator_1_t3582009740 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3444791149_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Link_t2723257478 L_8 = (( Link_t2723257478 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Link_t2723257478 InternalEnumerator_1_get_Current_m3444791149_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3582009740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3582009740 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3444791149(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m488579894_gshared (InternalEnumerator_1_t2881283523 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m488579894_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2881283523 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2881283523 *>(__this + 1);
InternalEnumerator_1__ctor_m488579894(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m403454978_gshared (InternalEnumerator_1_t2881283523 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m403454978_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2881283523 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2881283523 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m403454978(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4259662004_gshared (InternalEnumerator_1_t2881283523 * __this, const MethodInfo* method)
{
{
Slot_t2022531261 L_0 = InternalEnumerator_1_get_Current_m198513457((InternalEnumerator_1_t2881283523 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Slot_t2022531261 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4259662004_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2881283523 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2881283523 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4259662004(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m802528953_gshared (InternalEnumerator_1_t2881283523 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m802528953_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2881283523 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2881283523 *>(__this + 1);
InternalEnumerator_1_Dispose_m802528953(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3278167302_gshared (InternalEnumerator_1_t2881283523 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3278167302_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2881283523 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2881283523 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3278167302(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.Hashtable/Slot>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m198513457_MetadataUsageId;
extern "C" Slot_t2022531261 InternalEnumerator_1_get_Current_m198513457_gshared (InternalEnumerator_1_t2881283523 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m198513457_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Slot_t2022531261 L_8 = (( Slot_t2022531261 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Slot_t2022531261 InternalEnumerator_1_get_Current_m198513457_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2881283523 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2881283523 *>(__this + 1);
return InternalEnumerator_1_get_Current_m198513457(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1405610577_gshared (InternalEnumerator_1_t3126312864 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1405610577_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3126312864 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3126312864 *>(__this + 1);
InternalEnumerator_1__ctor_m1405610577(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3237341717_gshared (InternalEnumerator_1_t3126312864 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3237341717_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3126312864 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3126312864 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3237341717(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3600601141_gshared (InternalEnumerator_1_t3126312864 * __this, const MethodInfo* method)
{
{
Slot_t2267560602 L_0 = InternalEnumerator_1_get_Current_m4193726352((InternalEnumerator_1_t3126312864 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Slot_t2267560602 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3600601141_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3126312864 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3126312864 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3600601141(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2337194690_gshared (InternalEnumerator_1_t3126312864 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2337194690_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3126312864 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3126312864 *>(__this + 1);
InternalEnumerator_1_Dispose_m2337194690(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3476348493_gshared (InternalEnumerator_1_t3126312864 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3476348493_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3126312864 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3126312864 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3476348493(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Collections.SortedList/Slot>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4193726352_MetadataUsageId;
extern "C" Slot_t2267560602 InternalEnumerator_1_get_Current_m4193726352_gshared (InternalEnumerator_1_t3126312864 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4193726352_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Slot_t2267560602 L_8 = (( Slot_t2267560602 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Slot_t2267560602 InternalEnumerator_1_get_Current_m4193726352_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3126312864 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3126312864 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4193726352(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m245588437_gshared (InternalEnumerator_1_t1551957931 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m245588437_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1551957931 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1551957931 *>(__this + 1);
InternalEnumerator_1__ctor_m245588437(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2174159777_gshared (InternalEnumerator_1_t1551957931 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2174159777_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1551957931 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1551957931 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2174159777(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3315293493_gshared (InternalEnumerator_1_t1551957931 * __this, const MethodInfo* method)
{
{
DateTime_t693205669 L_0 = InternalEnumerator_1_get_Current_m4279678504((InternalEnumerator_1_t1551957931 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
DateTime_t693205669 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3315293493_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1551957931 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1551957931 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3315293493(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.DateTime>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3383574608_gshared (InternalEnumerator_1_t1551957931 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3383574608_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1551957931 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1551957931 *>(__this + 1);
InternalEnumerator_1_Dispose_m3383574608(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.DateTime>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3300932033_gshared (InternalEnumerator_1_t1551957931 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3300932033_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1551957931 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1551957931 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3300932033(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.DateTime>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4279678504_MetadataUsageId;
extern "C" DateTime_t693205669 InternalEnumerator_1_get_Current_m4279678504_gshared (InternalEnumerator_1_t1551957931 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4279678504_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
DateTime_t693205669 L_8 = (( DateTime_t693205669 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" DateTime_t693205669 InternalEnumerator_1_get_Current_m4279678504_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1551957931 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1551957931 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4279678504(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m4150855019_gshared (InternalEnumerator_1_t1583453339 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m4150855019_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1583453339 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1583453339 *>(__this + 1);
InternalEnumerator_1__ctor_m4150855019(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1963130955_gshared (InternalEnumerator_1_t1583453339 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1963130955_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1583453339 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1583453339 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1963130955(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1025729343_gshared (InternalEnumerator_1_t1583453339 * __this, const MethodInfo* method)
{
{
Decimal_t724701077 L_0 = InternalEnumerator_1_get_Current_m245025210((InternalEnumerator_1_t1583453339 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Decimal_t724701077 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1025729343_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1583453339 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1583453339 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1025729343(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Decimal>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3407567388_gshared (InternalEnumerator_1_t1583453339 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3407567388_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1583453339 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1583453339 *>(__this + 1);
InternalEnumerator_1_Dispose_m3407567388(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Decimal>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4134231455_gshared (InternalEnumerator_1_t1583453339 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4134231455_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1583453339 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1583453339 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4134231455(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Decimal>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m245025210_MetadataUsageId;
extern "C" Decimal_t724701077 InternalEnumerator_1_get_Current_m245025210_gshared (InternalEnumerator_1_t1583453339 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m245025210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Decimal_t724701077 L_8 = (( Decimal_t724701077 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Decimal_t724701077 InternalEnumerator_1_get_Current_m245025210_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1583453339 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1583453339 *>(__this + 1);
return InternalEnumerator_1_get_Current_m245025210(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3589241961_gshared (InternalEnumerator_1_t641800647 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3589241961_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t641800647 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t641800647 *>(__this + 1);
InternalEnumerator_1__ctor_m3589241961(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3194282029_gshared (InternalEnumerator_1_t641800647 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3194282029_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t641800647 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t641800647 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3194282029(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2842514953_gshared (InternalEnumerator_1_t641800647 * __this, const MethodInfo* method)
{
{
double L_0 = InternalEnumerator_1_get_Current_m1389169756((InternalEnumerator_1_t641800647 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
double L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2842514953_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t641800647 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t641800647 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2842514953(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Double>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3578333724_gshared (InternalEnumerator_1_t641800647 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3578333724_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t641800647 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t641800647 *>(__this + 1);
InternalEnumerator_1_Dispose_m3578333724(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Double>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m83303365_gshared (InternalEnumerator_1_t641800647 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m83303365_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t641800647 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t641800647 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m83303365(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Double>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1389169756_MetadataUsageId;
extern "C" double InternalEnumerator_1_get_Current_m1389169756_gshared (InternalEnumerator_1_t641800647 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1389169756_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
double L_8 = (( double (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" double InternalEnumerator_1_get_Current_m1389169756_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t641800647 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t641800647 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1389169756(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m557239862_gshared (InternalEnumerator_1_t605030880 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m557239862_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t605030880 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t605030880 *>(__this + 1);
InternalEnumerator_1__ctor_m557239862(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m487832594_gshared (InternalEnumerator_1_t605030880 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m487832594_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t605030880 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t605030880 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m487832594(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2068723842_gshared (InternalEnumerator_1_t605030880 * __this, const MethodInfo* method)
{
{
int16_t L_0 = InternalEnumerator_1_get_Current_m3259181373((InternalEnumerator_1_t605030880 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int16_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2068723842_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t605030880 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t605030880 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2068723842(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int16>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2743309309_gshared (InternalEnumerator_1_t605030880 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2743309309_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t605030880 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t605030880 *>(__this + 1);
InternalEnumerator_1_Dispose_m2743309309(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Int16>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4274987126_gshared (InternalEnumerator_1_t605030880 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4274987126_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t605030880 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t605030880 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4274987126(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Int16>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3259181373_MetadataUsageId;
extern "C" int16_t InternalEnumerator_1_get_Current_m3259181373_gshared (InternalEnumerator_1_t605030880 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3259181373_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int16_t L_8 = (( int16_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int16_t InternalEnumerator_1_get_Current_m3259181373_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t605030880 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t605030880 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3259181373(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m504913220_gshared (InternalEnumerator_1_t2930629710 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m504913220_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2930629710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2930629710 *>(__this + 1);
InternalEnumerator_1__ctor_m504913220(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2726857860_gshared (InternalEnumerator_1_t2930629710 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2726857860_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2930629710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2930629710 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2726857860(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1527025224_gshared (InternalEnumerator_1_t2930629710 * __this, const MethodInfo* method)
{
{
int32_t L_0 = InternalEnumerator_1_get_Current_m10285187((InternalEnumerator_1_t2930629710 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int32_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1527025224_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2930629710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2930629710 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1527025224(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int32>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3393096515_gshared (InternalEnumerator_1_t2930629710 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3393096515_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2930629710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2930629710 *>(__this + 1);
InternalEnumerator_1_Dispose_m3393096515(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Int32>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3679487948_gshared (InternalEnumerator_1_t2930629710 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3679487948_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2930629710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2930629710 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3679487948(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Int32>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m10285187_MetadataUsageId;
extern "C" int32_t InternalEnumerator_1_get_Current_m10285187_gshared (InternalEnumerator_1_t2930629710 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m10285187_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int32_t L_8 = (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int32_t InternalEnumerator_1_get_Current_m10285187_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2930629710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2930629710 *>(__this + 1);
return InternalEnumerator_1_get_Current_m10285187(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2597133905_gshared (InternalEnumerator_1_t1767830299 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2597133905_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1767830299 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1767830299 *>(__this + 1);
InternalEnumerator_1__ctor_m2597133905(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2144409197_gshared (InternalEnumerator_1_t1767830299 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2144409197_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1767830299 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1767830299 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2144409197(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2545039741_gshared (InternalEnumerator_1_t1767830299 * __this, const MethodInfo* method)
{
{
int64_t L_0 = InternalEnumerator_1_get_Current_m2415979394((InternalEnumerator_1_t1767830299 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int64_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2545039741_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1767830299 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1767830299 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2545039741(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Int64>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m307741520_gshared (InternalEnumerator_1_t1767830299 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m307741520_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1767830299 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1767830299 *>(__this + 1);
InternalEnumerator_1_Dispose_m307741520(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Int64>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1683120485_gshared (InternalEnumerator_1_t1767830299 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1683120485_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1767830299 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1767830299 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1683120485(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Int64>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2415979394_MetadataUsageId;
extern "C" int64_t InternalEnumerator_1_get_Current_m2415979394_gshared (InternalEnumerator_1_t1767830299 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2415979394_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int64_t L_8 = (( int64_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int64_t InternalEnumerator_1_get_Current_m2415979394_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1767830299 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1767830299 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2415979394(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1648185761_gshared (InternalEnumerator_1_t3362812871 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1648185761_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3362812871 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3362812871 *>(__this + 1);
InternalEnumerator_1__ctor_m1648185761(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1809507733_gshared (InternalEnumerator_1_t3362812871 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1809507733_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3362812871 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3362812871 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1809507733(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m127456009_gshared (InternalEnumerator_1_t3362812871 * __this, const MethodInfo* method)
{
{
IntPtr_t L_0 = InternalEnumerator_1_get_Current_m1706492988((InternalEnumerator_1_t3362812871 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
IntPtr_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m127456009_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3362812871 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3362812871 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m127456009(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.IntPtr>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3933737284_gshared (InternalEnumerator_1_t3362812871 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3933737284_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3362812871 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3362812871 *>(__this + 1);
InternalEnumerator_1_Dispose_m3933737284(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.IntPtr>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2720582493_gshared (InternalEnumerator_1_t3362812871 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2720582493_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3362812871 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3362812871 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2720582493(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.IntPtr>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1706492988_MetadataUsageId;
extern "C" IntPtr_t InternalEnumerator_1_get_Current_m1706492988_gshared (InternalEnumerator_1_t3362812871 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1706492988_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
IntPtr_t L_8 = (( IntPtr_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" IntPtr_t InternalEnumerator_1_get_Current_m1706492988_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3362812871 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3362812871 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1706492988(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m853313801_gshared (InternalEnumerator_1_t3548201557 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m853313801_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3548201557 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3548201557 *>(__this + 1);
InternalEnumerator_1__ctor_m853313801(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3080260213_gshared (InternalEnumerator_1_t3548201557 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3080260213_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3548201557 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3548201557 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3080260213(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m94051553_gshared (InternalEnumerator_1_t3548201557 * __this, const MethodInfo* method)
{
{
Il2CppObject * L_0 = InternalEnumerator_1_get_Current_m3206960238((InternalEnumerator_1_t3548201557 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
return L_0;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m94051553_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3548201557 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3548201557 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m94051553(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Object>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1636767846_gshared (InternalEnumerator_1_t3548201557 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1636767846_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3548201557 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3548201557 *>(__this + 1);
InternalEnumerator_1_Dispose_m1636767846(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Object>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1047150157_gshared (InternalEnumerator_1_t3548201557 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1047150157_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3548201557 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3548201557 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1047150157(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Object>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3206960238_MetadataUsageId;
extern "C" Il2CppObject * InternalEnumerator_1_get_Current_m3206960238_gshared (InternalEnumerator_1_t3548201557 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3206960238_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Il2CppObject * L_8 = (( Il2CppObject * (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_get_Current_m3206960238_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3548201557 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3548201557 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3206960238(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m492779768_gshared (InternalEnumerator_1_t952909805 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m492779768_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t952909805 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t952909805 *>(__this + 1);
InternalEnumerator_1__ctor_m492779768(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2494446096_gshared (InternalEnumerator_1_t952909805 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2494446096_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t952909805 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t952909805 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2494446096(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1322273508_gshared (InternalEnumerator_1_t952909805 * __this, const MethodInfo* method)
{
{
CustomAttributeNamedArgument_t94157543 L_0 = InternalEnumerator_1_get_Current_m1089848479((InternalEnumerator_1_t952909805 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
CustomAttributeNamedArgument_t94157543 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1322273508_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t952909805 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t952909805 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1322273508(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m238246335_gshared (InternalEnumerator_1_t952909805 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m238246335_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t952909805 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t952909805 *>(__this + 1);
InternalEnumerator_1_Dispose_m238246335(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1548080384_gshared (InternalEnumerator_1_t952909805 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1548080384_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t952909805 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t952909805 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1548080384(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1089848479_MetadataUsageId;
extern "C" CustomAttributeNamedArgument_t94157543 InternalEnumerator_1_get_Current_m1089848479_gshared (InternalEnumerator_1_t952909805 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1089848479_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
CustomAttributeNamedArgument_t94157543 L_8 = (( CustomAttributeNamedArgument_t94157543 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" CustomAttributeNamedArgument_t94157543 InternalEnumerator_1_get_Current_m1089848479_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t952909805 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t952909805 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1089848479(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m821424641_gshared (InternalEnumerator_1_t2356950176 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m821424641_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2356950176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2356950176 *>(__this + 1);
InternalEnumerator_1__ctor_m821424641(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2624612805_gshared (InternalEnumerator_1_t2356950176 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2624612805_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2356950176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2356950176 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2624612805(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2315179333_gshared (InternalEnumerator_1_t2356950176 * __this, const MethodInfo* method)
{
{
CustomAttributeTypedArgument_t1498197914 L_0 = InternalEnumerator_1_get_Current_m1047712960((InternalEnumerator_1_t2356950176 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
CustomAttributeTypedArgument_t1498197914 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2315179333_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2356950176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2356950176 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2315179333(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m4038440306_gshared (InternalEnumerator_1_t2356950176 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m4038440306_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2356950176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2356950176 *>(__this + 1);
InternalEnumerator_1_Dispose_m4038440306(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2904932349_gshared (InternalEnumerator_1_t2356950176 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2904932349_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2356950176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2356950176 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2904932349(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1047712960_MetadataUsageId;
extern "C" CustomAttributeTypedArgument_t1498197914 InternalEnumerator_1_get_Current_m1047712960_gshared (InternalEnumerator_1_t2356950176 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1047712960_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
CustomAttributeTypedArgument_t1498197914 L_8 = (( CustomAttributeTypedArgument_t1498197914 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" CustomAttributeTypedArgument_t1498197914 InternalEnumerator_1_get_Current_m1047712960_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2356950176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2356950176 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1047712960(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3323962057_gshared (InternalEnumerator_1_t275897710 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3323962057_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t275897710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t275897710 *>(__this + 1);
InternalEnumerator_1__ctor_m3323962057(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2589050037_gshared (InternalEnumerator_1_t275897710 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2589050037_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t275897710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t275897710 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2589050037(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4242639349_gshared (InternalEnumerator_1_t275897710 * __this, const MethodInfo* method)
{
{
LabelData_t3712112744 L_0 = InternalEnumerator_1_get_Current_m3922357178((InternalEnumerator_1_t275897710 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
LabelData_t3712112744 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4242639349_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t275897710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t275897710 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4242639349(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m549215360_gshared (InternalEnumerator_1_t275897710 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m549215360_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t275897710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t275897710 *>(__this + 1);
InternalEnumerator_1_Dispose_m549215360(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3389738333_gshared (InternalEnumerator_1_t275897710 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3389738333_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t275897710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t275897710 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3389738333(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3922357178_MetadataUsageId;
extern "C" LabelData_t3712112744 InternalEnumerator_1_get_Current_m3922357178_gshared (InternalEnumerator_1_t275897710 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3922357178_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
LabelData_t3712112744 L_8 = (( LabelData_t3712112744 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" LabelData_t3712112744 InternalEnumerator_1_get_Current_m3922357178_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t275897710 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t275897710 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3922357178(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3228997263_gshared (InternalEnumerator_1_t654694480 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3228997263_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t654694480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t654694480 *>(__this + 1);
InternalEnumerator_1__ctor_m3228997263(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3279821511_gshared (InternalEnumerator_1_t654694480 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3279821511_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t654694480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t654694480 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3279821511(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1597849391_gshared (InternalEnumerator_1_t654694480 * __this, const MethodInfo* method)
{
{
LabelFixup_t4090909514 L_0 = InternalEnumerator_1_get_Current_m2468740214((InternalEnumerator_1_t654694480 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
LabelFixup_t4090909514 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1597849391_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t654694480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t654694480 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1597849391(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3927915442_gshared (InternalEnumerator_1_t654694480 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3927915442_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t654694480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t654694480 *>(__this + 1);
InternalEnumerator_1_Dispose_m3927915442(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4292005299_gshared (InternalEnumerator_1_t654694480 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4292005299_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t654694480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t654694480 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4292005299(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2468740214_MetadataUsageId;
extern "C" LabelFixup_t4090909514 InternalEnumerator_1_get_Current_m2468740214_gshared (InternalEnumerator_1_t654694480 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2468740214_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
LabelFixup_t4090909514 L_8 = (( LabelFixup_t4090909514 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" LabelFixup_t4090909514 InternalEnumerator_1_get_Current_m2468740214_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t654694480 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t654694480 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2468740214(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3387972470_gshared (InternalEnumerator_1_t1008311600 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3387972470_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1008311600 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1008311600 *>(__this + 1);
InternalEnumerator_1__ctor_m3387972470(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m651165750_gshared (InternalEnumerator_1_t1008311600 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m651165750_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1008311600 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1008311600 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m651165750(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3239681450_gshared (InternalEnumerator_1_t1008311600 * __this, const MethodInfo* method)
{
{
ILTokenInfo_t149559338 L_0 = InternalEnumerator_1_get_Current_m3296972783((InternalEnumerator_1_t1008311600 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ILTokenInfo_t149559338 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3239681450_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1008311600 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1008311600 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3239681450(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2056889175_gshared (InternalEnumerator_1_t1008311600 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2056889175_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1008311600 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1008311600 *>(__this + 1);
InternalEnumerator_1_Dispose_m2056889175(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1590907854_gshared (InternalEnumerator_1_t1008311600 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1590907854_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1008311600 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1008311600 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1590907854(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Reflection.Emit.ILTokenInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3296972783_MetadataUsageId;
extern "C" ILTokenInfo_t149559338 InternalEnumerator_1_get_Current_m3296972783_gshared (InternalEnumerator_1_t1008311600 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3296972783_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
ILTokenInfo_t149559338 L_8 = (( ILTokenInfo_t149559338 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" ILTokenInfo_t149559338 InternalEnumerator_1_get_Current_m3296972783_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1008311600 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1008311600 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3296972783(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2890018883_gshared (InternalEnumerator_1_t2679387182 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2890018883_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2679387182 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2679387182 *>(__this + 1);
InternalEnumerator_1__ctor_m2890018883(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107040235_gshared (InternalEnumerator_1_t2679387182 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107040235_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2679387182 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2679387182 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107040235(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2851415307_gshared (InternalEnumerator_1_t2679387182 * __this, const MethodInfo* method)
{
{
ParameterModifier_t1820634920 L_0 = InternalEnumerator_1_get_Current_m4083613828((InternalEnumerator_1_t2679387182 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ParameterModifier_t1820634920 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2851415307_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2679387182 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2679387182 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2851415307(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3952699776_gshared (InternalEnumerator_1_t2679387182 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3952699776_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2679387182 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2679387182 *>(__this + 1);
InternalEnumerator_1_Dispose_m3952699776(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1594563423_gshared (InternalEnumerator_1_t2679387182 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1594563423_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2679387182 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2679387182 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1594563423(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4083613828_MetadataUsageId;
extern "C" ParameterModifier_t1820634920 InternalEnumerator_1_get_Current_m4083613828_gshared (InternalEnumerator_1_t2679387182 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4083613828_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
ParameterModifier_t1820634920 L_8 = (( ParameterModifier_t1820634920 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" ParameterModifier_t1820634920 InternalEnumerator_1_get_Current_m4083613828_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2679387182 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2679387182 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4083613828(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1182539814_gshared (InternalEnumerator_1_t1191988411 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1182539814_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1191988411 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1191988411 *>(__this + 1);
InternalEnumerator_1__ctor_m1182539814(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2821513122_gshared (InternalEnumerator_1_t1191988411 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2821513122_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1191988411 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1191988411 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2821513122(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1049770044_gshared (InternalEnumerator_1_t1191988411 * __this, const MethodInfo* method)
{
{
ResourceCacheItem_t333236149 L_0 = InternalEnumerator_1_get_Current_m789289033((InternalEnumerator_1_t1191988411 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ResourceCacheItem_t333236149 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1049770044_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1191988411 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1191988411 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1049770044(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m4175113225_gshared (InternalEnumerator_1_t1191988411 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m4175113225_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1191988411 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1191988411 *>(__this + 1);
InternalEnumerator_1_Dispose_m4175113225(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2302237510_gshared (InternalEnumerator_1_t1191988411 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2302237510_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1191988411 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1191988411 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2302237510(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m789289033_MetadataUsageId;
extern "C" ResourceCacheItem_t333236149 InternalEnumerator_1_get_Current_m789289033_gshared (InternalEnumerator_1_t1191988411 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m789289033_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
ResourceCacheItem_t333236149 L_8 = (( ResourceCacheItem_t333236149 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" ResourceCacheItem_t333236149 InternalEnumerator_1_get_Current_m789289033_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1191988411 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1191988411 *>(__this + 1);
return InternalEnumerator_1_get_Current_m789289033(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1336720787_gshared (InternalEnumerator_1_t496834202 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1336720787_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t496834202 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t496834202 *>(__this + 1);
InternalEnumerator_1__ctor_m1336720787(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2116079299_gshared (InternalEnumerator_1_t496834202 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2116079299_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t496834202 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t496834202 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2116079299(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4023948615_gshared (InternalEnumerator_1_t496834202 * __this, const MethodInfo* method)
{
{
ResourceInfo_t3933049236 L_0 = InternalEnumerator_1_get_Current_m4154059426((InternalEnumerator_1_t496834202 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ResourceInfo_t3933049236 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4023948615_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t496834202 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t496834202 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4023948615(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1794459540_gshared (InternalEnumerator_1_t496834202 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1794459540_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t496834202 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t496834202 *>(__this + 1);
InternalEnumerator_1_Dispose_m1794459540(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2576139351_gshared (InternalEnumerator_1_t496834202 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2576139351_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t496834202 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t496834202 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2576139351(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Resources.ResourceReader/ResourceInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4154059426_MetadataUsageId;
extern "C" ResourceInfo_t3933049236 InternalEnumerator_1_get_Current_m4154059426_gshared (InternalEnumerator_1_t496834202 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4154059426_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
ResourceInfo_t3933049236 L_8 = (( ResourceInfo_t3933049236 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" ResourceInfo_t3933049236 InternalEnumerator_1_get_Current_m4154059426_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t496834202 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t496834202 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4154059426(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m4063293236_gshared (InternalEnumerator_1_t999961858 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m4063293236_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t999961858 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t999961858 *>(__this + 1);
InternalEnumerator_1__ctor_m4063293236(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561424184_gshared (InternalEnumerator_1_t999961858 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561424184_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t999961858 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t999961858 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561424184(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088899688_gshared (InternalEnumerator_1_t999961858 * __this, const MethodInfo* method)
{
{
uint8_t L_0 = InternalEnumerator_1_get_Current_m2286118957((InternalEnumerator_1_t999961858 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
uint8_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088899688_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t999961858 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t999961858 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088899688(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1020222893_gshared (InternalEnumerator_1_t999961858 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1020222893_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t999961858 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t999961858 *>(__this + 1);
InternalEnumerator_1_Dispose_m1020222893(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1686633972_gshared (InternalEnumerator_1_t999961858 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1686633972_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t999961858 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t999961858 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1686633972(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2286118957_MetadataUsageId;
extern "C" uint8_t InternalEnumerator_1_get_Current_m2286118957_gshared (InternalEnumerator_1_t999961858 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2286118957_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
uint8_t L_8 = (( uint8_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" uint8_t InternalEnumerator_1_get_Current_m2286118957_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t999961858 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t999961858 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2286118957(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2108401677_gshared (InternalEnumerator_1_t1313169811 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2108401677_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1313169811 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1313169811 *>(__this + 1);
InternalEnumerator_1__ctor_m2108401677(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4085710193_gshared (InternalEnumerator_1_t1313169811 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4085710193_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1313169811 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1313169811 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4085710193(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2607490481_gshared (InternalEnumerator_1_t1313169811 * __this, const MethodInfo* method)
{
{
int8_t L_0 = InternalEnumerator_1_get_Current_m314017974((InternalEnumerator_1_t1313169811 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int8_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2607490481_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1313169811 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1313169811 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2607490481(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.SByte>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1676985532_gshared (InternalEnumerator_1_t1313169811 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1676985532_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1313169811 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1313169811 *>(__this + 1);
InternalEnumerator_1_Dispose_m1676985532(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.SByte>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3984801393_gshared (InternalEnumerator_1_t1313169811 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3984801393_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1313169811 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1313169811 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3984801393(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.SByte>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m314017974_MetadataUsageId;
extern "C" int8_t InternalEnumerator_1_get_Current_m314017974_gshared (InternalEnumerator_1_t1313169811 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m314017974_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int8_t L_8 = (( int8_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int8_t InternalEnumerator_1_get_Current_m314017974_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1313169811 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1313169811 *>(__this + 1);
return InternalEnumerator_1_get_Current_m314017974(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m655778553_gshared (InternalEnumerator_1_t842163687 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m655778553_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t842163687 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t842163687 *>(__this + 1);
InternalEnumerator_1__ctor_m655778553(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2198960685_gshared (InternalEnumerator_1_t842163687 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2198960685_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t842163687 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t842163687 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2198960685(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3576641073_gshared (InternalEnumerator_1_t842163687 * __this, const MethodInfo* method)
{
{
X509ChainStatus_t4278378721 L_0 = InternalEnumerator_1_get_Current_m1550231132((InternalEnumerator_1_t842163687 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
X509ChainStatus_t4278378721 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3576641073_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t842163687 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t842163687 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3576641073(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3671580532_gshared (InternalEnumerator_1_t842163687 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3671580532_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t842163687 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t842163687 *>(__this + 1);
InternalEnumerator_1_Dispose_m3671580532(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1869236997_gshared (InternalEnumerator_1_t842163687 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1869236997_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t842163687 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t842163687 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1869236997(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1550231132_MetadataUsageId;
extern "C" X509ChainStatus_t4278378721 InternalEnumerator_1_get_Current_m1550231132_gshared (InternalEnumerator_1_t842163687 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1550231132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
X509ChainStatus_t4278378721 L_8 = (( X509ChainStatus_t4278378721 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" X509ChainStatus_t4278378721 InternalEnumerator_1_get_Current_m1550231132_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t842163687 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t842163687 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1550231132(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2314640734_gshared (InternalEnumerator_1_t2935262194 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2314640734_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2935262194 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2935262194 *>(__this + 1);
InternalEnumerator_1__ctor_m2314640734(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m214315662_gshared (InternalEnumerator_1_t2935262194 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m214315662_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2935262194 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2935262194 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m214315662(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1231402888_gshared (InternalEnumerator_1_t2935262194 * __this, const MethodInfo* method)
{
{
float L_0 = InternalEnumerator_1_get_Current_m727737343((InternalEnumerator_1_t2935262194 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
float L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1231402888_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2935262194 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2935262194 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1231402888(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Single>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2195973811_gshared (InternalEnumerator_1_t2935262194 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2195973811_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2935262194 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2935262194 *>(__this + 1);
InternalEnumerator_1_Dispose_m2195973811(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Single>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m580128774_gshared (InternalEnumerator_1_t2935262194 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m580128774_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2935262194 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2935262194 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m580128774(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Single>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m727737343_MetadataUsageId;
extern "C" float InternalEnumerator_1_get_Current_m727737343_gshared (InternalEnumerator_1_t2935262194 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m727737343_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
float L_8 = (( float (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" float InternalEnumerator_1_get_Current_m727737343_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2935262194 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2935262194 *>(__this + 1);
return InternalEnumerator_1_get_Current_m727737343(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1240086835_gshared (InternalEnumerator_1_t3583626735 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1240086835_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3583626735 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3583626735 *>(__this + 1);
InternalEnumerator_1__ctor_m1240086835(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3826378355_gshared (InternalEnumerator_1_t3583626735 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3826378355_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3583626735 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3583626735 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3826378355(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2035754659_gshared (InternalEnumerator_1_t3583626735 * __this, const MethodInfo* method)
{
{
Mark_t2724874473 L_0 = InternalEnumerator_1_get_Current_m575280506((InternalEnumerator_1_t3583626735 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Mark_t2724874473 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2035754659_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3583626735 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3583626735 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2035754659(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3744916110_gshared (InternalEnumerator_1_t3583626735 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3744916110_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3583626735 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3583626735 *>(__this + 1);
InternalEnumerator_1_Dispose_m3744916110(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1741571735_gshared (InternalEnumerator_1_t3583626735 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1741571735_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3583626735 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3583626735 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1741571735(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m575280506_MetadataUsageId;
extern "C" Mark_t2724874473 InternalEnumerator_1_get_Current_m575280506_gshared (InternalEnumerator_1_t3583626735 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m575280506_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Mark_t2724874473 L_8 = (( Mark_t2724874473 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Mark_t2724874473 InternalEnumerator_1_get_Current_m575280506_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3583626735 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3583626735 *>(__this + 1);
return InternalEnumerator_1_get_Current_m575280506(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2189699457_gshared (InternalEnumerator_1_t4289011211 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2189699457_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t4289011211 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4289011211 *>(__this + 1);
InternalEnumerator_1__ctor_m2189699457(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3249248421_gshared (InternalEnumerator_1_t4289011211 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3249248421_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t4289011211 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4289011211 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3249248421(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m439366097_gshared (InternalEnumerator_1_t4289011211 * __this, const MethodInfo* method)
{
{
TimeSpan_t3430258949 L_0 = InternalEnumerator_1_get_Current_m3411759116((InternalEnumerator_1_t4289011211 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TimeSpan_t3430258949 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m439366097_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t4289011211 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4289011211 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m439366097(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3838127340_gshared (InternalEnumerator_1_t4289011211 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3838127340_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t4289011211 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4289011211 *>(__this + 1);
InternalEnumerator_1_Dispose_m3838127340(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.TimeSpan>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1674480765_gshared (InternalEnumerator_1_t4289011211 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1674480765_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t4289011211 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4289011211 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1674480765(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.TimeSpan>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3411759116_MetadataUsageId;
extern "C" TimeSpan_t3430258949 InternalEnumerator_1_get_Current_m3411759116_gshared (InternalEnumerator_1_t4289011211 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3411759116_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TimeSpan_t3430258949 L_8 = (( TimeSpan_t3430258949 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TimeSpan_t3430258949 InternalEnumerator_1_get_Current_m3411759116_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t4289011211 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t4289011211 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3411759116(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2981879621_gshared (InternalEnumerator_1_t1845634873 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2981879621_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1845634873 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1845634873 *>(__this + 1);
InternalEnumerator_1__ctor_m2981879621(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2571770313_gshared (InternalEnumerator_1_t1845634873 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2571770313_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1845634873 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1845634873 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2571770313(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1658267053_gshared (InternalEnumerator_1_t1845634873 * __this, const MethodInfo* method)
{
{
uint16_t L_0 = InternalEnumerator_1_get_Current_m3179981210((InternalEnumerator_1_t1845634873 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
uint16_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1658267053_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1845634873 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1845634873 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1658267053(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt16>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1824402698_gshared (InternalEnumerator_1_t1845634873 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1824402698_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1845634873 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1845634873 *>(__this + 1);
InternalEnumerator_1_Dispose_m1824402698(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.UInt16>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2809569305_gshared (InternalEnumerator_1_t1845634873 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2809569305_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1845634873 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1845634873 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2809569305(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.UInt16>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3179981210_MetadataUsageId;
extern "C" uint16_t InternalEnumerator_1_get_Current_m3179981210_gshared (InternalEnumerator_1_t1845634873 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3179981210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
uint16_t L_8 = (( uint16_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" uint16_t InternalEnumerator_1_get_Current_m3179981210_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1845634873 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1845634873 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3179981210(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m691972083_gshared (InternalEnumerator_1_t3008434283 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m691972083_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3008434283 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3008434283 *>(__this + 1);
InternalEnumerator_1__ctor_m691972083(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107741851_gshared (InternalEnumerator_1_t3008434283 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107741851_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3008434283 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3008434283 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107741851(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2458630467_gshared (InternalEnumerator_1_t3008434283 * __this, const MethodInfo* method)
{
{
uint32_t L_0 = InternalEnumerator_1_get_Current_m2198364332((InternalEnumerator_1_t3008434283 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
uint32_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2458630467_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3008434283 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3008434283 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2458630467(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt32>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2620838688_gshared (InternalEnumerator_1_t3008434283 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2620838688_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3008434283 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3008434283 *>(__this + 1);
InternalEnumerator_1_Dispose_m2620838688(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.UInt32>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m470170271_gshared (InternalEnumerator_1_t3008434283 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m470170271_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3008434283 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3008434283 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m470170271(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.UInt32>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2198364332_MetadataUsageId;
extern "C" uint32_t InternalEnumerator_1_get_Current_m2198364332_gshared (InternalEnumerator_1_t3008434283 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2198364332_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
uint32_t L_8 = (( uint32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" uint32_t InternalEnumerator_1_get_Current_m2198364332_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3008434283 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3008434283 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2198364332(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3084132532_gshared (InternalEnumerator_1_t3767949176 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3084132532_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3767949176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3767949176 *>(__this + 1);
InternalEnumerator_1__ctor_m3084132532(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m187060888_gshared (InternalEnumerator_1_t3767949176 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m187060888_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3767949176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3767949176 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m187060888(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m771161214_gshared (InternalEnumerator_1_t3767949176 * __this, const MethodInfo* method)
{
{
uint64_t L_0 = InternalEnumerator_1_get_Current_m35328337((InternalEnumerator_1_t3767949176 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
uint64_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m771161214_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3767949176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3767949176 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m771161214(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.UInt64>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3642485841_gshared (InternalEnumerator_1_t3767949176 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3642485841_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3767949176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3767949176 *>(__this + 1);
InternalEnumerator_1_Dispose_m3642485841(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.UInt64>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2954283444_gshared (InternalEnumerator_1_t3767949176 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2954283444_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3767949176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3767949176 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2954283444(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.UInt64>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m35328337_MetadataUsageId;
extern "C" uint64_t InternalEnumerator_1_get_Current_m35328337_gshared (InternalEnumerator_1_t3767949176 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m35328337_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
uint64_t L_8 = (( uint64_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" uint64_t InternalEnumerator_1_get_Current_m35328337_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3767949176 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3767949176 *>(__this + 1);
return InternalEnumerator_1_get_Current_m35328337(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3052252268_gshared (InternalEnumerator_1_t2735343205 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3052252268_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2735343205 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2735343205 *>(__this + 1);
InternalEnumerator_1__ctor_m3052252268(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3606709516_gshared (InternalEnumerator_1_t2735343205 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3606709516_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2735343205 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2735343205 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3606709516(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<System.Uri/UriScheme>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3065287496_gshared (InternalEnumerator_1_t2735343205 * __this, const MethodInfo* method)
{
{
UriScheme_t1876590943 L_0 = InternalEnumerator_1_get_Current_m1830023619((InternalEnumerator_1_t2735343205 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
UriScheme_t1876590943 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3065287496_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2735343205 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2735343205 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3065287496(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<System.Uri/UriScheme>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1770651099_gshared (InternalEnumerator_1_t2735343205 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1770651099_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2735343205 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2735343205 *>(__this + 1);
InternalEnumerator_1_Dispose_m1770651099(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<System.Uri/UriScheme>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3629145604_gshared (InternalEnumerator_1_t2735343205 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3629145604_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2735343205 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2735343205 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3629145604(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<System.Uri/UriScheme>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1830023619_MetadataUsageId;
extern "C" UriScheme_t1876590943 InternalEnumerator_1_get_Current_m1830023619_gshared (InternalEnumerator_1_t2735343205 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1830023619_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
UriScheme_t1876590943 L_8 = (( UriScheme_t1876590943 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" UriScheme_t1876590943 InternalEnumerator_1_get_Current_m1830023619_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2735343205 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2735343205 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1830023619(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.Examples.VertexJitter/VertexAnim>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1099568932_gshared (InternalEnumerator_1_t3006529267 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1099568932_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3006529267 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3006529267 *>(__this + 1);
InternalEnumerator_1__ctor_m1099568932(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.Examples.VertexJitter/VertexAnim>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2964208040_gshared (InternalEnumerator_1_t3006529267 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2964208040_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3006529267 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3006529267 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2964208040(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.Examples.VertexJitter/VertexAnim>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m261195256_gshared (InternalEnumerator_1_t3006529267 * __this, const MethodInfo* method)
{
{
VertexAnim_t2147777005 L_0 = InternalEnumerator_1_get_Current_m2510622877((InternalEnumerator_1_t3006529267 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
VertexAnim_t2147777005 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m261195256_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3006529267 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3006529267 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m261195256(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.Examples.VertexJitter/VertexAnim>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1818682717_gshared (InternalEnumerator_1_t3006529267 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1818682717_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3006529267 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3006529267 *>(__this + 1);
InternalEnumerator_1_Dispose_m1818682717(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.Examples.VertexJitter/VertexAnim>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3573433764_gshared (InternalEnumerator_1_t3006529267 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3573433764_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3006529267 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3006529267 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3573433764(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.Examples.VertexJitter/VertexAnim>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2510622877_MetadataUsageId;
extern "C" VertexAnim_t2147777005 InternalEnumerator_1_get_Current_m2510622877_gshared (InternalEnumerator_1_t3006529267 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2510622877_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
VertexAnim_t2147777005 L_8 = (( VertexAnim_t2147777005 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" VertexAnim_t2147777005 InternalEnumerator_1_get_Current_m2510622877_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3006529267 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3006529267 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2510622877(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.MaterialReference>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2888568181_gshared (InternalEnumerator_1_t3713105758 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2888568181_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3713105758 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3713105758 *>(__this + 1);
InternalEnumerator_1__ctor_m2888568181(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.MaterialReference>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2731026953_gshared (InternalEnumerator_1_t3713105758 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2731026953_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3713105758 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3713105758 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2731026953(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.MaterialReference>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m527695669_gshared (InternalEnumerator_1_t3713105758 * __this, const MethodInfo* method)
{
{
MaterialReference_t2854353496 L_0 = InternalEnumerator_1_get_Current_m1563492482((InternalEnumerator_1_t3713105758 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
MaterialReference_t2854353496 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m527695669_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3713105758 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3713105758 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m527695669(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.MaterialReference>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2741830586_gshared (InternalEnumerator_1_t3713105758 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2741830586_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3713105758 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3713105758 *>(__this + 1);
InternalEnumerator_1_Dispose_m2741830586(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.MaterialReference>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1724505897_gshared (InternalEnumerator_1_t3713105758 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1724505897_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3713105758 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3713105758 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1724505897(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.MaterialReference>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1563492482_MetadataUsageId;
extern "C" MaterialReference_t2854353496 InternalEnumerator_1_get_Current_m1563492482_gshared (InternalEnumerator_1_t3713105758 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1563492482_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
MaterialReference_t2854353496 L_8 = (( MaterialReference_t2854353496 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" MaterialReference_t2854353496 InternalEnumerator_1_get_Current_m1563492482_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3713105758 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3713105758 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1563492482(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1330199199_gshared (InternalEnumerator_1_t1116607164 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1330199199_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1116607164 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1116607164 *>(__this + 1);
InternalEnumerator_1__ctor_m1330199199(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3735432231_gshared (InternalEnumerator_1_t1116607164 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3735432231_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1116607164 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1116607164 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3735432231(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4280726479_gshared (InternalEnumerator_1_t1116607164 * __this, const MethodInfo* method)
{
{
SpriteData_t257854902 L_0 = InternalEnumerator_1_get_Current_m1962778198((InternalEnumerator_1_t1116607164 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
SpriteData_t257854902 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4280726479_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1116607164 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1116607164 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4280726479(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3780768114_gshared (InternalEnumerator_1_t1116607164 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3780768114_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1116607164 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1116607164 *>(__this + 1);
InternalEnumerator_1_Dispose_m3780768114(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1614081379_gshared (InternalEnumerator_1_t1116607164 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1614081379_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1116607164 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1116607164 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1614081379(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1962778198_MetadataUsageId;
extern "C" SpriteData_t257854902 InternalEnumerator_1_get_Current_m1962778198_gshared (InternalEnumerator_1_t1116607164 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1962778198_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
SpriteData_t257854902 L_8 = (( SpriteData_t257854902 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" SpriteData_t257854902 InternalEnumerator_1_get_Current_m1962778198_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1116607164 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1116607164 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1962778198(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m4192565999_gshared (InternalEnumerator_1_t2325540586 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m4192565999_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2325540586 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2325540586 *>(__this + 1);
InternalEnumerator_1__ctor_m4192565999(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4030853103_gshared (InternalEnumerator_1_t2325540586 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4030853103_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2325540586 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2325540586 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4030853103(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3431950419_gshared (InternalEnumerator_1_t2325540586 * __this, const MethodInfo* method)
{
{
int32_t L_0 = InternalEnumerator_1_get_Current_m177386040((InternalEnumerator_1_t2325540586 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int32_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3431950419_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2325540586 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2325540586 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3431950419(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m367560718_gshared (InternalEnumerator_1_t2325540586 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m367560718_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2325540586 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2325540586 *>(__this + 1);
InternalEnumerator_1_Dispose_m367560718(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3668117275_gshared (InternalEnumerator_1_t2325540586 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3668117275_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2325540586 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2325540586 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3668117275(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TextAlignmentOptions>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m177386040_MetadataUsageId;
extern "C" int32_t InternalEnumerator_1_get_Current_m177386040_gshared (InternalEnumerator_1_t2325540586 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m177386040_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int32_t L_8 = (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int32_t InternalEnumerator_1_get_Current_m177386040_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2325540586 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2325540586 *>(__this + 1);
return InternalEnumerator_1_get_Current_m177386040(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m726353654_gshared (InternalEnumerator_1_t2280055053 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m726353654_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2280055053 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2280055053 *>(__this + 1);
InternalEnumerator_1__ctor_m726353654(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4104030706_gshared (InternalEnumerator_1_t2280055053 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4104030706_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2280055053 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2280055053 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4104030706(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1309761284_gshared (InternalEnumerator_1_t2280055053 * __this, const MethodInfo* method)
{
{
TMP_CharacterInfo_t1421302791 L_0 = InternalEnumerator_1_get_Current_m535459929((InternalEnumerator_1_t2280055053 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_CharacterInfo_t1421302791 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1309761284_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2280055053 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2280055053 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1309761284(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3446247345_gshared (InternalEnumerator_1_t2280055053 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3446247345_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2280055053 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2280055053 *>(__this + 1);
InternalEnumerator_1_Dispose_m3446247345(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3714906182_gshared (InternalEnumerator_1_t2280055053 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3714906182_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2280055053 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2280055053 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3714906182(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_CharacterInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m535459929_MetadataUsageId;
extern "C" TMP_CharacterInfo_t1421302791 InternalEnumerator_1_get_Current_m535459929_gshared (InternalEnumerator_1_t2280055053 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m535459929_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_CharacterInfo_t1421302791 L_8 = (( TMP_CharacterInfo_t1421302791 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_CharacterInfo_t1421302791 InternalEnumerator_1_get_Current_m535459929_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2280055053 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2280055053 *>(__this + 1);
return InternalEnumerator_1_get_Current_m535459929(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3598785267_gshared (InternalEnumerator_1_t2422920564 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3598785267_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2422920564 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2422920564 *>(__this + 1);
InternalEnumerator_1__ctor_m3598785267(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3108139035_gshared (InternalEnumerator_1_t2422920564 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3108139035_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2422920564 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2422920564 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3108139035(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4067496539_gshared (InternalEnumerator_1_t2422920564 * __this, const MethodInfo* method)
{
{
TMP_FontWeights_t1564168302 L_0 = InternalEnumerator_1_get_Current_m1748731380((InternalEnumerator_1_t2422920564 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_FontWeights_t1564168302 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4067496539_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2422920564 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2422920564 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4067496539(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1134741744_gshared (InternalEnumerator_1_t2422920564 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1134741744_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2422920564 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2422920564 *>(__this + 1);
InternalEnumerator_1_Dispose_m1134741744(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3920080015_gshared (InternalEnumerator_1_t2422920564 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3920080015_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2422920564 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2422920564 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3920080015(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_FontWeights>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1748731380_MetadataUsageId;
extern "C" TMP_FontWeights_t1564168302 InternalEnumerator_1_get_Current_m1748731380_gshared (InternalEnumerator_1_t2422920564 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1748731380_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_FontWeights_t1564168302 L_8 = (( TMP_FontWeights_t1564168302 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_FontWeights_t1564168302 InternalEnumerator_1_get_Current_m1748731380_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2422920564 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2422920564 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1748731380(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1434242033_gshared (InternalEnumerator_1_t858221390 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1434242033_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t858221390 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t858221390 *>(__this + 1);
InternalEnumerator_1__ctor_m1434242033(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m329918893_gshared (InternalEnumerator_1_t858221390 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m329918893_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t858221390 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t858221390 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m329918893(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m625499285_gshared (InternalEnumerator_1_t858221390 * __this, const MethodInfo* method)
{
{
int32_t L_0 = InternalEnumerator_1_get_Current_m123180730((InternalEnumerator_1_t858221390 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int32_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m625499285_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t858221390 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t858221390 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m625499285(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2421801336_gshared (InternalEnumerator_1_t858221390 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2421801336_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t858221390 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t858221390 *>(__this + 1);
InternalEnumerator_1_Dispose_m2421801336(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3422167269_gshared (InternalEnumerator_1_t858221390 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3422167269_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t858221390 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t858221390 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3422167269(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_InputField/ContentType>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m123180730_MetadataUsageId;
extern "C" int32_t InternalEnumerator_1_get_Current_m123180730_gshared (InternalEnumerator_1_t858221390 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m123180730_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int32_t L_8 = (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int32_t InternalEnumerator_1_get_Current_m123180730_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t858221390 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t858221390 *>(__this + 1);
return InternalEnumerator_1_get_Current_m123180730(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m32586343_gshared (InternalEnumerator_1_t3179170388 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m32586343_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3179170388 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3179170388 *>(__this + 1);
InternalEnumerator_1__ctor_m32586343(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1993061279_gshared (InternalEnumerator_1_t3179170388 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1993061279_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3179170388 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3179170388 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1993061279(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2989022635_gshared (InternalEnumerator_1_t3179170388 * __this, const MethodInfo* method)
{
{
TMP_LineInfo_t2320418126 L_0 = InternalEnumerator_1_get_Current_m2875411046((InternalEnumerator_1_t3179170388 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_LineInfo_t2320418126 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2989022635_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3179170388 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3179170388 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2989022635(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1440743584_gshared (InternalEnumerator_1_t3179170388 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1440743584_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3179170388 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3179170388 *>(__this + 1);
InternalEnumerator_1_Dispose_m1440743584(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2480815451_gshared (InternalEnumerator_1_t3179170388 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2480815451_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3179170388 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3179170388 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2480815451(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_LineInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2875411046_MetadataUsageId;
extern "C" TMP_LineInfo_t2320418126 InternalEnumerator_1_get_Current_m2875411046_gshared (InternalEnumerator_1_t3179170388 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2875411046_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_LineInfo_t2320418126 L_8 = (( TMP_LineInfo_t2320418126 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_LineInfo_t2320418126 InternalEnumerator_1_get_Current_m2875411046_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3179170388 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3179170388 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2875411046(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1050526365_gshared (InternalEnumerator_1_t190679926 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1050526365_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t190679926 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t190679926 *>(__this + 1);
InternalEnumerator_1__ctor_m1050526365(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m922796697_gshared (InternalEnumerator_1_t190679926 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m922796697_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t190679926 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t190679926 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m922796697(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m201737081_gshared (InternalEnumerator_1_t190679926 * __this, const MethodInfo* method)
{
{
TMP_LinkInfo_t3626894960 L_0 = InternalEnumerator_1_get_Current_m2259488372((InternalEnumerator_1_t190679926 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_LinkInfo_t3626894960 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m201737081_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t190679926 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t190679926 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m201737081(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1894461358_gshared (InternalEnumerator_1_t190679926 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1894461358_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t190679926 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t190679926 *>(__this + 1);
InternalEnumerator_1_Dispose_m1894461358(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3438128313_gshared (InternalEnumerator_1_t190679926 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3438128313_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t190679926 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t190679926 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3438128313(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_LinkInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2259488372_MetadataUsageId;
extern "C" TMP_LinkInfo_t3626894960 InternalEnumerator_1_get_Current_m2259488372_gshared (InternalEnumerator_1_t190679926 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2259488372_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_LinkInfo_t3626894960 L_8 = (( TMP_LinkInfo_t3626894960 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_LinkInfo_t3626894960 InternalEnumerator_1_get_Current_m2259488372_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t190679926 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t190679926 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2259488372(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m227725692_gshared (InternalEnumerator_1_t2156060579 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m227725692_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2156060579 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2156060579 *>(__this + 1);
InternalEnumerator_1__ctor_m227725692(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m640136460_gshared (InternalEnumerator_1_t2156060579 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m640136460_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2156060579 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2156060579 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m640136460(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1568010720_gshared (InternalEnumerator_1_t2156060579 * __this, const MethodInfo* method)
{
{
TMP_MeshInfo_t1297308317 L_0 = InternalEnumerator_1_get_Current_m2549579995((InternalEnumerator_1_t2156060579 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_MeshInfo_t1297308317 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1568010720_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2156060579 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2156060579 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1568010720(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2676063691_gshared (InternalEnumerator_1_t2156060579 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2676063691_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2156060579 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2156060579 *>(__this + 1);
InternalEnumerator_1_Dispose_m2676063691(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m508299956_gshared (InternalEnumerator_1_t2156060579 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m508299956_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2156060579 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2156060579 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m508299956(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_MeshInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2549579995_MetadataUsageId;
extern "C" TMP_MeshInfo_t1297308317 InternalEnumerator_1_get_Current_m2549579995_gshared (InternalEnumerator_1_t2156060579 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2549579995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_MeshInfo_t1297308317 L_8 = (( TMP_MeshInfo_t1297308317 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_MeshInfo_t1297308317 InternalEnumerator_1_get_Current_m2549579995_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2156060579 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2156060579 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2549579995(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m907800022_gshared (InternalEnumerator_1_t408917303 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m907800022_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t408917303 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t408917303 *>(__this + 1);
InternalEnumerator_1__ctor_m907800022(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3346922102_gshared (InternalEnumerator_1_t408917303 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3346922102_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t408917303 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t408917303 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3346922102(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3196145066_gshared (InternalEnumerator_1_t408917303 * __this, const MethodInfo* method)
{
{
TMP_PageInfo_t3845132337 L_0 = InternalEnumerator_1_get_Current_m60002703((InternalEnumerator_1_t408917303 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_PageInfo_t3845132337 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3196145066_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t408917303 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t408917303 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3196145066(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1487328167_gshared (InternalEnumerator_1_t408917303 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1487328167_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t408917303 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t408917303 *>(__this + 1);
InternalEnumerator_1_Dispose_m1487328167(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3450538862_gshared (InternalEnumerator_1_t408917303 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3450538862_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t408917303 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t408917303 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3450538862(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_PageInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m60002703_MetadataUsageId;
extern "C" TMP_PageInfo_t3845132337 InternalEnumerator_1_get_Current_m60002703_gshared (InternalEnumerator_1_t408917303 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m60002703_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_PageInfo_t3845132337 L_8 = (( TMP_PageInfo_t3845132337 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_PageInfo_t3845132337 InternalEnumerator_1_get_Current_m60002703_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t408917303 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t408917303 *>(__this + 1);
return InternalEnumerator_1_get_Current_m60002703(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1345606467_gshared (InternalEnumerator_1_t371242578 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1345606467_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t371242578 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t371242578 *>(__this + 1);
InternalEnumerator_1__ctor_m1345606467(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561734939_gshared (InternalEnumerator_1_t371242578 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561734939_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t371242578 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t371242578 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561734939(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2199950767_gshared (InternalEnumerator_1_t371242578 * __this, const MethodInfo* method)
{
{
TMP_WordInfo_t3807457612 L_0 = InternalEnumerator_1_get_Current_m161304660((InternalEnumerator_1_t371242578 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
TMP_WordInfo_t3807457612 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2199950767_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t371242578 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t371242578 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2199950767(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1102652970_gshared (InternalEnumerator_1_t371242578 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1102652970_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t371242578 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t371242578 *>(__this + 1);
InternalEnumerator_1_Dispose_m1102652970(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2120287343_gshared (InternalEnumerator_1_t371242578 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2120287343_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t371242578 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t371242578 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2120287343(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.TMP_WordInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m161304660_MetadataUsageId;
extern "C" TMP_WordInfo_t3807457612 InternalEnumerator_1_get_Current_m161304660_gshared (InternalEnumerator_1_t371242578 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m161304660_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
TMP_WordInfo_t3807457612 L_8 = (( TMP_WordInfo_t3807457612 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" TMP_WordInfo_t3807457612 InternalEnumerator_1_get_Current_m161304660_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t371242578 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t371242578 *>(__this + 1);
return InternalEnumerator_1_get_Current_m161304660(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m532836529_gshared (InternalEnumerator_1_t2738537254 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m532836529_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2738537254 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2738537254 *>(__this + 1);
InternalEnumerator_1__ctor_m532836529(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2016405621_gshared (InternalEnumerator_1_t2738537254 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2016405621_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2738537254 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2738537254 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2016405621(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4281499861_gshared (InternalEnumerator_1_t2738537254 * __this, const MethodInfo* method)
{
{
XML_TagAttribute_t1879784992 L_0 = InternalEnumerator_1_get_Current_m3283841392((InternalEnumerator_1_t2738537254 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
XML_TagAttribute_t1879784992 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4281499861_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2738537254 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2738537254 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4281499861(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3780341666_gshared (InternalEnumerator_1_t2738537254 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3780341666_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2738537254 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2738537254 *>(__this + 1);
InternalEnumerator_1_Dispose_m3780341666(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m947340461_gshared (InternalEnumerator_1_t2738537254 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m947340461_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2738537254 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2738537254 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m947340461(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<TMPro.XML_TagAttribute>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3283841392_MetadataUsageId;
extern "C" XML_TagAttribute_t1879784992 InternalEnumerator_1_get_Current_m3283841392_gshared (InternalEnumerator_1_t2738537254 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3283841392_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
XML_TagAttribute_t1879784992 L_8 = (( XML_TagAttribute_t1879784992 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" XML_TagAttribute_t1879784992 InternalEnumerator_1_get_Current_m3283841392_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2738537254 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2738537254 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3283841392(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m838009241_gshared (InternalEnumerator_1_t2879144337 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m838009241_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2879144337 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2879144337 *>(__this + 1);
InternalEnumerator_1__ctor_m838009241(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4103553221_gshared (InternalEnumerator_1_t2879144337 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4103553221_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2879144337 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2879144337 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4103553221(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3843687121_gshared (InternalEnumerator_1_t2879144337 * __this, const MethodInfo* method)
{
{
Color_t2020392075 L_0 = InternalEnumerator_1_get_Current_m4290564662((InternalEnumerator_1_t2879144337 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Color_t2020392075 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3843687121_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2879144337 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2879144337 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3843687121(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3984359374_gshared (InternalEnumerator_1_t2879144337 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3984359374_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2879144337 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2879144337 *>(__this + 1);
InternalEnumerator_1_Dispose_m3984359374(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3103009949_gshared (InternalEnumerator_1_t2879144337 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3103009949_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2879144337 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2879144337 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3103009949(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Color>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4290564662_MetadataUsageId;
extern "C" Color_t2020392075 InternalEnumerator_1_get_Current_m4290564662_gshared (InternalEnumerator_1_t2879144337 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4290564662_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Color_t2020392075 L_8 = (( Color_t2020392075 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Color_t2020392075 InternalEnumerator_1_get_Current_m4290564662_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2879144337 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2879144337 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4290564662(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m96919148_gshared (InternalEnumerator_1_t1733269780 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m96919148_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1733269780 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1733269780 *>(__this + 1);
InternalEnumerator_1__ctor_m96919148(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2275167408_gshared (InternalEnumerator_1_t1733269780 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2275167408_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1733269780 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1733269780 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2275167408(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m30488070_gshared (InternalEnumerator_1_t1733269780 * __this, const MethodInfo* method)
{
{
Color32_t874517518 L_0 = InternalEnumerator_1_get_Current_m3143558721((InternalEnumerator_1_t1733269780 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Color32_t874517518 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m30488070_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1733269780 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1733269780 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m30488070(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m876833153_gshared (InternalEnumerator_1_t1733269780 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m876833153_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1733269780 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1733269780 *>(__this + 1);
InternalEnumerator_1_Dispose_m876833153(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color32>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4068681772_gshared (InternalEnumerator_1_t1733269780 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4068681772_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1733269780 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1733269780 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4068681772(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Color32>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3143558721_MetadataUsageId;
extern "C" Color32_t874517518 InternalEnumerator_1_get_Current_m3143558721_gshared (InternalEnumerator_1_t1733269780 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3143558721_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Color32_t874517518 L_8 = (( Color32_t874517518 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Color32_t874517518 InternalEnumerator_1_get_Current_m3143558721_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1733269780 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1733269780 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3143558721(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3210262878_gshared (InternalEnumerator_1_t2235177892 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3210262878_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2235177892 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2235177892 *>(__this + 1);
InternalEnumerator_1__ctor_m3210262878(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2564106794_gshared (InternalEnumerator_1_t2235177892 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2564106794_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2235177892 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2235177892 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2564106794(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1497708066_gshared (InternalEnumerator_1_t2235177892 * __this, const MethodInfo* method)
{
{
ContactPoint_t1376425630 L_0 = InternalEnumerator_1_get_Current_m3035290781((InternalEnumerator_1_t2235177892 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ContactPoint_t1376425630 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1497708066_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2235177892 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2235177892 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1497708066(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3715403693_gshared (InternalEnumerator_1_t2235177892 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3715403693_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2235177892 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2235177892 *>(__this + 1);
InternalEnumerator_1_Dispose_m3715403693(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3299881374_gshared (InternalEnumerator_1_t2235177892 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3299881374_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2235177892 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2235177892 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3299881374(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3035290781_MetadataUsageId;
extern "C" ContactPoint_t1376425630 InternalEnumerator_1_get_Current_m3035290781_gshared (InternalEnumerator_1_t2235177892 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3035290781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
ContactPoint_t1376425630 L_8 = (( ContactPoint_t1376425630 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" ContactPoint_t1376425630 InternalEnumerator_1_get_Current_m3035290781_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2235177892 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2235177892 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3035290781(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint2D>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3623160640_gshared (InternalEnumerator_1_t223115942 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3623160640_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t223115942 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t223115942 *>(__this + 1);
InternalEnumerator_1__ctor_m3623160640(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint2D>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2619213736_gshared (InternalEnumerator_1_t223115942 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2619213736_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t223115942 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t223115942 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2619213736(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint2D>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2061144652_gshared (InternalEnumerator_1_t223115942 * __this, const MethodInfo* method)
{
{
ContactPoint2D_t3659330976 L_0 = InternalEnumerator_1_get_Current_m4045489063((InternalEnumerator_1_t223115942 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
ContactPoint2D_t3659330976 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2061144652_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t223115942 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t223115942 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2061144652(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint2D>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3885764311_gshared (InternalEnumerator_1_t223115942 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3885764311_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t223115942 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t223115942 *>(__this + 1);
InternalEnumerator_1_Dispose_m3885764311(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint2D>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2906956792_gshared (InternalEnumerator_1_t223115942 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2906956792_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t223115942 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t223115942 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2906956792(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint2D>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m4045489063_MetadataUsageId;
extern "C" ContactPoint2D_t3659330976 InternalEnumerator_1_get_Current_m4045489063_gshared (InternalEnumerator_1_t223115942 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m4045489063_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
ContactPoint2D_t3659330976 L_8 = (( ContactPoint2D_t3659330976 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" ContactPoint2D_t3659330976 InternalEnumerator_1_get_Current_m4045489063_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t223115942 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t223115942 *>(__this + 1);
return InternalEnumerator_1_get_Current_m4045489063(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m994739194_gshared (InternalEnumerator_1_t879938638 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m994739194_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t879938638 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t879938638 *>(__this + 1);
InternalEnumerator_1__ctor_m994739194(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2046302786_gshared (InternalEnumerator_1_t879938638 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2046302786_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t879938638 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t879938638 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2046302786(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2900144990_gshared (InternalEnumerator_1_t879938638 * __this, const MethodInfo* method)
{
{
RaycastResult_t21186376 L_0 = InternalEnumerator_1_get_Current_m319833891((InternalEnumerator_1_t879938638 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
RaycastResult_t21186376 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2900144990_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t879938638 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t879938638 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2900144990(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3805775699_gshared (InternalEnumerator_1_t879938638 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3805775699_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t879938638 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t879938638 *>(__this + 1);
InternalEnumerator_1_Dispose_m3805775699(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m572812642_gshared (InternalEnumerator_1_t879938638 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m572812642_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t879938638 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t879938638 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m572812642(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m319833891_MetadataUsageId;
extern "C" RaycastResult_t21186376 InternalEnumerator_1_get_Current_m319833891_gshared (InternalEnumerator_1_t879938638 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m319833891_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
RaycastResult_t21186376 L_8 = (( RaycastResult_t21186376 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" RaycastResult_t21186376 InternalEnumerator_1_get_Current_m319833891_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t879938638 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t879938638 *>(__this + 1);
return InternalEnumerator_1_get_Current_m319833891(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.Director.Playable>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1561877944_gshared (InternalEnumerator_1_t231330514 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1561877944_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t231330514 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t231330514 *>(__this + 1);
InternalEnumerator_1__ctor_m1561877944(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.Director.Playable>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m196087328_gshared (InternalEnumerator_1_t231330514 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m196087328_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t231330514 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t231330514 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m196087328(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Experimental.Director.Playable>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1810411564_gshared (InternalEnumerator_1_t231330514 * __this, const MethodInfo* method)
{
{
Playable_t3667545548 L_0 = InternalEnumerator_1_get_Current_m1443393095((InternalEnumerator_1_t231330514 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Playable_t3667545548 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1810411564_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t231330514 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t231330514 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1810411564(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.Director.Playable>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2135741487_gshared (InternalEnumerator_1_t231330514 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2135741487_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t231330514 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t231330514 *>(__this + 1);
InternalEnumerator_1_Dispose_m2135741487(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Experimental.Director.Playable>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m725174512_gshared (InternalEnumerator_1_t231330514 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m725174512_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t231330514 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t231330514 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m725174512(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Experimental.Director.Playable>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1443393095_MetadataUsageId;
extern "C" Playable_t3667545548 InternalEnumerator_1_get_Current_m1443393095_gshared (InternalEnumerator_1_t231330514 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1443393095_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Playable_t3667545548 L_8 = (( Playable_t3667545548 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Playable_t3667545548 InternalEnumerator_1_get_Current_m1443393095_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t231330514 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t231330514 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1443393095(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2007859216_gshared (InternalEnumerator_1_t2308223602 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2007859216_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2308223602 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2308223602 *>(__this + 1);
InternalEnumerator_1__ctor_m2007859216(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715220344_gshared (InternalEnumerator_1_t2308223602 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715220344_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2308223602 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2308223602 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715220344(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m790514740_gshared (InternalEnumerator_1_t2308223602 * __this, const MethodInfo* method)
{
{
Keyframe_t1449471340 L_0 = InternalEnumerator_1_get_Current_m3959023023((InternalEnumerator_1_t2308223602 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Keyframe_t1449471340 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m790514740_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2308223602 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2308223602 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m790514740(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3766393335_gshared (InternalEnumerator_1_t2308223602 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3766393335_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2308223602 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2308223602 *>(__this + 1);
InternalEnumerator_1_Dispose_m3766393335(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2289229080_gshared (InternalEnumerator_1_t2308223602 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2289229080_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2308223602 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2308223602 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2289229080(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3959023023_MetadataUsageId;
extern "C" Keyframe_t1449471340 InternalEnumerator_1_get_Current_m3959023023_gshared (InternalEnumerator_1_t2308223602 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3959023023_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Keyframe_t1449471340 L_8 = (( Keyframe_t1449471340 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Keyframe_t1449471340 InternalEnumerator_1_get_Current_m3959023023_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2308223602 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2308223602 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3959023023(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3664249240_gshared (InternalEnumerator_1_t945932582 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3664249240_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t945932582 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t945932582 *>(__this + 1);
InternalEnumerator_1__ctor_m3664249240(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m192344320_gshared (InternalEnumerator_1_t945932582 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m192344320_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t945932582 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t945932582 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m192344320(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3043347404_gshared (InternalEnumerator_1_t945932582 * __this, const MethodInfo* method)
{
{
RaycastHit_t87180320 L_0 = InternalEnumerator_1_get_Current_m1715820327((InternalEnumerator_1_t945932582 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
RaycastHit_t87180320 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3043347404_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t945932582 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t945932582 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3043347404(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3464626239_gshared (InternalEnumerator_1_t945932582 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3464626239_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t945932582 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t945932582 *>(__this + 1);
InternalEnumerator_1_Dispose_m3464626239(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3332669936_gshared (InternalEnumerator_1_t945932582 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3332669936_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t945932582 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t945932582 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3332669936(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1715820327_MetadataUsageId;
extern "C" RaycastHit_t87180320 InternalEnumerator_1_get_Current_m1715820327_gshared (InternalEnumerator_1_t945932582 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1715820327_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
RaycastHit_t87180320 L_8 = (( RaycastHit_t87180320 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" RaycastHit_t87180320 InternalEnumerator_1_get_Current_m1715820327_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t945932582 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t945932582 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1715820327(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m32322958_gshared (InternalEnumerator_1_t627693740 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m32322958_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t627693740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t627693740 *>(__this + 1);
InternalEnumerator_1__ctor_m32322958(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1777467498_gshared (InternalEnumerator_1_t627693740 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1777467498_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t627693740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t627693740 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1777467498(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1533037706_gshared (InternalEnumerator_1_t627693740 * __this, const MethodInfo* method)
{
{
RaycastHit2D_t4063908774 L_0 = InternalEnumerator_1_get_Current_m1025321669((InternalEnumerator_1_t627693740 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
RaycastHit2D_t4063908774 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1533037706_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t627693740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t627693740 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1533037706(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m4040890621_gshared (InternalEnumerator_1_t627693740 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m4040890621_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t627693740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t627693740 *>(__this + 1);
InternalEnumerator_1_Dispose_m4040890621(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1799288398_gshared (InternalEnumerator_1_t627693740 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1799288398_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t627693740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t627693740 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1799288398(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1025321669_MetadataUsageId;
extern "C" RaycastHit2D_t4063908774 InternalEnumerator_1_get_Current_m1025321669_gshared (InternalEnumerator_1_t627693740 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1025321669_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
RaycastHit2D_t4063908774 L_8 = (( RaycastHit2D_t4063908774 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" RaycastHit2D_t4063908774 InternalEnumerator_1_get_Current_m1025321669_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t627693740 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t627693740 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1025321669(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3220229132_gshared (InternalEnumerator_1_t2620119317 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3220229132_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2620119317 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2620119317 *>(__this + 1);
InternalEnumerator_1__ctor_m3220229132(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m574988908_gshared (InternalEnumerator_1_t2620119317 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m574988908_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2620119317 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2620119317 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m574988908(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1933635818_gshared (InternalEnumerator_1_t2620119317 * __this, const MethodInfo* method)
{
{
HitInfo_t1761367055 L_0 = InternalEnumerator_1_get_Current_m2826780083((InternalEnumerator_1_t2620119317 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
HitInfo_t1761367055 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1933635818_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2620119317 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2620119317 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1933635818(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m282312359_gshared (InternalEnumerator_1_t2620119317 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m282312359_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2620119317 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2620119317 *>(__this + 1);
InternalEnumerator_1_Dispose_m282312359(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m886855812_gshared (InternalEnumerator_1_t2620119317 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m886855812_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2620119317 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2620119317 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m886855812(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2826780083_MetadataUsageId;
extern "C" HitInfo_t1761367055 InternalEnumerator_1_get_Current_m2826780083_gshared (InternalEnumerator_1_t2620119317 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2826780083_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
HitInfo_t1761367055 L_8 = (( HitInfo_t1761367055 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" HitInfo_t1761367055 InternalEnumerator_1_get_Current_m2826780083_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2620119317 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2620119317 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2826780083(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2458691472_gshared (InternalEnumerator_1_t1887381311 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2458691472_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t1887381311 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1887381311 *>(__this + 1);
InternalEnumerator_1__ctor_m2458691472(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m86252988_gshared (InternalEnumerator_1_t1887381311 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m86252988_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1887381311 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1887381311 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m86252988(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2389982234_gshared (InternalEnumerator_1_t1887381311 * __this, const MethodInfo* method)
{
{
int32_t L_0 = InternalEnumerator_1_get_Current_m3732458101((InternalEnumerator_1_t1887381311 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
int32_t L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2389982234_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1887381311 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1887381311 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2389982234(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m3291666845_gshared (InternalEnumerator_1_t1887381311 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m3291666845_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1887381311 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1887381311 *>(__this + 1);
InternalEnumerator_1_Dispose_m3291666845(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m252820768_gshared (InternalEnumerator_1_t1887381311 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m252820768_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1887381311 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1887381311 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m252820768(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.UI.InputField/ContentType>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m3732458101_MetadataUsageId;
extern "C" int32_t InternalEnumerator_1_get_Current_m3732458101_gshared (InternalEnumerator_1_t1887381311 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m3732458101_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
int32_t L_8 = (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" int32_t InternalEnumerator_1_get_Current_m3732458101_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t1887381311 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t1887381311 *>(__this + 1);
return InternalEnumerator_1_get_Current_m3732458101(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m1815261138_gshared (InternalEnumerator_1_t3915389062 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m1815261138_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3915389062 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3915389062 *>(__this + 1);
InternalEnumerator_1__ctor_m1815261138(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2208002250_gshared (InternalEnumerator_1_t3915389062 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2208002250_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3915389062 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3915389062 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2208002250(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m160972190_gshared (InternalEnumerator_1_t3915389062 * __this, const MethodInfo* method)
{
{
UICharInfo_t3056636800 L_0 = InternalEnumerator_1_get_Current_m889125315((InternalEnumerator_1_t3915389062 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
UICharInfo_t3056636800 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m160972190_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3915389062 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3915389062 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m160972190(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1399397099_gshared (InternalEnumerator_1_t3915389062 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1399397099_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3915389062 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3915389062 *>(__this + 1);
InternalEnumerator_1_Dispose_m1399397099(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m3850699098_gshared (InternalEnumerator_1_t3915389062 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m3850699098_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3915389062 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3915389062 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m3850699098(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m889125315_MetadataUsageId;
extern "C" UICharInfo_t3056636800 InternalEnumerator_1_get_Current_m889125315_gshared (InternalEnumerator_1_t3915389062 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m889125315_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
UICharInfo_t3056636800 L_8 = (( UICharInfo_t3056636800 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" UICharInfo_t3056636800 InternalEnumerator_1_get_Current_m889125315_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3915389062 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3915389062 *>(__this + 1);
return InternalEnumerator_1_get_Current_m889125315(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m681761736_gshared (InternalEnumerator_1_t185062840 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m681761736_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t185062840 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185062840 *>(__this + 1);
InternalEnumerator_1__ctor_m681761736(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3775211636_gshared (InternalEnumerator_1_t185062840 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3775211636_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t185062840 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185062840 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3775211636(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2821735692_gshared (InternalEnumerator_1_t185062840 * __this, const MethodInfo* method)
{
{
UILineInfo_t3621277874 L_0 = InternalEnumerator_1_get_Current_m2105085649((InternalEnumerator_1_t185062840 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
UILineInfo_t3621277874 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2821735692_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t185062840 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185062840 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2821735692(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2045737049_gshared (InternalEnumerator_1_t185062840 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2045737049_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t185062840 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185062840 *>(__this + 1);
InternalEnumerator_1_Dispose_m2045737049(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2410670600_gshared (InternalEnumerator_1_t185062840 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2410670600_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t185062840 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185062840 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2410670600(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2105085649_MetadataUsageId;
extern "C" UILineInfo_t3621277874 InternalEnumerator_1_get_Current_m2105085649_gshared (InternalEnumerator_1_t185062840 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2105085649_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
UILineInfo_t3621277874 L_8 = (( UILineInfo_t3621277874 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" UILineInfo_t3621277874 InternalEnumerator_1_get_Current_m2105085649_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t185062840 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t185062840 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2105085649(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2956304256_gshared (InternalEnumerator_1_t2063011080 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2956304256_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t2063011080 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2063011080 *>(__this + 1);
InternalEnumerator_1__ctor_m2956304256(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2315964220_gshared (InternalEnumerator_1_t2063011080 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2315964220_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2063011080 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2063011080 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2315964220(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2764360876_gshared (InternalEnumerator_1_t2063011080 * __this, const MethodInfo* method)
{
{
UIVertex_t1204258818 L_0 = InternalEnumerator_1_get_Current_m1883328177((InternalEnumerator_1_t2063011080 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
UIVertex_t1204258818 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2764360876_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2063011080 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2063011080 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2764360876(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m4229866913_gshared (InternalEnumerator_1_t2063011080 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m4229866913_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2063011080 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2063011080 *>(__this + 1);
InternalEnumerator_1_Dispose_m4229866913(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4061424048_gshared (InternalEnumerator_1_t2063011080 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4061424048_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2063011080 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2063011080 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4061424048(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m1883328177_MetadataUsageId;
extern "C" UIVertex_t1204258818 InternalEnumerator_1_get_Current_m1883328177_gshared (InternalEnumerator_1_t2063011080 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m1883328177_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
UIVertex_t1204258818 L_8 = (( UIVertex_t1204258818 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" UIVertex_t1204258818 InternalEnumerator_1_get_Current_m1883328177_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t2063011080 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t2063011080 *>(__this + 1);
return InternalEnumerator_1_get_Current_m1883328177(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2808001655_gshared (InternalEnumerator_1_t3102459841 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2808001655_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3102459841 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459841 *>(__this + 1);
InternalEnumerator_1__ctor_m2808001655(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1018453615_gshared (InternalEnumerator_1_t3102459841 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1018453615_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459841 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459841 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1018453615(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m442726479_gshared (InternalEnumerator_1_t3102459841 * __this, const MethodInfo* method)
{
{
Vector2_t2243707579 L_0 = InternalEnumerator_1_get_Current_m2986222582((InternalEnumerator_1_t3102459841 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Vector2_t2243707579 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m442726479_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459841 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459841 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m442726479(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m2270401482_gshared (InternalEnumerator_1_t3102459841 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m2270401482_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459841 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459841 *>(__this + 1);
InternalEnumerator_1_Dispose_m2270401482(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector2>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m4175772187_gshared (InternalEnumerator_1_t3102459841 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m4175772187_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459841 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459841 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m4175772187(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Vector2>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2986222582_MetadataUsageId;
extern "C" Vector2_t2243707579 InternalEnumerator_1_get_Current_m2986222582_gshared (InternalEnumerator_1_t3102459841 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2986222582_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Vector2_t2243707579 L_8 = (( Vector2_t2243707579 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Vector2_t2243707579 InternalEnumerator_1_get_Current_m2986222582_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459841 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459841 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2986222582(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m2782443954_gshared (InternalEnumerator_1_t3102459842 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m2782443954_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3102459842 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459842 *>(__this + 1);
InternalEnumerator_1__ctor_m2782443954(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2361456586_gshared (InternalEnumerator_1_t3102459842 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2361456586_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459842 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459842 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2361456586(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m762846484_gshared (InternalEnumerator_1_t3102459842 * __this, const MethodInfo* method)
{
{
Vector3_t2243707580 L_0 = InternalEnumerator_1_get_Current_m747506907((InternalEnumerator_1_t3102459842 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Vector3_t2243707580 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m762846484_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459842 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459842 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m762846484(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m14398895_gshared (InternalEnumerator_1_t3102459842 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m14398895_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459842 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459842 *>(__this + 1);
InternalEnumerator_1_Dispose_m14398895(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector3>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m2953305370_gshared (InternalEnumerator_1_t3102459842 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m2953305370_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459842 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459842 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m2953305370(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Vector3>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m747506907_MetadataUsageId;
extern "C" Vector3_t2243707580 InternalEnumerator_1_get_Current_m747506907_gshared (InternalEnumerator_1_t3102459842 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m747506907_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Vector3_t2243707580 L_8 = (( Vector3_t2243707580 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Vector3_t2243707580 InternalEnumerator_1_get_Current_m747506907_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459842 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459842 *>(__this + 1);
return InternalEnumerator_1_get_Current_m747506907(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::.ctor(System.Array)
extern "C" void InternalEnumerator_1__ctor_m3901400705_gshared (InternalEnumerator_1_t3102459843 * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
{
Il2CppArray * L_0 = ___array0;
__this->set_array_0(L_0);
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1__ctor_m3901400705_AdjustorThunk (Il2CppObject * __this, Il2CppArray * ___array0, const MethodInfo* method)
{
InternalEnumerator_1_t3102459843 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459843 *>(__this + 1);
InternalEnumerator_1__ctor_m3901400705(_thisAdjusted, ___array0, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset()
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3994416165_gshared (InternalEnumerator_1_t3102459843 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3994416165_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459843 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459843 *>(__this + 1);
InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3994416165(_thisAdjusted, method);
}
// System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current()
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1699120817_gshared (InternalEnumerator_1_t3102459843 * __this, const MethodInfo* method)
{
{
Vector4_t2243707581 L_0 = InternalEnumerator_1_get_Current_m2687258796((InternalEnumerator_1_t3102459843 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 0));
Vector4_t2243707581 L_1 = L_0;
Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->declaring_type)->rgctx_data, 1), &L_1);
return L_2;
}
}
extern "C" Il2CppObject * InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1699120817_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459843 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459843 *>(__this + 1);
return InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1699120817(_thisAdjusted, method);
}
// System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::Dispose()
extern "C" void InternalEnumerator_1_Dispose_m1925604588_gshared (InternalEnumerator_1_t3102459843 * __this, const MethodInfo* method)
{
{
__this->set_idx_1(((int32_t)-2));
return;
}
}
extern "C" void InternalEnumerator_1_Dispose_m1925604588_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459843 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459843 *>(__this + 1);
InternalEnumerator_1_Dispose_m1925604588(_thisAdjusted, method);
}
// System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector4>::MoveNext()
extern "C" bool InternalEnumerator_1_MoveNext_m1441038493_gshared (InternalEnumerator_1_t3102459843 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_001e;
}
}
{
Il2CppArray * L_1 = (Il2CppArray *)__this->get_array_0();
int32_t L_2 = Array_get_Length_m1498215565((Il2CppArray *)L_1, /*hidden argument*/NULL);
__this->set_idx_1(L_2);
}
IL_001e:
{
int32_t L_3 = (int32_t)__this->get_idx_1();
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
int32_t L_4 = (int32_t)__this->get_idx_1();
int32_t L_5 = (int32_t)((int32_t)((int32_t)L_4-(int32_t)1));
V_0 = (int32_t)L_5;
__this->set_idx_1(L_5);
int32_t L_6 = V_0;
G_B5_0 = ((((int32_t)((((int32_t)L_6) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 0;
}
IL_0044:
{
return (bool)G_B5_0;
}
}
extern "C" bool InternalEnumerator_1_MoveNext_m1441038493_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459843 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459843 *>(__this + 1);
return InternalEnumerator_1_MoveNext_m1441038493(_thisAdjusted, method);
}
// T System.Array/InternalEnumerator`1<UnityEngine.Vector4>::get_Current()
extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1024050925;
extern Il2CppCodeGenString* _stringLiteral2903193705;
extern const uint32_t InternalEnumerator_1_get_Current_m2687258796_MetadataUsageId;
extern "C" Vector4_t2243707581 InternalEnumerator_1_get_Current_m2687258796_gshared (InternalEnumerator_1_t3102459843 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEnumerator_1_get_Current_m2687258796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0018;
}
}
{
InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_1, (String_t*)_stringLiteral1024050925, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1);
}
IL_0018:
{
int32_t L_2 = (int32_t)__this->get_idx_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_002f;
}
}
{
InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2801133788(L_3, (String_t*)_stringLiteral2903193705, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3);
}
IL_002f:
{
Il2CppArray * L_4 = (Il2CppArray *)__this->get_array_0();
Il2CppArray * L_5 = (Il2CppArray *)__this->get_array_0();
int32_t L_6 = Array_get_Length_m1498215565((Il2CppArray *)L_5, /*hidden argument*/NULL);
int32_t L_7 = (int32_t)__this->get_idx_1();
Vector4_t2243707581 L_8 = (( Vector4_t2243707581 (*) (Il2CppArray *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2)->methodPointer)((Il2CppArray *)L_4, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))-(int32_t)L_7)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->declaring_type)->rgctx_data, 2));
return L_8;
}
}
extern "C" Vector4_t2243707581 InternalEnumerator_1_get_Current_m2687258796_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method)
{
InternalEnumerator_1_t3102459843 * _thisAdjusted = reinterpret_cast<InternalEnumerator_1_t3102459843 *>(__this + 1);
return InternalEnumerator_1_get_Current_m2687258796(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Char>::.ctor()
extern "C" void DefaultComparer__ctor_m552346555_gshared (DefaultComparer_t1943751571 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t2344490457 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t2344490457 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Char>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m2520853466_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m2520853466_gshared (DefaultComparer_t1943751571 * __this, Il2CppChar ___x0, Il2CppChar ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m2520853466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
Il2CppChar L_3 = ___x0;
Il2CppChar L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
Il2CppChar L_6 = ___x0;
Il2CppChar L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
Il2CppChar L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, Il2CppChar >::Invoke(0 /* System.Int32 System.IComparable`1<System.Char>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (Il2CppChar)L_9);
return L_10;
}
IL_004d:
{
Il2CppChar L_11 = ___x0;
Il2CppChar L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
Il2CppChar L_14 = ___x0;
Il2CppChar L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
Il2CppChar L_17 = ___y1;
Il2CppChar L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTime>::.ctor()
extern "C" void DefaultComparer__ctor_m1799227370_gshared (DefaultComparer_t3477443198 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t3878182084 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t3878182084 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTime>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m1606207039_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m1606207039_gshared (DefaultComparer_t3477443198 * __this, DateTime_t693205669 ___x0, DateTime_t693205669 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1606207039_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
DateTime_t693205669 L_3 = ___x0;
DateTime_t693205669 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
DateTime_t693205669 L_6 = ___x0;
DateTime_t693205669 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
DateTime_t693205669 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, DateTime_t693205669 >::Invoke(0 /* System.Int32 System.IComparable`1<System.DateTime>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (DateTime_t693205669 )L_9);
return L_10;
}
IL_004d:
{
DateTime_t693205669 L_11 = ___x0;
DateTime_t693205669 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
DateTime_t693205669 L_14 = ___x0;
DateTime_t693205669 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
DateTime_t693205669 L_17 = ___y1;
DateTime_t693205669 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTimeOffset>::.ctor()
extern "C" void DefaultComparer__ctor_m732373515_gshared (DefaultComparer_t4147226435 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t252998025 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t252998025 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.DateTimeOffset>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m3472472212_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m3472472212_gshared (DefaultComparer_t4147226435 * __this, DateTimeOffset_t1362988906 ___x0, DateTimeOffset_t1362988906 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3472472212_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
DateTimeOffset_t1362988906 L_3 = ___x0;
DateTimeOffset_t1362988906 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
DateTimeOffset_t1362988906 L_6 = ___x0;
DateTimeOffset_t1362988906 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
DateTimeOffset_t1362988906 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, DateTimeOffset_t1362988906 >::Invoke(0 /* System.Int32 System.IComparable`1<System.DateTimeOffset>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (DateTimeOffset_t1362988906 )L_9);
return L_10;
}
IL_004d:
{
DateTimeOffset_t1362988906 L_11 = ___x0;
DateTimeOffset_t1362988906 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
DateTimeOffset_t1362988906 L_14 = ___x0;
DateTimeOffset_t1362988906 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
DateTimeOffset_t1362988906 L_17 = ___y1;
DateTimeOffset_t1362988906 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Guid>::.ctor()
extern "C" void DefaultComparer__ctor_m3668042_gshared (DefaultComparer_t1022871826 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t1423610712 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t1423610712 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Guid>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m3319119721_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m3319119721_gshared (DefaultComparer_t1022871826 * __this, Guid_t2533601593 ___x0, Guid_t2533601593 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m3319119721_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
Guid_t2533601593 L_3 = ___x0;
Guid_t2533601593 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
Guid_t2533601593 L_6 = ___x0;
Guid_t2533601593 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
Guid_t2533601593 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, Guid_t2533601593 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Guid>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (Guid_t2533601593 )L_9);
return L_10;
}
IL_004d:
{
Guid_t2533601593 L_11 = ___x0;
Guid_t2533601593 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
Guid_t2533601593 L_14 = ___x0;
Guid_t2533601593 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
Guid_t2533601593 L_17 = ___y1;
Guid_t2533601593 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Int32>::.ctor()
extern "C" void DefaultComparer__ctor_m2859550749_gshared (DefaultComparer_t561147681 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t961886567 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t961886567 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Int32>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m925902394_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m925902394_gshared (DefaultComparer_t561147681 * __this, int32_t ___x0, int32_t ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m925902394_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
int32_t L_3 = ___x0;
int32_t L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
int32_t L_6 = ___x0;
int32_t L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
int32_t L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(0 /* System.Int32 System.IComparable`1<System.Int32>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (int32_t)L_9);
return L_10;
}
IL_004d:
{
int32_t L_11 = ___x0;
int32_t L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
int32_t L_14 = ___x0;
int32_t L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
int32_t L_17 = ___y1;
int32_t L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Object>::.ctor()
extern "C" void DefaultComparer__ctor_m84239532_gshared (DefaultComparer_t1178719528 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t1579458414 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t1579458414 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Object>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m2805784815_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m2805784815_gshared (DefaultComparer_t1178719528 * __this, Il2CppObject * ___x0, Il2CppObject * ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m2805784815_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
Il2CppObject * L_0 = ___x0;
if (L_0)
{
goto IL_001e;
}
}
{
Il2CppObject * L_1 = ___y1;
if (L_1)
{
goto IL_001c;
}
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
Il2CppObject * L_2 = ___y1;
if (L_2)
{
goto IL_002b;
}
}
{
return 1;
}
IL_002b:
{
Il2CppObject * L_3 = ___x0;
if (!((Il2CppObject*)IsInst(L_3, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
Il2CppObject * L_4 = ___x0;
Il2CppObject * L_5 = ___y1;
int32_t L_6 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable`1<System.Object>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_4, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (Il2CppObject *)L_5);
return L_6;
}
IL_004d:
{
Il2CppObject * L_7 = ___x0;
if (!((Il2CppObject *)IsInst(L_7, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
Il2CppObject * L_8 = ___x0;
Il2CppObject * L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_8, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_9);
return L_10;
}
IL_0074:
{
ArgumentException_t3259014390 * L_11 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_11, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument>::.ctor()
extern "C" void DefaultComparer__ctor_m1661558765_gshared (DefaultComparer_t2878395072 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t3279133958 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t3279133958 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeNamedArgument>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m2855268154_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m2855268154_gshared (DefaultComparer_t2878395072 * __this, CustomAttributeNamedArgument_t94157543 ___x0, CustomAttributeNamedArgument_t94157543 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m2855268154_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
CustomAttributeNamedArgument_t94157543 L_3 = ___x0;
CustomAttributeNamedArgument_t94157543 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
CustomAttributeNamedArgument_t94157543 L_6 = ___x0;
CustomAttributeNamedArgument_t94157543 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
CustomAttributeNamedArgument_t94157543 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, CustomAttributeNamedArgument_t94157543 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Reflection.CustomAttributeNamedArgument>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (CustomAttributeNamedArgument_t94157543 )L_9);
return L_10;
}
IL_004d:
{
CustomAttributeNamedArgument_t94157543 L_11 = ___x0;
CustomAttributeNamedArgument_t94157543 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
CustomAttributeNamedArgument_t94157543 L_14 = ___x0;
CustomAttributeNamedArgument_t94157543 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
CustomAttributeNamedArgument_t94157543 L_17 = ___y1;
CustomAttributeNamedArgument_t94157543 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument>::.ctor()
extern "C" void DefaultComparer__ctor_m1961329658_gshared (DefaultComparer_t4282435443 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t388207033 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t388207033 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Reflection.CustomAttributeTypedArgument>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m932294475_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m932294475_gshared (DefaultComparer_t4282435443 * __this, CustomAttributeTypedArgument_t1498197914 ___x0, CustomAttributeTypedArgument_t1498197914 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m932294475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
CustomAttributeTypedArgument_t1498197914 L_3 = ___x0;
CustomAttributeTypedArgument_t1498197914 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
CustomAttributeTypedArgument_t1498197914 L_6 = ___x0;
CustomAttributeTypedArgument_t1498197914 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
CustomAttributeTypedArgument_t1498197914 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, CustomAttributeTypedArgument_t1498197914 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Reflection.CustomAttributeTypedArgument>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (CustomAttributeTypedArgument_t1498197914 )L_9);
return L_10;
}
IL_004d:
{
CustomAttributeTypedArgument_t1498197914 L_11 = ___x0;
CustomAttributeTypedArgument_t1498197914 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
CustomAttributeTypedArgument_t1498197914 L_14 = ___x0;
CustomAttributeTypedArgument_t1498197914 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
CustomAttributeTypedArgument_t1498197914 L_17 = ___y1;
CustomAttributeTypedArgument_t1498197914 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.Single>::.ctor()
extern "C" void DefaultComparer__ctor_m2949813217_gshared (DefaultComparer_t565780165 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t966519051 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t966519051 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.Single>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m822918678_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m822918678_gshared (DefaultComparer_t565780165 * __this, float ___x0, float ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m822918678_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
float L_3 = ___x0;
float L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
float L_6 = ___x0;
float L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
float L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, float >::Invoke(0 /* System.Int32 System.IComparable`1<System.Single>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (float)L_9);
return L_10;
}
IL_004d:
{
float L_11 = ___x0;
float L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
float L_14 = ___x0;
float L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
float L_17 = ___y1;
float L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<System.TimeSpan>::.ctor()
extern "C" void DefaultComparer__ctor_m3791334730_gshared (DefaultComparer_t1919529182 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t2320268068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t2320268068 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<System.TimeSpan>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m265474847_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m265474847_gshared (DefaultComparer_t1919529182 * __this, TimeSpan_t3430258949 ___x0, TimeSpan_t3430258949 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m265474847_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
TimeSpan_t3430258949 L_3 = ___x0;
TimeSpan_t3430258949 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
TimeSpan_t3430258949 L_6 = ___x0;
TimeSpan_t3430258949 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
TimeSpan_t3430258949 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, TimeSpan_t3430258949 >::Invoke(0 /* System.Int32 System.IComparable`1<System.TimeSpan>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (TimeSpan_t3430258949 )L_9);
return L_10;
}
IL_004d:
{
TimeSpan_t3430258949 L_11 = ___x0;
TimeSpan_t3430258949 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
TimeSpan_t3430258949 L_14 = ___x0;
TimeSpan_t3430258949 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
TimeSpan_t3430258949 L_17 = ___y1;
TimeSpan_t3430258949 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::.ctor()
extern "C" void DefaultComparer__ctor_m2805498072_gshared (DefaultComparer_t3042092431 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t3442831317 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t3442831317 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m1132285273_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m1132285273_gshared (DefaultComparer_t3042092431 * __this, SpriteData_t257854902 ___x0, SpriteData_t257854902 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1132285273_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
SpriteData_t257854902 L_3 = ___x0;
SpriteData_t257854902 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
SpriteData_t257854902 L_6 = ___x0;
SpriteData_t257854902 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
SpriteData_t257854902 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, SpriteData_t257854902 >::Invoke(0 /* System.Int32 System.IComparable`1<TMPro.SpriteAssetUtilities.TexturePacker/SpriteData>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (SpriteData_t257854902 )L_9);
return L_10;
}
IL_004d:
{
SpriteData_t257854902 L_11 = ___x0;
SpriteData_t257854902 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
SpriteData_t257854902 L_14 = ___x0;
SpriteData_t257854902 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
SpriteData_t257854902 L_17 = ___y1;
SpriteData_t257854902 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
// System.Void System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Color>::.ctor()
extern "C" void DefaultComparer__ctor_m109601976_gshared (DefaultComparer_t509662308 * __this, const MethodInfo* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 1));
(( void (*) (Comparer_1_t910401194 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0)->methodPointer)((Comparer_1_t910401194 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->declaring_type->rgctx_data, 0));
return;
}
}
// System.Int32 System.Collections.Generic.Comparer`1/DefaultComparer<UnityEngine.Color>::Compare(T,T)
extern Il2CppClass* IComparable_t1857082765_il2cpp_TypeInfo_var;
extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var;
extern Il2CppCodeGenString* _stringLiteral1864089402;
extern const uint32_t DefaultComparer_Compare_m1181439683_MetadataUsageId;
extern "C" int32_t DefaultComparer_Compare_m1181439683_gshared (DefaultComparer_t509662308 * __this, Color_t2020392075 ___x0, Color_t2020392075 ___y1, const MethodInfo* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultComparer_Compare_m1181439683_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
goto IL_001e;
}
{
goto IL_001c;
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = (-1);
}
IL_001d:
{
return G_B4_0;
}
IL_001e:
{
goto IL_002b;
}
{
return 1;
}
IL_002b:
{
Color_t2020392075 L_3 = ___x0;
Color_t2020392075 L_4 = L_3;
Il2CppObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_4);
if (!((Il2CppObject*)IsInst(L_5, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))))
{
goto IL_004d;
}
}
{
Color_t2020392075 L_6 = ___x0;
Color_t2020392075 L_7 = L_6;
Il2CppObject * L_8 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_7);
Color_t2020392075 L_9 = ___y1;
int32_t L_10 = InterfaceFuncInvoker1< int32_t, Color_t2020392075 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Color>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3), (Il2CppObject*)((Il2CppObject*)Castclass(L_8, IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 3))), (Color_t2020392075 )L_9);
return L_10;
}
IL_004d:
{
Color_t2020392075 L_11 = ___x0;
Color_t2020392075 L_12 = L_11;
Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_12);
if (!((Il2CppObject *)IsInst(L_13, IComparable_t1857082765_il2cpp_TypeInfo_var)))
{
goto IL_0074;
}
}
{
Color_t2020392075 L_14 = ___x0;
Color_t2020392075 L_15 = L_14;
Il2CppObject * L_16 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_15);
Color_t2020392075 L_17 = ___y1;
Color_t2020392075 L_18 = L_17;
Il2CppObject * L_19 = Box(IL2CPP_RGCTX_DATA(method->declaring_type->rgctx_data, 2), &L_18);
int32_t L_20 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1857082765_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_16, IComparable_t1857082765_il2cpp_TypeInfo_var)), (Il2CppObject *)L_19);
return L_20;
}
IL_0074:
{
ArgumentException_t3259014390 * L_21 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3739475201(L_21, (String_t*)_stringLiteral1864089402, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
|
629715118abd0f8c4489d29b69bc82dfc8768f97 | 413e22f3ac4d806ce95178fc5688b00874ce0207 | /LIS.cpp | 823dcdf38e070a93e24b9e51dd40857ae282ce22 | [] | no_license | Navidda/algorithms | 1a0f966c038c471f890957890588869c48204170 | 27e0b48fe5d20a355079a36969ce36b25cf2470a | refs/heads/master | 2021-01-17T07:59:41.099874 | 2015-12-16T09:32:17 | 2015-12-16T09:32:17 | 48,100,655 | 1 | 0 | null | 2015-12-16T09:30:18 | 2015-12-16T09:30:18 | null | UTF-8 | C++ | false | false | 804 | cpp | LIS.cpp | #include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define ll long long
#define pii pair<int, int>
#define CLR(x, a) memset(x, a, sizeof x)
#define ALL(x) (x).begin(),(x).end()
#define SZ(x) ((int)x.size())
#define VAL(x) #x << " = " << x << " "
#define X first
#define Y second
const int MAXN = 100 * 1000 + 10;
int c[MAXN], a[MAXN];
int main() {
ios::sync_with_stdio(false);
int n;
cin >> n;
for (int i = 0; i < n; i ++) cin >> a[i];
for (int i = 0; i <= n; i ++) c[i] = 1e9;
int ans = 0;
for (int i = 0; i < n; i ++) {
int l = 0, r = i + 1;
while (r - l > 1) {
int mid = (l + r) / 2;
if (c[mid] <= a[i]) l = mid;
else r = mid;
}
ans = max(ans, l + 1);
if (c[l + 1] > a[i]) c[l + 1] = a[i];
}
cout << ans << endl;
return 0;
}
|
a3ecf491be10180c687fb7d78433f62f4bbc472a | 6ffd23679939f59f0a09c9507a126ba056b239d7 | /dnn/src/fallback/pooling/gi/kern_fp32_pooling_nchw44.h | 472aebe9b43a93e2fdf1262337f1d4ef0649b8e1 | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | MegEngine/MegEngine | 74c1c9b6022c858962caf7f27e6f65220739999f | 66b79160d35b2710c00befede0c3fd729109e474 | refs/heads/master | 2023-08-23T20:01:32.476848 | 2023-08-01T07:12:01 | 2023-08-11T06:04:12 | 248,175,118 | 5,697 | 585 | Apache-2.0 | 2023-07-19T05:11:07 | 2020-03-18T08:21:58 | C++ | UTF-8 | C++ | false | false | 14,429 | h | kern_fp32_pooling_nchw44.h | #pragma once
#include <limits>
#include "megdnn/opr_param_defs.h"
#include "src/common/unroll_macro.h"
#include "src/fallback/general_intrinsic/gi_float.h"
#include "src/fallback/gi_intrinsic_helper.h"
namespace megdnn {
namespace fallback {
namespace {
template <
int filter, int stride, int ow_step, PoolingBase::Mode mode, typename T1,
typename T2>
struct CalXsXNchw44 {
static void impl(T1 result, T2 src);
};
struct GiD1Qf32 {
static GI_FORCEINLINE GI_FLOAT32_t impl(const float32_t* ptr) {
return GiLoadFloat32(ptr);
}
};
template <
int filter, int stride, int ow_step, PoolingBase::Mode mode, typename T1,
typename T2>
void calculate_xsx_nchw44(T1 result, T2 src) {
CalXsXNchw44<filter, stride, ow_step, mode, T1, T2>::impl(result, src);
};
#define CALCULATE_MAX_CB(step) \
result[0] = GiFloat32Type2FixLenType(GiMaximumFloat32( \
GiFixLenType2GiFloat32Type(result[0]), \
GiFixLenType2GiFloat32Type(src[0 * stride + step]))); \
result[1] = GiFloat32Type2FixLenType(GiMaximumFloat32( \
GiFixLenType2GiFloat32Type(result[1]), \
GiFixLenType2GiFloat32Type(src[1 * stride + step]))); \
result[2] = GiFloat32Type2FixLenType(GiMaximumFloat32( \
GiFixLenType2GiFloat32Type(result[2]), \
GiFixLenType2GiFloat32Type(src[2 * stride + step]))); \
result[3] = GiFloat32Type2FixLenType(GiMaximumFloat32( \
GiFixLenType2GiFloat32Type(result[3]), \
GiFixLenType2GiFloat32Type(src[3 * stride + step])));
#define CALCULATE_AVG_CB(step) \
result[0] = GiFloat32Type2FixLenType(GiAddFloat32( \
GiFixLenType2GiFloat32Type(result[0]), \
GiFixLenType2GiFloat32Type(src[0 * stride + step]))); \
result[1] = GiFloat32Type2FixLenType(GiAddFloat32( \
GiFixLenType2GiFloat32Type(result[1]), \
GiFixLenType2GiFloat32Type(src[1 * stride + step]))); \
result[2] = GiFloat32Type2FixLenType(GiAddFloat32( \
GiFixLenType2GiFloat32Type(result[2]), \
GiFixLenType2GiFloat32Type(src[2 * stride + step]))); \
result[3] = GiFloat32Type2FixLenType(GiAddFloat32( \
GiFixLenType2GiFloat32Type(result[3]), \
GiFixLenType2GiFloat32Type(src[3 * stride + step])));
#define INSTANCE_CAL(filter) \
template <int stride, typename T1, typename T2> \
struct CalXsXNchw44<filter, stride, 4, PoolingBase::Mode::MAX, T1, T2> { \
static void impl(T1 result, T2 src) { \
UNROLL_CALL_RAW(filter, CALCULATE_MAX_CB); \
} \
}; \
template <int stride, typename T1, typename T2> \
struct CalXsXNchw44<filter, stride, 4, PoolingBase::Mode::AVERAGE, T1, T2> { \
static void impl(T1 result, T2 src) { \
UNROLL_CALL_RAW(filter, CALCULATE_AVG_CB); \
} \
};
INSTANCE_CAL(2)
INSTANCE_CAL(3)
INSTANCE_CAL(4)
INSTANCE_CAL(5)
INSTANCE_CAL(9)
INSTANCE_CAL(13)
#undef INSTANCE_CAL
#undef CALCULATE_AVG_CB
#undef CALCULATE_MAX_CB
template <int filter, int stride, int ow_step, PoolingBase::Mode mode>
struct KerPoolingFilterXStrideXNchw44 {
static void impl(const float32_t* src_ptr, float32_t* dst_ptr, size_t iw);
};
template <int filter, int stride, int ow_step>
struct KerPoolingFilterXStrideXNchw44<filter, stride, ow_step, PoolingBase::Mode::MAX> {
static void impl(const float32_t* src_ptr, float32_t* dst_ptr, size_t iw) {
constexpr int src_reg_size = ow_step * stride + filter - stride;
constexpr int packed_ic = 4;
constexpr int simd_len = 4;
constexpr float default_float = std::numeric_limits<float>::lowest();
GI_FLOAT32_FIXLEN_t result[ow_step];
GI_FLOAT32_FIXLEN_t src[src_reg_size];
result[0] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
result[1] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
result[2] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
result[3] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
for (int fh_idx = 0; fh_idx < filter; ++fh_idx) {
load_helper<src_reg_size, 0, simd_len, 0, GiD1Qf32>(
src, src_ptr + fh_idx * iw * packed_ic, 0);
calculate_xsx_nchw44<filter, stride, ow_step, PoolingBase::Mode::MAX>(
result, src);
}
GiStoreFloat32(dst_ptr + 0 * packed_ic, GiFixLenType2GiFloat32Type(result[0]));
GiStoreFloat32(dst_ptr + 1 * packed_ic, GiFixLenType2GiFloat32Type(result[1]));
GiStoreFloat32(dst_ptr + 2 * packed_ic, GiFixLenType2GiFloat32Type(result[2]));
GiStoreFloat32(dst_ptr + 3 * packed_ic, GiFixLenType2GiFloat32Type(result[3]));
}
};
template <int filter, int stride, int ow_step>
struct KerPoolingFilterXStrideXNchw44<
filter, stride, ow_step, PoolingBase::Mode::AVERAGE> {
static void impl(const float32_t* src_ptr, float32_t* dst_ptr, size_t iw) {
constexpr int src_reg_size = ow_step * stride + filter - stride;
constexpr int packed_ic = 4;
constexpr int simd_len = 4;
constexpr float default_float = 0;
constexpr float div_filter_size = 1.f / (filter * filter);
const GI_FLOAT32_t div_filter_size_vec = GiBroadcastFloat32(div_filter_size);
GI_FLOAT32_FIXLEN_t result[ow_step];
GI_FLOAT32_FIXLEN_t src[src_reg_size];
result[0] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
result[1] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
result[2] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
result[3] = GiFloat32Type2FixLenType(GiBroadcastFloat32(default_float));
for (int fh_idx = 0; fh_idx < filter; ++fh_idx) {
load_helper<src_reg_size, 0, simd_len, 0, GiD1Qf32>(
src, src_ptr + fh_idx * iw * packed_ic, 0);
calculate_xsx_nchw44<filter, stride, ow_step, PoolingBase::Mode::AVERAGE>(
result, src);
};
GiStoreFloat32(
dst_ptr + 0 * packed_ic,
GiMultiplyFloat32(
GiFixLenType2GiFloat32Type(result[0]), div_filter_size_vec));
GiStoreFloat32(
dst_ptr + 1 * packed_ic,
GiMultiplyFloat32(
GiFixLenType2GiFloat32Type(result[1]), div_filter_size_vec));
GiStoreFloat32(
dst_ptr + 2 * packed_ic,
GiMultiplyFloat32(
GiFixLenType2GiFloat32Type(result[2]), div_filter_size_vec));
GiStoreFloat32(
dst_ptr + 3 * packed_ic,
GiMultiplyFloat32(
GiFixLenType2GiFloat32Type(result[3]), div_filter_size_vec));
}
};
template <PoolingBase::Mode mode>
void ker_pooling_nchw44_remain_pad(
const float32_t* src_ptr, float32_t* dst_ptr, const int iw, const int pad_top,
const int pad_bottom, const int pad_left, const int pad_right,
const int filter);
template <>
void ker_pooling_nchw44_remain_pad<PoolingBase::Mode::MAX>(
const float32_t* src_ptr, float32_t* dst_ptr, const int iw, const int pad_top,
const int pad_bottom, const int pad_left, const int pad_right,
const int filter) {
constexpr int ic_step = 4;
const int ih_end = filter - pad_bottom;
const int iw_end = filter - pad_right;
GI_FLOAT32_t result = GiBroadcastFloat32(std::numeric_limits<float>::lowest());
for (int ih_idx = pad_top; ih_idx < ih_end; ++ih_idx) {
for (int iw_idx = pad_left; iw_idx < iw_end; ++iw_idx) {
GI_FLOAT32_t src = GiLoadFloat32(src_ptr + (iw_idx - pad_left) * ic_step);
result = GiMaximumFloat32(result, src);
}
src_ptr += iw * ic_step;
}
GiStoreFloat32(dst_ptr, result);
}
template <>
void ker_pooling_nchw44_remain_pad<PoolingBase::Mode::AVERAGE>(
const float32_t* src_ptr, float32_t* dst_ptr, const int iw, const int pad_top,
const int pad_bottom, const int pad_left, const int pad_right,
const int filter) {
constexpr int ic_step = 4;
const int ih_end = filter - pad_bottom;
const int iw_end = filter - pad_right;
const float div_filter_size = 1.f / (filter * filter);
const GI_FLOAT32_t div_filter_size_vec = GiBroadcastFloat32(div_filter_size);
GI_FLOAT32_t result = GiBroadcastFloat32(0.f);
for (int ih_idx = pad_top; ih_idx < ih_end; ++ih_idx) {
for (int iw_idx = pad_left; iw_idx < iw_end; ++iw_idx) {
GI_FLOAT32_t src = GiLoadFloat32(src_ptr + (iw_idx - pad_left) * ic_step);
result = GiAddFloat32(result, src);
}
src_ptr += iw * ic_step;
}
result = GiMultiplyFloat32(result, div_filter_size_vec);
GiStoreFloat32(dst_ptr, result);
}
template <PoolingBase::Mode mode>
static inline void kern_pooling_with_pad_nchw44(
const float32_t* src, float32_t* dst, const int filter, const int ow_start,
const int ow_end, const int iw, const int ow, const int stride_w, const int pw,
const int real_ih_idx, const int oh_idx, const int pad_top,
const int pad_bottom) {
constexpr int ic_step = 4;
constexpr int oc_step = 4;
for (int ow_idx = ow_start; ow_idx < ow_end; ++ow_idx) {
const int iw_idx = ow_idx * stride_w;
const int real_iw_idx = std::max(iw_idx - pw, 0);
const int pad_left = std::max(0, pw - iw_idx);
const int pad_right = std::max(0, iw_idx - pw + filter - iw);
const int src_offset = (real_ih_idx * iw + real_iw_idx) * ic_step;
const int dst_offset = (oh_idx * ow + ow_idx) * oc_step;
ker_pooling_nchw44_remain_pad<mode>(
src + src_offset, dst + dst_offset, iw, pad_top, pad_bottom, pad_left,
pad_right, filter);
}
}
template <int filter, int stride, PoolingBase::Mode mode>
static inline void pooling_fp32_nchw44_pad(
const float32_t* src, float32_t* dst, int ih, int iw, int oh, int ow, int ph,
int pw) {
constexpr int stride_h = stride;
constexpr int stride_w = stride;
constexpr int ic_step = 4;
constexpr int oc_step = 4;
constexpr int ow_step = 4;
const int ow_pad_left_end = div_ceil(pw, stride_w);
const int ow_pad_right_end = (iw - filter + pw - 1) / stride_w;
const int ow_pad_right_step_end =
(ow_pad_right_end - ow_pad_left_end) / ow_step * ow_step + ow_pad_left_end;
rep(oh_idx, oh) {
const int ih_idx = oh_idx * stride_h;
const int real_ih_idx = std::max(ih_idx - ph, 0);
const int pad_top = std::max(0, ph - ih_idx);
const int pad_bottom = std::max(0, ih_idx - ph + filter - ih);
if (pad_top > 0 || pad_bottom > 0) {
kern_pooling_with_pad_nchw44<mode>(
src, dst, filter, 0, ow, iw, ow, stride_w, pw, real_ih_idx, oh_idx,
pad_top, pad_bottom);
} else {
kern_pooling_with_pad_nchw44<mode>(
src, dst, filter, 0, ow_pad_left_end, iw, ow, stride_w, pw,
real_ih_idx, oh_idx, pad_top, pad_bottom);
for (int ow_idx = ow_pad_left_end; ow_idx < ow_pad_right_step_end;
ow_idx += ow_step) {
const int iw_idx = ow_idx * stride_w;
const int real_iw_idx = std::max(iw_idx - pw, 0);
const int src_offset = (real_ih_idx * iw + real_iw_idx) * ic_step;
const int dst_offset = (oh_idx * ow + ow_idx) * oc_step;
KerPoolingFilterXStrideXNchw44<filter, stride, ow_step, mode>::impl(
src + src_offset, dst + dst_offset, iw);
}
kern_pooling_with_pad_nchw44<mode>(
src, dst, filter, ow_pad_right_step_end, ow, iw, ow, stride_w, pw,
real_ih_idx, oh_idx, pad_top, pad_bottom);
}
}
}
template <int filter, int stride, PoolingBase::Mode mode>
static inline void pooling_fp32_nchw44_no_pad(
const float32_t* src, float32_t* dst, int, int iw, int oh, int ow) {
constexpr int stride_h = stride;
constexpr int stride_w = stride;
constexpr int ic_step = 4;
constexpr int oc_step = 4;
constexpr int ow_step = 4;
const int ow_end = ow / ow_step * ow_step;
const int ow_remain = ow - ow_end;
rep(oh_idx, oh) {
const int ih_idx = oh_idx * stride_h;
const int src_ih_offset = ih_idx * iw;
const int dst_oh_offset = oh_idx * ow;
for (int ow_idx = 0; ow_idx < ow_end; ow_idx += ow_step) {
const int iw_idx = ow_idx * stride_w;
const int src_offset = (src_ih_offset + iw_idx) * ic_step;
const int dst_offset = (dst_oh_offset + ow_idx) * oc_step;
KerPoolingFilterXStrideXNchw44<filter, stride, ow_step, mode>::impl(
src + src_offset, dst + dst_offset, iw);
}
if (ow_remain > 0) {
kern_pooling_with_pad_nchw44<mode>(
src, dst, filter, ow_end, ow, iw, ow, stride_w, 0, ih_idx, oh_idx,
0, 0);
}
}
}
template <int filter, int stride, PoolingBase::Mode mode>
static inline void pooling_fp32_nchw44(
const float32_t* src, float32_t* dst, int ih, int iw, int oh, int ow, int ph,
int pw) {
if (ph > 0 || pw > 0) {
pooling_fp32_nchw44_pad<filter, stride, mode>(src, dst, ih, iw, oh, ow, ph, pw);
} else {
pooling_fp32_nchw44_no_pad<filter, stride, mode>(src, dst, ih, iw, oh, ow);
}
}
} // namespace
} // namespace fallback
} // namespace megdnn
// vim: syntax=cpp.doxygen
|
5334b32d60a97a0b568e7103e8dc9b95304f1f8e | e7b5ca38f4d5b0e1ea8f8c5c7b7a280f99175ac8 | /a01_Ficha1/p02_ExpressoesAritmeticas/2.11b.cpp | fdf9a089d74931ae6be8a5a2ac1a00722c6288e6 | [
"MIT"
] | permissive | FEUP-MIEIC/PROG | 18e62cb73bc7de4deeb03779f51eaf6dedce7be2 | 06976fde1ae93867b3189f0259ddab1228e846d5 | refs/heads/master | 2021-01-11T14:28:01.062647 | 2017-03-22T09:33:41 | 2017-03-22T09:33:41 | 81,431,682 | 2 | 2 | null | 2017-02-16T20:51:26 | 2017-02-09T09:13:52 | C++ | UTF-8 | C++ | false | false | 295 | cpp | 2.11b.cpp | #include <iostream>
#define N_TERMOS 8
using namespace std;
int main()
{
int i, fatorial = 1;
double neper = 1;
cout << "hey\n";
for(i = 1; i <= N_TERMOS; i++)
{
fatorial *= i;
neper += 1.0/fatorial;
}
cout << "Número Neper : " << neper << endl;
} |
b3a54db1a76e7cd8731066072e4681b07ee99107 | bc93833a9a2606dd051738dd06d6d17c18cbdcae | /3rdparty/metaioar_clv2/metaioSDK/include/metaioSDK/STLCompatibility.h | f2fc397d4d8b75ec249dea525cf48496c0678217 | [
"MIT"
] | permissive | Wizapply/OvrvisionPro | f0552626f22d6fe96824034310a4f08ab874b62e | 41680a1f9cfd617a9d33f1df9d9a91e8ffd4dc4b | refs/heads/master | 2021-11-11T02:37:23.840617 | 2021-05-06T03:00:48 | 2021-05-06T03:00:48 | 43,277,465 | 30 | 32 | NOASSERTION | 2019-12-25T14:07:27 | 2015-09-28T03:17:23 | C | UTF-8 | C++ | false | false | 8,163 | h | STLCompatibility.h | // Copyright 2007-2013 metaio GmbH. All rights reserved.
#ifndef __AS_STLCOMPATIBILITY_H_INCLUDED__
#define __AS_STLCOMPATIBILITY_H_INCLUDED__
#include <metaioSDK/Dll.h>
#include <metaioSDK/BackwardCompatibility.h>
#include <cassert>
#include <climits>
#include <sstream>
#include <string.h>
#include <vector>
namespace metaio
{
namespace stlcompat
{
const char* const EMPTY_STRING_CONSTANT = "";
/**
* Minimal string implementation that converts to std::string and is mostly immutable
*/
class METAIO_DLL_API String
{
public:
/// \sa substr
static const unsigned long npos = ULONG_MAX;
/// Constructor for empty string
String();
/// Constructor for zero-terminated C string
String(const char* str);
/**
* Constructor from zero-terminated C string with given length
*
* \param str C string (does not have to be zero-terminated)
* \param length Number of characters to copy from str
*/
String(const char* str, unsigned long length);
/// Destructor
~String();
/// Copy constructor
String(const String& other);
/// Assignment operator
String& operator=(const String& other);
/// Assignment operator from zero-terminated C string
String& operator=(const char* str);
/// std::string-compatible constructor
String(const std::string& str);
/// Assignment operator from std::string
String& operator=(const std::string& str);
/**
* Get a zero-terminated C string.
*
* The buffer can be expected to be valid during the lifetime of this String instance but only
* until the next non-const method call.
*
* \return Zero-terminated C string
*/
const char* c_str() const;
/**
* Compares with another string
*
* \param other String to compare with
* \return 0 if both strings are equal, <0 if either the value of the first non-matching
* character in the other string is larger or the other string is longer, >0 if either
* the value of the first non-matching character in the other string is smaller or the
* other string is shorter
*/
int compare(const stlcompat::String& other) const;
/**
* Compares with another string
*
* \param other String to compare with
* \return 0 if both strings are equal, <0 if either the value of the first non-matching
* character in the other string is larger or the other string is longer, >0 if either
* the value of the first non-matching character in the other string is smaller or the
* other string is shorter
*/
int compare(const std::string& other) const;
/**
* Compares with another string
*
* \param other String to compare with
* \return 0 if both strings are equal, <0 if either the value of the first non-matching
* character in the other string is larger or the other string is longer, >0 if either
* the value of the first non-matching character in the other string is smaller or the
* other string is shorter
*/
int compare(const char* other) const;
/**
* Check whether string is empty
* \sa size
* \return True if string is empty, otherwise false
*/
bool empty() const;
/**
* Determines the length of the string.
*
* Alias for size().
*
* \sa size
* \return Length of the string
*/
unsigned long length() const;
/**
* Determines the length of the string
* \return Length of the string
*/
unsigned long size() const;
/**
* Get a substring
*
* \param startIndex Index from which the substring should begin
* \param length Maximum number of characters that the substring should contain
* \return The substring
*/
String substr(unsigned long startIndex, unsigned long length = npos) const;
/**
* Get the n-th character of the string
*
* \param pos Zero-based index
* \return Character at position pos (0 if pos == string length)
*/
const char& operator[](unsigned long pos) const;
/// Convert to an std::string
operator std::string() const;
/// Compares two strings
friend METAIO_DLL_API bool operator==(const String& lhs, const String& rhs);
/// Compares string with a C string
friend METAIO_DLL_API bool operator==(const String& lhs, const char* rhs);
/// Compares string with a C string
friend METAIO_DLL_API bool operator==(const char* lhs, const String& rhs);
/// Checks inequality
friend METAIO_DLL_API bool operator!=(const String& lhs, const String& rhs);
/// Checks inequality
friend METAIO_DLL_API bool operator!=(const String& lhs, const char* rhs);
/// Checks inequality
friend METAIO_DLL_API bool operator!=(const char* lhs, const String& rhs);
/// Appends this string to a string stream
friend METAIO_DLL_API std::ostream& operator<<(std::ostream& stream, const String& s);
private:
void deleteAll();
/**
* Compares with another string
*
* \param other String to compare with
* \param otherLength Number of characters in the other string
* \return 0 if both strings are equal, <0 if either the value of the first non-matching
* character in the other string is larger or the other string is longer, >0 if either
* the value of the first non-matching character in the other string is smaller or the
* other string is shorter
*/
int compare(const char* other, unsigned long otherLength) const;
/// Data pointer, must always include zero terminator or be NULL
char* m_pData;
/// Number of chars in m_pData, must always be updated when m_pData is modified
unsigned long m_length;
};
/**
* Basic vector implementation that converts to std::vector.
*
* Convert the instance to std::vector if you need advanced methods.
*/
template<typename T> class METAIO_DLL_API Vector
{
public:
//public types
typedef std::vector<T> std_type;
typedef unsigned long size_type; //!!!! ATTENTION the return type Vector<T>::size() implementation is "unsigned long", MSVC2010 refused to compile using the typedef !!!!
public:
void deleteAll();
Vector();
~Vector();
void push_back(const T& copyMe);
/// Copy constructor
Vector(const Vector& other);
/// Assignment operator
Vector& operator=(const Vector& other);
/// Copy constructor from std::vector
Vector(const std::vector<T>& other);
/// Assignment operator from std::vector
Vector& operator=(const std::vector<T>& other);
#if defined(METAIOSDK_COMPAT_HAVE_CPP11) && !defined(METAIOSDK_COMPAT_NO_CPP11_STL_FEATURES)
/// Move constructor
Vector(Vector&& other);
/// Move assignment operator
Vector& operator=(Vector&& other);
#endif
/// Removes all elements
void clear();
/// Checks if the vector is empty
bool empty() const;
#if defined(METAIOSDK_COMPAT_HAVE_CPP11) && !defined(METAIOSDK_COMPAT_NO_CPP11_STL_FEATURES)
/// Adds an element to the vector
void push_back(T&& stealMe);
#endif
/// Converts to an std::vector (implementation needs to reside outside of DLL to avoid heap corruptions)
operator std::vector<T>() const
{
if (!m_size)
return std::vector<T>();
return std::vector<T>(reinterpret_cast<T*>(m_pElements), reinterpret_cast<T*>(m_pElements) + m_size);
}
/**
* Get the n-th element of the vector
*
* \param index Zero-based index
* \return Element at position index (0 if index == number of elements)
*/
const T& operator[](size_type index) const;
/**
* Get the n-th element of the vector
*
* \param index Zero-based index
* \return Element at position index (0 if index == number of elements)
*/
T& operator[](size_type index);
/**
* Remove the n-th element of the vector
*
* \param index Zero-based index
*/
void remove(size_type index);
/**
* Determines the number of elements in the vector
* !!!! ATTENTION the return type of actual implementation is "unsigned long", MSVC2010 refused to compile using the typedef !!!!
* \return Number of elements
*/
size_type size() const;
private:
void ensureSize(const size_type newElementsSize);
unsigned char* m_pElements; ///< buffer for elements
size_type m_elementsSize; ///< number of allocated T elements in m_pElements
size_type m_size; ///< actual number of elements
};
} // namespace stlcompat
} // namespace metaio
#endif //__AS_STLCOMPATIBILITY_H_INCLUDED__
|
855701118fc34bd3196e563dc78e89fd54df5511 | ac24190ab29a4b99bd5fd2797b72b847b9c914de | /BLAZARK/Code Files/StaticRenderer.h | 7df1849ed371b9966df111b2f3d4edb0249b7202 | [] | no_license | Baby-Phoenix/BLAZARK | 00516d8f2efafe04d00736b31b8c62b52e182242 | 1d0d02c69046464710f8f8413c771d6298b60504 | refs/heads/main | 2023-04-08T22:12:13.395574 | 2021-04-09T19:27:53 | 2021-04-09T19:27:53 | 323,492,404 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 837 | h | StaticRenderer.h | #pragma once
#include "ECS.h"
#include "Vertex.h"
#include "Shader.h"
#include "Texture.h"
#include "Camera.h"
#include "GLTFLoader.h"
#include "FrameBuffer.h"
class StaticRenderer {
public:
StaticRenderer() = default;
StaticRenderer(entt::entity camera, entt::entity entity, const Mesh& mesh,Texture* texture = nullptr, bool lightSource = false);
virtual ~StaticRenderer() = default;
StaticRenderer(StaticRenderer&&) = default;
StaticRenderer& operator=(StaticRenderer&&) = default;
void SetVAO(const Mesh& mesh);
void toggleTexture();
virtual void Draw();
protected:
entt::entity m_camera;
entt::entity m_entity;
std::unique_ptr<VertexArray> m_vao;
static std::vector<Shader*> m_shader;
int currShader;
Texture* m_tex;
bool m_textureToggle = true;
bool m_lightSource;
}; |
f2c3be430bc81fe21f0bff0a8eb140b9549ff1ff | b53b378cddbb9ae7f6147eb730d31bdfd7f836f4 | /geometryLib/puzzle/twist.h | b80840b08768316069f807be05a15e8c9d01dbd1 | [
"MIT"
] | permissive | roice3/Magic120Cell | 64b50ec1a8e43a7f9d1f8be1562d46c30e50427b | 3be08a69ec3a57017302364fc3853cb715b71c62 | refs/heads/master | 2023-08-22T15:13:42.818312 | 2023-08-04T20:14:42 | 2023-08-04T20:14:42 | 37,169,339 | 2 | 2 | MIT | 2023-08-04T20:14:43 | 2015-06-10T01:51:45 | C++ | UTF-8 | C++ | false | false | 3,824 | h | twist.h | #pragma once
#include "../matrix4d.h"
#include "../vectorND.h"
#include <assert.h>
#include <string>
#include <vector>
// Slicemask defines.
#define SLICEMASK_1 0x0001
#define SLICEMASK_2 0x0002
#define SLICEMASK_3 0x0004
#define SLICEMASK_4 0x0008
#define SLICEMASK_5 0x0010
#define SLICEMASK_6 0x0020
#define SLICEMASK_7 0x0040
#define SLICEMASK_8 0x0080
#define SLICEMASK_9 0x0100
namespace
{
// XXX - move to a better shared location
// maybe the class for loading saving state.
// These versions only support up to 64 stickers per cell.
int getStickerHash( int physicalCell, int sticker )
{
int ret = (physicalCell<<6) + sticker;
return( ret );
}
void decodeStickerHash( int hash, int & cell, int & sticker )
{
cell = (hash>>6);
sticker = hash - (cell<<6);
}
//
// These versions are for puzzles a very large number of stickers per cell.
// XXX - This was done for 'Magic Tile', and there is work debt here
// related to twist hashes below.
//
int getStickerHashEx( int cell, int sticker )
{
int ret = (cell<<16) + sticker;
return( ret );
}
void decodeStickerHashEx( int hash, int & cell, int & sticker )
{
cell = (hash>>16);
sticker = hash - (cell<<16);
}
int sliceToMask( int slice )
{
switch( slice )
{
case 1:
return SLICEMASK_1;
case 2:
return SLICEMASK_2;
case 3:
return SLICEMASK_3;
case 4:
return SLICEMASK_4;
case 5:
return SLICEMASK_5;
case 6:
return SLICEMASK_6;
case 7:
return SLICEMASK_7;
case 8:
return SLICEMASK_8;
case 9:
return SLICEMASK_9;
default:
assert( false );
return 0;
}
}
}
// Simple struct for a twist (also used for view rotations).
struct STwist
{
STwist()
{
m_cell = -1;
m_sticker = -1;
m_leftClick = true;
m_viewRotation = false;
m_viewRotationMagnitude = 0;
m_slicemask = 1;
}
STwist( int hash, bool left )
{
decodeStickerHash( hash, m_cell, m_sticker );
m_leftClick = left;
m_viewRotation = false;
m_viewRotationMagnitude = 0;
}
bool operator == ( const STwist & rhs ) const
{
return(
m_cell == rhs.m_cell &&
m_sticker == rhs.m_sticker &&
m_leftClick == rhs.m_leftClick &&
m_viewRotation == rhs.m_viewRotation &&
m_viewRotationMagnitude == rhs.m_viewRotationMagnitude &&
m_viewRotationP1 == rhs.m_viewRotationP1 &&
m_viewRotationP2 == rhs.m_viewRotationP2 &&
m_slicemask == rhs.m_slicemask );
}
// The rotation cell refers to physical cells.
int m_cell;
int m_sticker;
bool m_leftClick;
bool m_viewRotation;
int m_slicemask; // XXX - not yet part of the twist hash, i.e. not persisted.
// View rotations are special.
// The don't fit the standard twist mold.
// XXX - Perhaps view rotations should be handled in a separate class.
double m_viewRotationMagnitude;
CVector4D m_viewRotationP1, m_viewRotationP2;
public:
// View rotation calculation.
void getViewRotationMatrix( double angle, CMatrix4D & R );
// Helper to reverse this twist.
void reverseTwist()
{
m_leftClick = !m_leftClick;
}
// XXX - move to a better shared location
// maybe the class for loading saving state.
// These versions should only be used for Magic120Cell
int getTwistHash() const
{
// 63 stickers, 120 cells, 1 bit for twist direction, 1 bit to specify a view rotation.
int stickerHash = getStickerHash( m_cell, m_sticker );
int leftClick = m_leftClick == true ? 1 : 0;
int viewRot = m_viewRotation == true ? 1 : 0;
int ret = (stickerHash<<2) + (leftClick<<1) + viewRot;
return( ret );
}
void decodeTwistHash( int hash )
{
int stickerHash = (hash>>2);
decodeStickerHash( stickerHash, m_cell, m_sticker );
int remain = hash - (stickerHash<<2);
int leftClick = (remain>>1);
int viewRot = remain - (leftClick<<1);
m_leftClick = 1 == leftClick;
m_viewRotation = 1 == viewRot;
}
}; |
a3e141d3f0c1c18e78a4680682882ea4f5c37086 | b3a205489a61ebd31c0b375ee6f5d743c6cf1ec5 | /LTorrent/MetaDataDownloadWaiter.h | eb5a9271f3693b44ae15f76b1bef47472b31f129 | [] | no_license | swklzr/CuteTorrent | ba2ee9e0a3d46b571b61f90d6624b80c28bc0d4e | 5462b275e9e49efe7c44fcc6d3368448b58d38c5 | refs/heads/master | 2021-05-27T22:53:16.449158 | 2013-09-04T13:54:37 | 2013-09-04T13:54:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | h | MetaDataDownloadWaiter.h | #include <QThread>
#include "TorrentManager.h"
class MetaDataDownloadWaiter : public QThread
{
Q_OBJECT
signals:
void DownloadCompleted(openmagnet_info ti);
public:
MetaDataDownloadWaiter(QString metaLink,QObject* parrent=NULL, bool autoAdd=false);
~MetaDataDownloadWaiter();
private:
bool _autoAdd;
QString MetaLink;
TorrentManager * _tManager;
protected:
void run();
};
|
a6c2928face1a5f2681e2c163adf3bba93d9ca4a | 0b14b706ac99c3bde2a1373bf8c100285d44bfb3 | /include/fw-coll-env/BarrierGammaStraight.h | 8fadb357b0d9489d6dd6aad2c9b0d675d5c9af7e | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | esquires/fw-coll-env | e2c3e6a8f9d59c521c66a2882c2390f46ca1f66f | abc38624adf65e87bee2090a915530035c01165a | refs/heads/master | 2023-04-19T16:10:58.324775 | 2021-05-14T17:26:47 | 2021-05-14T17:27:28 | 367,435,135 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 660 | h | BarrierGammaStraight.h | #ifndef INCLUDE_FW_COLL_ENV_BARRIERGAMMASTRAIGHT_H_
#define INCLUDE_FW_COLL_ENV_BARRIERGAMMASTRAIGHT_H_
#include <fw-coll-env/FwAvailActions.h>
#include <fw-coll-env/BarrierGammaTurn.h>
#include <string>
#include <vector>
#include <tuple>
namespace fw_coll_env {
class BarrierGammaStraight : public BarrierGammaTurn {
public:
BarrierGammaStraight(
double dt, double max_val, double v, double safety_dist,
const FwAvailActions &avail_actions);
std::string to_string() const override;
protected:
double closest_future_dist(const FwState &x) override;
};
} // namespace fw_coll_env
#endif // INCLUDE_FW_COLL_ENV_BARRIERGAMMASTRAIGHT_H_
|
f4cdb89bb1f3b3d718675ddb3d91ac5f9e8b3ce3 | bf26bc5e520fb90960fba329cbe492b22889007e | /multineat/sensors/pieslicesensor.cpp | 30e58e7f0bd2f30b614e36270d7b92572fe19289 | [
"BSD-3-Clause"
] | permissive | CKqq/stneatexperiment | 7bf7dc226c440657a3252180a32c52be525e81e9 | ca754fb679658072f4dacc4354a319db3faf660b | refs/heads/master | 2022-05-16T00:32:16.353145 | 2019-03-28T00:05:13 | 2019-03-28T00:05:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 978 | cpp | pieslicesensor.cpp | #include "pieslicesensor.hpp"
#include <math.h>
#include "../parameters.hpp"
PieSliceSensor::PieSliceSensor(double angle1, double angle2) : Sensor(0, 0),
angle1(angle1 < 0 ? angle1 + 2 * M_PI : angle1),
angle2(angle2 < 0 ? angle2 + 2 * M_PI : angle2)
{
offset = rotate_point(Vector(ExperimentParameters::RADIUS_PIESLICE_SENSORS, 0), angle1);
offset2 = rotate_point(Vector(ExperimentParameters::RADIUS_PIESLICE_SENSORS, 0), angle2);
}
Vector PieSliceSensor::rotate_point(const Vector& point, double rad)
{
return Vector(point.x * cos(rad) - point.y * sin(rad), point.y * cos(rad) + point.x * sin(rad));
}
double PieSliceSensor::get_rad(const Vector& v1, const Vector& v2)
{
double angle = atan2(v1.x * v2.y + v1.y * v2.x, v1.x * v2.x - v1.y * v2.y);
if (angle < 0)
angle += 2 * M_PI;
return angle;
}
double PieSliceSensor::get_dist(const Vector& v1, const Vector& v2)
{
return sqrt((v1.x - v2.x) * (v1.x - v2.x) + (v1.y - v2.y) * (v1.y - v2.y));
}
|
a7329c32baf0e25cc30353caebfb37096d001ec4 | 817cc371e2eb56f37c400b7f96d658d0683476b1 | /202003_practice/1324/c.cpp | 5a6f20192dd39fd621112d11593fa5ec7b388dbc | [] | no_license | KanadeSiina/PracticeCode | c696495bd71395648ac62a41d0a41869f50c5eb4 | 146c8d5889eee7917a355feb8b03d1415a29ae9d | refs/heads/master | 2020-09-05T00:49:29.165600 | 2020-06-30T12:48:15 | 2020-06-30T12:48:15 | 219,937,221 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,200 | cpp | c.cpp | #include<bits/stdc++.h>
using namespace std;
#ifndef ONLINE_JUDGE
#define dbg(x...) do { cout << "\033[32;1m " << #x << " -> "; err(x); } while (0)
void err() { cout << "\033[39;0m" << endl; }
template<template<typename...> class T, typename t, typename... A>
void err(T<t> a, A... x) { for (auto v: a) cout << v << ' '; err(x...); }
template<typename T, typename... A>
void err(T a, A... x) { cout << a << ' '; err(x...); }
#else
#define dbg(...)
#endif
typedef long long ll;
typedef pair<int,int> pi;
typedef vector<int> vi;
template<class T> using vc=vector<T>;
template<class T> using vvc=vc<vc<T>>;
template<class T> void mkuni(vector<T>&v)
{
sort(v.begin(),v.end());
v.erase(unique(v.begin(),v.end()),v.end());
}
ll rand_int(ll l, ll r) //[l, r]
{
static mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count());
return uniform_int_distribution<ll>(l, r)(gen);
}
template<class T>
void print(T x,int suc=1)
{
cout<<x;
if(suc==1) cout<<'\n';
else cout<<' ';
}
template<class T>
void print(const vector<T>&v,int suc=1)
{
for(int i=0;i<v.size();i++)
print(v[i],i==(int)(v.size())-1?suc:2);
}
int main()
{
int T;
cin>>T;
while(T--)
{
string s;
cin>>s;
int n=s.length();
vi l(n,-1);
int cur=-1;
for(int i=0;i<n;i++)
{
l[i]=cur;
if(s[i]=='R') cur=i;
}
int L=1,R=n+1,ans=-1;
while(L<=R)
{
int mid=L+R>>1;
int pos=mid-1;
bool ok=1;
while(pos<n)
{
if(s[pos]=='R') pos+=mid;
else{
int lp=l[pos];
if(lp==-1||pos-lp>=mid)
{
//dbg(233);
ok=0;
break;
}
pos=lp;
}
}
if(ok)
{
R=mid-1;
ans=mid;
}
else L=mid+1;
}
assert(ans!=-1);
print(ans);
}
} |
27f8cfaa5dfd378560f9393a0155637317f4e7b5 | 21270ff03130a1dc1d5483f2a7a0d0aa5a393371 | /Buf.h | d320f817a58bebe6371cb05626a8036d343131e6 | [] | no_license | danila0606/Matrix | 148a37320a0550f532f40fdce43ee357995ec480 | c4ae0924d262497d0695a1a4889030fcf51db1b0 | refs/heads/master | 2023-02-15T14:31:09.529296 | 2021-01-14T11:00:39 | 2021-01-14T11:00:39 | 313,724,139 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,124 | h | Buf.h | #pragma once
#include <iostream>
void* operator new[] (size_t size);
void operator delete[] (void* p) noexcept;
namespace linal {
template<typename T>
class Buf {
protected:
Buf(size_t size) :
data_((size == 0) ? nullptr : static_cast< T* >(::operator new[](sizeof(T) * size)))
,size_(size) ,used_(0)
{}
Buf(Buf &&buf) noexcept: Buf(0) {
swap(buf);
}
Buf &operator=(Buf &&buf) noexcept {
swap(std::move(buf));
}
~Buf() {
for (int i = 0; i < used_; ++i)
(data_ + i)->~T();
operator delete[](data_);
}
void swap(Buf &buf) {
std::swap(data_, buf.data_);
std::swap(size_, buf.size_);
std::swap(used_, buf.used_);
}
T *data_ = nullptr;
size_t size_ = 0, used_ = 0;
size_t GetSize() const {return size_;};
size_t GetUsed() const {return used_;};
public:
Buf(const Buf& buf) = delete;
Buf& operator=(const Buf& buf) = delete;
};
} |
6710d5778df4699e86c89a1ad88811b7befd1f80 | 66fe278f0846f46736830ddb384beb096335eba4 | /src/include/globals.hpp | e8f6ac95ac37ba7056bb22d7deb9276b6f5fbdfa | [] | no_license | Theboys619/ImpalaRedo | 238d018fa1afb2c39c91574141e375008d3d7e8b | 36ee5f7200736ee7efcc33a5694797d3a20a0e62 | refs/heads/master | 2023-04-01T15:27:20.207189 | 2021-04-10T01:03:13 | 2021-04-10T01:03:13 | 322,733,016 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,578 | hpp | globals.hpp | using namespace Impala;
Value* fileReadImp(Value* self, std::vector<Value*> args, std::string file) {
std::string fileName = args[0]->ToString();
fs::path fullfile = fs::path(file).remove_filename() / fs::absolute(fs::path(fileName)).filename();
return new Value(readFile(fullfile.string()));
}
Value* write(Value* self, std::vector<Value*> args, std::string file) {
Value* outstream = args[0];
Value* ended = outstream->Get("ended");
while (!ended->ToBool() || !ended->ToInt()) {
Value* x = ((Function*)outstream->Get("read"))->Call(std::vector<Value*>(), outstream, nullptr, false);
ended = outstream->Get("ended");
if (x->GetType() == ValueType::Nothing)
break;
std::cout << x->ToString();
}
return outstream;
}
void DefineGlobals(Interpreter* interp, Scope* globals, std::string exepath) {
// Reading Globals.imp file
fs::path fullFile = (fs::absolute(exepath).remove_filename()) / fs::path("./src/globals/globals.imp");
interp->Interpret(fullFile.string());
// Creating Global Impala Object
Value* Impala = new Value("[Object Impala]");
Impala->Define("readFile", new Function(interp, fileReadImp));
// Adding stdout to Impala Object
Value* outstream = interp->ConstructClass("Stream", {}, interp->topScope);
std::vector<Value*> args = { new Value("flush", "string"), new Function(interp, write) };
((Function*)outstream->Get("on"))->Call(args, outstream, interp->topScope, false);
// Defining Impala and stdout Objects
Impala->Define("stdout", outstream);
globals->Define("Impala", Impala);
} |
ff24c6d38cbdd5d9df80ba781c866c60a70032b2 | 7ff5674fa49051ba0d8e452f22a54abea1d733e0 | /Oop Programz/Oop programs/Clock/Clock/Time.cpp | 680da8596336ccb645b3adf755df3d59928c046a | [] | no_license | Tayyibah/OOP | abb7cca8718def051f58a9aa418f95e01412fd1a | c5c499cd43a6bc6807f4f53dd90dbadc7d36c2d0 | refs/heads/master | 2021-01-22T08:53:12.332018 | 2018-02-13T03:29:57 | 2018-02-13T03:29:57 | 92,641,822 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,659 | cpp | Time.cpp | #include<iostream>
using namespace std;
#include"CString.h"
#include"Date.h"
#include"Time.h"
Time::Time()
{
hour=0;
minute=0;
second=0;
}
Time::~Time()
{
hour=0;
minute=0;
second=0;
}
Time::Time(int hr,int min,int sec )
{
setHour (hr);
setMinute ( min );
setSecond ( sec );
}
void Time::setHour ( int h )
{
if(h>=0&&h<=23)
hour=h;
}
void Time::setMinute ( int m )
{
if(m>=0&&m<60)
minute=m;
}
void Time::setSecond ( int s )
{
if(s>=0&&s<60)
second=s;
}
void Time::setTime ( int h, int m, int s )
{
setHour ( h );
setMinute ( m );
setSecond(s);
}
int Time::getHour ( )
{
return hour;
}
int Time::getMinute ( )
{
return minute;
}
int Time::getSecond ( )
{
return second;
}
void Time::printTwentyFourHourFormat()// print universal time
{
getHour ();
getMinute ();
getSecond();
}
void Time::printTwelveHourFormat() // print standard time
{
getHour ();
if(hour>12)
hour=hour-12;
else
hour=hour;
getMinute();
getSecond() ;
}
void Time::incSec( int i ) // increment in the second of the calling time object // default increment is 1
{
second=second+i;
if(second>=60)
{
minute =minute+second/60;
}
if(minute>=60)
{
hour=hour+minute /60;
}
if(hour>23)
{
hour=hour%24;
minute=minute%60;
second=second%60;
}
}
void Time::incMin( int i) // increment in the minute of the calling time object // default increment is 1
{
minute=minute+i;
if(minute>=60)
{
minute=minute+second/60;
}
if(hour>23)
{
hour=hour%24;
}
minute=minute%60;
}
void Time::incHour( int i ) // increment in the hour of the calling time object // default increment is 1
{
hour=hour+i;
if(hour>23)
{
hour=hour%24;
}
}
|
9be7611147ed5298e3b6308ef3f8287187d019a7 | 629f7423b91988b6c735a417b72f6fd886198d16 | /JOI2005-2006/1.cpp | 43b445f440070d135ace4c205da4f26980730f2a | [
"MIT"
] | permissive | yu1k/competitive-programming | 6af576f51255ee6edc77f0e6d5b24bac0f65596f | 0c47db99ce7fb9bcf6e3b0dbfb8c84d9cfa165fd | refs/heads/master | 2021-12-11T15:14:19.201721 | 2021-12-01T14:49:29 | 2021-12-01T14:49:29 | 192,532,915 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,173 | cpp | 1.cpp | #include <iostream>
using namespace std;
int main(){
int n;
int a;
int b;
int a_result = 0;
int b_result = 0;
cin >> n;
for(int i = 0; i < n; i++){
cin >> a >> b;
if(a > b){
a_result = a_result + a + b;
}
else if(a < b){
b_result = b_result + a + b;
}
else{
a_result = a_result + a;
b_result = b_result + b;
}
}
cout << a_result << " " << b_result << endl;
}
/*********** 学内コンテストアレンジ版 ********//*
#include <iostream>
using namespace std;
int main(){
int n;
while(1){
cin >> n;
if(n == 0){
break;
}
int a;
int b;
int a_result = 0;
int b_result = 0;
for(int i = 0; i < n; i++){
cin >> a >> b;
if(a > b){
a_result += a + b;
}
else if(a < b){
b_result += a + b;
}
else{
a_result += a;
b_result += b;
}
}
cout << a_result << " " << b_result << endl;
}
}*/ |
03a55fef023b99dcf484f1a7f65b90648322de0d | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/admin/activec/samples/pdc/step4/about.cpp | 58dc6522c266d919231bfef29addb044dd74d77c | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 2,158 | cpp | about.cpp | // This is a part of the Microsoft Management Console.
// Copyright (C) Microsoft Corporation, 1995 - 1999
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Management Console and related
// electronic documentation provided with the interfaces.
#include <stdafx.h>
#include "Service.h"
#include "CSnapin.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
CSnapinAboutImpl::CSnapinAboutImpl()
{
}
CSnapinAboutImpl::~CSnapinAboutImpl()
{
}
HRESULT CSnapinAboutImpl::AboutHelper(UINT nID, LPOLESTR* lpPtr)
{
if (lpPtr == NULL)
return E_POINTER;
CString s;
// Needed for Loadstring
AFX_MANAGE_STATE(AfxGetStaticModuleState());
s.LoadString(nID);
*lpPtr = reinterpret_cast<LPOLESTR>
(CoTaskMemAlloc((s.GetLength() + 1)* sizeof(wchar_t)));
if (*lpPtr == NULL)
return E_OUTOFMEMORY;
USES_CONVERSION;
wcscpy(*lpPtr, T2OLE((LPTSTR)(LPCTSTR)s));
return S_OK;
}
STDMETHODIMP CSnapinAboutImpl::GetSnapinDescription(LPOLESTR* lpDescription)
{
return AboutHelper(IDS_DESCRIPTION, lpDescription);
}
STDMETHODIMP CSnapinAboutImpl::GetProvider(LPOLESTR* lpName)
{
return AboutHelper(IDS_COMPANY, lpName);
}
STDMETHODIMP CSnapinAboutImpl::GetSnapinVersion(LPOLESTR* lpVersion)
{
return AboutHelper(IDS_VERSION, lpVersion);
}
STDMETHODIMP CSnapinAboutImpl::GetSnapinImage(HICON* hAppIcon)
{
if (hAppIcon == NULL)
return E_POINTER;
AFX_MANAGE_STATE(AfxGetStaticModuleState());
*hAppIcon = LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDI_APPICON));
ASSERT(*hAppIcon != NULL);
return (*hAppIcon != NULL) ? S_OK : E_FAIL;
}
STDMETHODIMP CSnapinAboutImpl::GetStaticFolderImage(HBITMAP* hSmallImage,
HBITMAP* hSmallImageOpen,
HBITMAP* hLargeImage,
COLORREF* cLargeMask)
{
return S_OK;
}
|
a8c65dac3e6743d1b8859207e054deff2290549d | 8a46c8b1ed8b14789e66fe862b2210da2478f7a5 | /200311boj/1006.cpp | cecb87467f8387dbe81ead3183995c398501a429 | [] | no_license | peter9378/algorithm_study | 627b4c817f9a0c70b94920708548844c6dbcff92 | ff4eedf8a693d00d62414fb41dc8c4d2cd7e42af | refs/heads/master | 2021-12-23T13:03:20.295990 | 2021-10-13T14:44:55 | 2021-10-13T14:44:55 | 125,086,792 | 1 | 0 | null | null | null | null | UHC | C++ | false | false | 2,044 | cpp | 1006.cpp | /**
* BOJ
* No.1006 습격자 초라기
* @author peter9378
* @date 2020.03.11
*/
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <cmath>
#include <map>
#include <queue>
#include <stack>
#include <unordered_set>
#include <cstring>
#include <iterator>
#include <numeric>
using namespace std;
int N, W;
int arr[10001][2];
int dp[10001][4][4];
void init()
{
for (int i = 0; i < 10001; i++)
{
arr[i][0] = 0;
arr[i][1] = 0;
for (int j = 0; j < 4; j++)
{
for (int k = 0; k < 4; k++)
dp[i][j][k] = -1;
}
}
return;
}
int dfs(int index, int current, int next)
{
int &answer = dp[index][current][next];
if (answer != -1)
return answer;
bool inside, outside, common;
inside = (arr[index][0] + arr[index ? index - 1 : N - 1][0] <= W);
outside = (arr[index][1] + arr[index ? index - 1 : N - 1][1] <= W);
common = (arr[index][0] + arr[index][1] <= W);
if (index == N - 1)
{
if (index == 0)
return common ? 1 : 2;
answer = 2;
if (next == 0)
{
if ((inside && !(current & 1) || (outside && current < 2) || common))
answer = 1;
if (inside && outside && current == 0)
answer = 0;
}
else if ((next == 1 && outside && current < 2) || (next == 2 && inside && !(current & 1)))
answer = 1;
return answer;
}
answer = 2 + dfs(index + 1, 0, index ? next : 0);
if (inside && !(current & 1))
answer = min(answer, 1 + dfs(index + 1, 1, index ? next : 1));
if (outside && current < 2)
answer = min(answer, 1 + dfs(index + 1, 2, index ? next : 2));
if (inside && outside && current == 0)
answer = min(answer, dfs(index + 1, 3, index ? next : 3));
if (common)
answer = min(answer, 1 + dfs(index + 1, 3, index ? next : 0));
return answer;
}
// main function
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int T;
cin >> T;
while (T--)
{
init();
cin >> N >> W;
for (int i = 0; i < N; i++)
cin >> arr[i][0];
for (int i = 0; i < N; i++)
cin >> arr[i][1];
cout << dfs(0, 0, 0) << "\n";
}
return 0;
}
|
4b529be38164ba25f9852449118c65dd8d7a9e6a | 1acc5667ae930ae4a3d4e61fdc0300fc6588809a | /18 DP and Bitmasking/Recusrsive n job nn person.cpp | ed667ed94789e72a994e20e95311fd9b76d7c127 | [] | no_license | sheikh-haji/CODING-NINJAS | 0a878519e275f3fbd6766d6e286f61ea90e01a90 | 3f25038fa28eff936f4a0199acc324b31c7af85a | refs/heads/master | 2022-12-30T00:40:09.156778 | 2020-10-18T05:49:26 | 2020-10-18T05:49:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 887 | cpp | Recusrsive n job nn person.cpp | //DP with Bitmasking
//min cost n jobs n persons
#include<bits/stdc++.h>
using namespace std;
int mincost(int cost[4][4],int n,int person ,int mask,vector<int> &dp){
if(person>=n)return 0;
if(dp[mask]!=-1)return dp[mask];
int ans=INT_MAX;
for(int i=0;i<n;i++){
if(!((1<<i)&mask)){
ans=min(ans,mincost(cost,n,(person+1)%(n+1),(mask|(1<<i)),dp)+cost[person][i]);
}
}
dp[mask]=ans;
return ans;
}
int32_t main()
{
std::ios::sync_with_stdio(false);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output1.txt", "w", stdout);
#endif
int n=4;//no of jobs
int cost[4][4]={{10,2,6,5},{1,15,12,8},{7,8,9,3},{15,13,4,10}};//persons vs job ->cost
vector<int> dp((1<<n)-1,-1);//for saving repeating ans
//recusrion bitmasking
cout<<mincost(cost,4,0,0,dp);
return 0;
}
|
8f3c6e3fe24977a34f11709197afafd66b551173 | 0c9c35d5733c25b0a88e34e3a99f6a770f3048b9 | /src/common/numeric/long/multiplication.h | b06c7cbb7f7f78f8494687667133b90198a0eca9 | [
"BSD-3-Clause"
] | permissive | evilmucedin/icfpc2020 | db44d7ca9d9cb8e2a312b55d8a9c655abb2ff3a8 | f8d26125116af6f5e6310010214a57815ecddb04 | refs/heads/master | 2022-11-19T22:48:37.682436 | 2020-07-24T05:37:43 | 2020-07-24T05:37:43 | 281,195,051 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,380 | h | multiplication.h | #pragma once
#include "common/modular.h"
#include "common/modular/static/fft.h"
#include "common/modular/utils/merge_remainders.h"
#include "common/numeric/long/unsigned.h"
#include <algorithm>
#include <vector>
namespace numeric {
namespace nlong {
Unsigned MultBase(const Unsigned& a, const Unsigned& b) {
Unsigned r;
for (auto it = b.end(); it != b.begin();) {
r.ShiftBlocksRight(1);
r += a * *(--it);
}
return r;
}
namespace hidden {
template <class TModular>
std::vector<TModular> MultFFTConvert(const Unsigned& a) {
static const uint32_t mask16 = (1u << 16) - 1;
std::vector<TModular> v;
v.reserve(2 * a.Size());
for (auto ai : a) {
v.push_back(ai & mask16);
v.push_back(ai >> 16);
}
return v;
}
} // namespace hidden
// Max supported length for (a*b) is 2^26.
template <unsigned maxn = (1u << 16)>
Unsigned MultFFT(const Unsigned& a, const Unsigned& b) {
static const uint32_t mask16 = (1u << 16) - 1;
using TModular1 = TModular_P32<2013265921>;
using TModular2 = TModular_P32<1811939329>;
using TFFT1 = modular::mstatic::FFT<TModular1>;
using TFFT2 = modular::mstatic::FFT<TModular2>;
thread_local TFFT1 fft1(maxn);
thread_local TFFT2 fft2(maxn);
assert(2 * (a.Size() + b.Size()) <= (1u << 26));
auto r1 = fft1.Mult(hidden::MultFFTConvert<TModular1>(a),
hidden::MultFFTConvert<TModular1>(b));
auto r2 = fft2.Mult(hidden::MultFFTConvert<TModular2>(a),
hidden::MultFFTConvert<TModular2>(b));
assert(r1.size() == r2.size());
uint64_t t64 = 0;
Unsigned::TData v(r1.size() / 2, 0);
for (size_t i = 0; i < r1.size(); ++i) {
t64 += MergeRemainders<modular::TArithmetic_P32U>(
TModular1::GetMod(), r1[i].Get(), TModular2::GetMod(), r2[i].Get());
uint32_t t16 = uint32_t(t64) & mask16;
v[i / 2] += (i % 2) ? (t16 << 16) : t16;
t64 >>= 16;
}
for (; t64; t64 >>= 32) v.push_back(uint32_t(t64));
return Unsigned(v);
}
Unsigned MultAuto(const Unsigned& a, const Unsigned& b) {
return (std::min(a.Size(), b.Size()) < 100) ? MultBase(a, b) : MultFFT(a, b);
}
} // namespace nlong
} // namespace numeric
LongUnsigned operator*(const LongUnsigned& l, const LongUnsigned& r) {
return numeric::nlong::MultAuto(l, r);
}
LongUnsigned& operator*=(LongUnsigned& l, const LongUnsigned& r) {
l = numeric::nlong::MultAuto(l, r);
return l;
}
|
df6aca168dfbe76d1c0cb55e942de06cbf32fe0a | 31b68b1851c12b48e1e83a16a572b57af8197153 | /Graph_Theory1/largest_piece.cpp | 59d8518156e2ffa1d8f61fbb184dc859f5ffa2b5 | [] | no_license | Rohan7546/Coding_Ninjas_Competitive_Programming | 40e77fba03e6cbb20e8d0679cb00a033bb839aaf | 2506a9b8c32629b7610c66a32446e255a42e9e20 | refs/heads/main | 2023-06-27T02:36:59.564187 | 2021-07-21T08:45:25 | 2021-07-21T08:45:25 | 383,400,568 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,124 | cpp | largest_piece.cpp | /*
Largest Piece
Send Feedback
Its Gary's birthday today and he has ordered his favourite square cake consisting of '0's and '1's . But Gary wants the biggest piece of '1's and no '0's . A piece of cake is defined as a part which consist of only '1's, and all '1's share an edge with eachother on the cake. Given the size of cake N and the cake , can you find the size of the biggest piece of '1's for Gary ?
Input Format :
First line will contain T(number of test cases), each test case follows as.
Line 1 : An integer N denoting the size of cake
Next N lines : N characters denoting the cake
Output Format :
Print the size of the biggest piece of '1's and no '0'sfor each test case in a newline.
Constraints:
1 <= T <= 10
1 <= N <= 1000
Sample Input :
1
2
11
01
Sample Output :
3
*/
#include<bits/stdc++.h>
using namespace std;
const int mex = 1e3 + 1;
int arr[mex][mex];
int dfs(int i, int j, int n, int m, bool visited[][mex]) {
if (arr[i][j] == 0) {
return 0;
}
visited[i][j] = true;
if (i >= n || j >= m || i < 0 || j < 0) {
return 0;
} int w = 0, x = 0, y = 0, z = 0;
if (j + 1 < m && arr[i][j + 1] == 1 && !visited[i][j + 1]) {
x = 1 + dfs(i, j + 1, n, m, visited);
}
if (j - 1 >= 0 && arr[i][j - 1] == 1 && !visited[i][j - 1]) {
y = 1 + dfs(i, j - 1, n, m, visited);
}
if (i + 1 < n && arr[i + 1][j] == 1 && !visited[i + 1][j]) {
z = 1 + dfs(i + 1, j, n, m, visited);
}
if (i - 1 >= 0 && arr[i - 1][j] == 1 && !visited[i - 1][j]) {
w = 1 + dfs(i - 1, j, n, m, visited);
}
return x + y + z + w;
}
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
memset(arr, 0, sizeof(arr));
for (int i = 0; i < n; i++) {
string s;
cin >> s;
for (int j = 0; j < n; j++) {
arr[i][j] = s[j] - '0';
}
}
bool visited[mex][mex];
int maxm = 0;
memset(visited, false, sizeof(visited));
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (!visited[i][j] && arr[i][j] == 1) {
maxm = max(maxm, 1 + dfs(i, j, n, n, visited));
}
}
}
cout << maxm << endl;
}
} |
5fd5397a7e43227d0bc834e6d9aff605a27d3d72 | 71c17ebecd0e570c371c8f637119b6df48bc2eac | /Prototypes/src/Prototype02.h | 05f4e1d5ff14a93cbf44f7390577afb9b4a224d9 | [] | no_license | jtpils/Skylines01 | deb558ea6a98480dd5439c5e22653710b817a2d0 | 7a89803a0d30d03be8505edc61453717c99bc083 | refs/heads/master | 2020-05-14T18:29:39.237905 | 2014-08-08T21:20:23 | 2014-08-08T21:20:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,706 | h | Prototype02.h | //
// Prototype02.h
//
// Created by Patricio Gonzalez Vivo on 9/12/13.
//
//
#pragma once
#include "UIProject.h"
#include "UIMapBackground.h"
#include "UIvPlotter.h"
struct Star {
ofPoint pos;
ofPolyline trail;
};
class Prototype02 : public UI3DProject {
public:
string getSystemName(){return "Prototype02";}
void selfSetupGuis();
void selfSetupSystemGui();
void guiSystemEvent(ofxUIEventArgs &e);
void selfSetupRenderGui();
void guiRenderEvent(ofxUIEventArgs &e);
void selfSetup();
void selfUpdate();
void selfDraw();
void selfDrawOverlay();
void selfPostDraw();
void selfWindowResized(ofResizeEventArgs & args);
void selfKeyPressed(ofKeyEventArgs & args);
void selfKeyReleased(ofKeyEventArgs & args);
void selfMouseDragged(ofMouseEventArgs& data);
void selfMouseMoved(ofMouseEventArgs& data);
void selfMousePressed(ofMouseEventArgs& data);
void selfMouseReleased(ofMouseEventArgs& data);
protected:
// Input
//
ofxUIRadio *sourceFiles;
ofImage image;
// Profile extractor
//
double ColourDistance(ofColor e1, ofColor e2);
vector<ofPoint> offsetPts;
float threshold;
float thresholdSmoothing;
float offSetY,scale,simplify;
ofPolyline line;
bool bFlat;
ofPolyline area;
// Stars
//
vector<Star> stars;
bool bRotate;
vector<ofPolyline> paths;
// Plotter
//
UIvPlotter plotter;
ofRectangle plotterArea;
bool bPrint;
bool bViewMovePaths;
};
|
8ccaded3eb83c88498a0442fadbe4f8cb158426c | 21593969b6a1fb3e765f43d258326fc90b659d41 | /Source/ServiceLogic/SL/CDR_Writer/TrData/TrData.cpp | c70108efad53ca342a5e5923376c6bf41f7ed151 | [] | no_license | abdullahdhiab/DRA | bb78d72a8fb68407919875873b457b5207b82432 | f62470e3f33db3f50b5cc3bef45f829af12178f5 | refs/heads/master | 2023-03-19T07:17:31.789443 | 2020-07-30T17:05:50 | 2020-07-30T17:05:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | TrData.cpp | #include <TCM/ServiceLogic/SL/CDR_Writer/TrData/TrData.h>
Tm_TrData::Tm_TrData()
{
Clear();
}
void Tm_TrData::Clear()
{
m_sSessionID.clear();
m_nAppID = -1;
m_nResultCode = -1;
m_nCommandCode = -1;
m_nFinalStatus = -1;
m_sDstHost.clear();
m_nRequestType = -1;
m_sUserName.clear();
m_sHostIdentity.clear();
}
|
485e2bf2a0f3d1e0f9f5cb29e133fc445e5cf6eb | 502b116267112877ab02f3cc7e54ee5e5d09b551 | /Triangle.cpp | 03a2e52c059dc54b3f54668712929697b8b8c10b | [] | no_license | Jessicahust/Leetcode | 9ee5632f7d265a08f8579f89444e6eb7822d18cc | 95c924af7d020339c4fc236cd919ca8cd53ec9a7 | refs/heads/master | 2021-01-01T06:26:18.301176 | 2015-01-09T05:26:21 | 2015-01-09T05:26:21 | 28,226,244 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 654 | cpp | Triangle.cpp | #include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
vector<int> getRow(int rowIndex) {
if(rowIndex==0)
return {1};
vector<int> vec1(rowIndex);
vector<int> vec2(rowIndex+1);
vec1=getRow(rowIndex-1);
vec2[0]=1;
for(int i=1;i<rowIndex;i++)
{
vec2[i]=vec1[i-1]+vec1[i];
}
vec2[rowIndex]=1;
return vec2;
}
};
int main()
{
Solution s;
int n;
cout<<"input n is :";
cin>>n;
vector<int> vec=s.getRow(n);
for(auto v:vec)
cout<<v<<" ";
cout<<endl;
}
|
11bf9df356346bfa2db7ef5abbc4e0feeff6c85c | 4749b64b52965942f785b4e592392d3ab4fa3cda | /mojo/public/cpp/system/message_pipe.h | 76ba300ae0c85ca757318912bfdbb962c8f6efb9 | [
"BSD-3-Clause"
] | permissive | crosswalk-project/chromium-crosswalk-efl | 763f6062679727802adeef009f2fe72905ad5622 | ff1451d8c66df23cdce579e4c6f0065c6cae2729 | refs/heads/efl/crosswalk-10/39.0.2171.19 | 2023-03-23T12:34:43.905665 | 2014-12-23T13:44:34 | 2014-12-23T13:44:34 | 27,142,234 | 2 | 8 | null | 2014-12-23T06:02:24 | 2014-11-25T19:27:37 | C++ | UTF-8 | C++ | false | false | 3,669 | h | message_pipe.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 MOJO_PUBLIC_CPP_SYSTEM_MESSAGE_PIPE_H_
#define MOJO_PUBLIC_CPP_SYSTEM_MESSAGE_PIPE_H_
#include <assert.h>
#include "mojo/public/c/system/message_pipe.h"
#include "mojo/public/cpp/system/handle.h"
#include "mojo/public/cpp/system/macros.h"
namespace mojo {
// MessagePipeHandle -----------------------------------------------------------
class MessagePipeHandle : public Handle {
public:
MessagePipeHandle() {}
explicit MessagePipeHandle(MojoHandle value) : Handle(value) {}
// Copying and assignment allowed.
};
MOJO_COMPILE_ASSERT(sizeof(MessagePipeHandle) == sizeof(Handle),
bad_size_for_cpp_MessagePipeHandle);
typedef ScopedHandleBase<MessagePipeHandle> ScopedMessagePipeHandle;
MOJO_COMPILE_ASSERT(sizeof(ScopedMessagePipeHandle) ==
sizeof(MessagePipeHandle),
bad_size_for_cpp_ScopedMessagePipeHandle);
inline MojoResult CreateMessagePipe(const MojoCreateMessagePipeOptions* options,
ScopedMessagePipeHandle* message_pipe0,
ScopedMessagePipeHandle* message_pipe1) {
assert(message_pipe0);
assert(message_pipe1);
MessagePipeHandle handle0;
MessagePipeHandle handle1;
MojoResult rv = MojoCreateMessagePipe(options,
handle0.mutable_value(),
handle1.mutable_value());
// Reset even on failure (reduces the chances that a "stale"/incorrect handle
// will be used).
message_pipe0->reset(handle0);
message_pipe1->reset(handle1);
return rv;
}
// These "raw" versions fully expose the underlying API, but don't help with
// ownership of handles (especially when writing messages).
// TODO(vtl): Write "baked" versions.
inline MojoResult WriteMessageRaw(MessagePipeHandle message_pipe,
const void* bytes,
uint32_t num_bytes,
const MojoHandle* handles,
uint32_t num_handles,
MojoWriteMessageFlags flags) {
return MojoWriteMessage(message_pipe.value(), bytes, num_bytes, handles,
num_handles, flags);
}
inline MojoResult ReadMessageRaw(MessagePipeHandle message_pipe,
void* bytes,
uint32_t* num_bytes,
MojoHandle* handles,
uint32_t* num_handles,
MojoReadMessageFlags flags) {
return MojoReadMessage(message_pipe.value(), bytes, num_bytes, handles,
num_handles, flags);
}
// A wrapper class that automatically creates a message pipe and owns both
// handles.
class MessagePipe {
public:
MessagePipe();
explicit MessagePipe(const MojoCreateMessagePipeOptions& options);
~MessagePipe();
ScopedMessagePipeHandle handle0;
ScopedMessagePipeHandle handle1;
};
inline MessagePipe::MessagePipe() {
MojoResult result MOJO_ALLOW_UNUSED =
CreateMessagePipe(NULL, &handle0, &handle1);
assert(result == MOJO_RESULT_OK);
}
inline MessagePipe::MessagePipe(const MojoCreateMessagePipeOptions& options) {
MojoResult result MOJO_ALLOW_UNUSED =
CreateMessagePipe(&options, &handle0, &handle1);
assert(result == MOJO_RESULT_OK);
}
inline MessagePipe::~MessagePipe() {
}
} // namespace mojo
#endif // MOJO_PUBLIC_CPP_SYSTEM_MESSAGE_PIPE_H_
|
646551b0d57777e533595f14a33f834e1e072e4c | 4fd54769d7d924257633ed59b7f9668d1502ebc7 | /src/TApplication.h | ee3915267ccf5bd89a1da4692dc175a85bc06aba | [
"MIT"
] | permissive | paule32/memtest | 410ded25314ee53bb710c5b2c5a605c32ab2b66b | 6d7a697f04a7913a1b333f87af598ce68b232713 | refs/heads/master | 2021-01-19T07:30:36.110667 | 2017-04-07T13:52:24 | 2017-04-07T13:52:24 | 87,548,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 448 | h | TApplication.h | #ifndef TAPPLICATION_H_
#define TAPPLICATION_H_
#include <TObject.h>
#include <TDesktop.h>
#include <TString.h>
class TApplication: public TObject
{
friend std::ostream& operator << (std::ostream &out, TApplication &obj);
friend std::istream& operator >> (std::istream &out, TApplication &obj);
public:
class TDesktop * desktop;
explicit TApplication(void);
void init(int,char**);
void run(void);
};
#endif
|
cc51ea820a8277284152a9e0b0019a354901e976 | f64792d79167313fcb4a04c6c448d1e6efe1057b | /duoren2/Source/duoren1/duoren1GameMode.h | 9e9d590aeeca2d67082f26ce1723f72605b99f02 | [] | no_license | Des504Mixt/Des504Mixt | f8d3adda3dd0e87be38050465aed153d5c9e3e7b | 7a3071e364b05fe5a77e9b1d0651e74409f677bd | refs/heads/main | 2023-08-11T00:47:55.222491 | 2021-09-19T15:45:29 | 2021-09-19T15:45:29 | 376,068,540 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 292 | h | duoren1GameMode.h | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "duoren1GameMode.generated.h"
UCLASS(minimalapi)
class Aduoren1GameMode : public AGameModeBase
{
GENERATED_BODY()
public:
Aduoren1GameMode();
};
|
d75af140b7656502972f4fbf1b61146147c69332 | 2cefc2862d946a90773ce159bae2704e89a4ee09 | /Validation/MuonGEMHits/interface/GEMSimTrackMatch.h | 80dd7060c03392ada5e54d4a76e9dceec07e38f2 | [] | no_license | cha63506/GEMCSCSegmentCode | c776e6ccfd521a427aaecd46eb90d41f8482f660 | 439dc06572286f4f0808d5084773282aed9080bf | refs/heads/master | 2018-03-23T03:40:23.015444 | 2014-02-25T15:48:41 | 2014-02-25T15:48:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,755 | h | GEMSimTrackMatch.h | #ifndef GEMSimTrackMatch_H
#define GEMSimTrackMatch_H
#include "DQMServices/Core/interface/DQMStore.h"
#include "DQMServices/Core/interface/MonitorElement.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/EDAnalyzer.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "SimDataFormats/Track/interface/SimTrackContainer.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include "Geometry/CommonDetUnit/interface/GeomDet.h"
#include "Geometry/GEMGeometry/interface/GEMGeometry.h"
#include "Geometry/GEMGeometry/interface/GEMEtaPartition.h"
#include "Geometry/GEMGeometry/interface/GEMEtaPartitionSpecs.h"
#include "Geometry/CommonTopologies/interface/StripTopology.h"
#include "Validation/MuonGEMHits/interface/SimTrackMatchManager.h"
class GEMSimTrackMatch
{
public:
GEMSimTrackMatch(DQMStore* , std::string , edm::ParameterSet);
~GEMSimTrackMatch();
void analyze(const edm::Event& e, const edm::EventSetup&);
void buildLUT();
std::pair<int,int> getClosestChambers(int region, float phi);
bool isSimTrackGood(const SimTrack& );
void setGeometry(const GEMGeometry* geom);
private:
edm::ParameterSet cfg_;
std::string simInputLabel_;
DQMStore* dbe_;
const GEMGeometry* theGEMGeometry;
MonitorElement* track_eta;
MonitorElement* track_eta_l1;
MonitorElement* track_eta_l2;
MonitorElement* track_eta_l1or2;
MonitorElement* track_eta_l1and2;
MonitorElement* track_phi;
MonitorElement* track_phi_l1;
MonitorElement* track_phi_l2;
MonitorElement* track_phi_l1or2;
MonitorElement* track_phi_l1and2;
MonitorElement* gem_lx_even;
MonitorElement* gem_lx_even_l1;
MonitorElement* gem_lx_even_l2;
MonitorElement* gem_lx_even_l1or2;
MonitorElement* gem_lx_even_l1and2;
MonitorElement* gem_ly_even;
MonitorElement* gem_ly_even_l1;
MonitorElement* gem_ly_even_l2;
MonitorElement* gem_ly_even_l1or2;
MonitorElement* gem_ly_even_l1and2;
MonitorElement* gem_lx_odd;
MonitorElement* gem_lx_odd_l1;
MonitorElement* gem_lx_odd_l2;
MonitorElement* gem_lx_odd_l1or2;
MonitorElement* gem_lx_odd_l1and2;
MonitorElement* gem_ly_odd;
MonitorElement* gem_ly_odd_l1;
MonitorElement* gem_ly_odd_l2;
MonitorElement* gem_ly_odd_l1or2;
MonitorElement* gem_ly_odd_l1and2;
std::pair<std::vector<float>,std::vector<int> > positiveLUT_;
std::pair<std::vector<float>,std::vector<int> > negativeLUT_;
edm::Handle<edm::SimTrackContainer> sim_tracks;
edm::Handle<edm::SimVertexContainer> sim_vertices;
float minPt_;
float minEta_;
float maxEta_;
float radiusCenter_, chamberHeight_;
};
#endif
|
10caffab2c11a9df6d75b7b4e938445a37b41660 | 6197740e6297da2f3d0c8ffd2a1d7ef5d8b3d2cb | /DotNet/ProVisualC++CLI/Chapter07/DequeEx.cpp | 22ad2fd067ffef5aff272b35b39f8af2e380cd9a | [] | no_license | ssh352/cppcode | 1159d4137b68ada253678718b3d416639d3849ba | 5b7c28963286295dfc9af087bed51ac35cd79ce6 | refs/heads/master | 2020-11-24T18:07:17.587795 | 2016-07-15T13:13:05 | 2016-07-15T13:13:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,153 | cpp | DequeEx.cpp | #include <cliext/deque>
#include <cliext/adapter>
using namespace System;
using namespace cliext;
using namespace System::Collections::Generic;
ref class Pet
{
public:
String^ Name;
// default public constructor.
Pet() : Name(String::Empty) { }
// Okay not needed but makes example easier. :)
Pet(String^ name) : Name(name) { }
// public copy constructor.
Pet(const Pet% orig)
{
Name = orig.Name;
}
// public assignment operator.
Pet% operator=(const Pet% orig)
{
if (this != %orig)
Name = orig.Name;
return *this;
}
// public destructor.
~Pet() { }
// comparison operator.
bool operator<(const Pet^ rhs)
{
return (Name->CompareTo(rhs->Name) < 0);
}
// equality operator.
bool operator==(const Pet^ rhs)
{
return (Name->Equals(rhs->Name));
}
};
int main(array<System::String ^> ^args)
{
deque<Pet^> pets;
pets.push_front(gcnew Pet("King"));
pets.push_front(gcnew Pet("Buster"));
pets.push_front(gcnew Pet("Caesar"));
pets.push_front(gcnew Pet("Daisy"));
System::Console::WriteLine("for loop -- Using subscript:");
for(int i=0; i < pets.size(); i++)
System::Console::Write("{0} ", pets[i]->Name);
System::Console::WriteLine("\n\nfor loop -- Using const_iterator" +
" with insert: ");
pets.insert(pets.begin() + 1, gcnew Pet("Jack"));
deque<Pet^>::const_iterator pet_i;
for(pet_i = pets.begin(); pet_i != pets.end(); pet_i++)
System::Console::Write("{0} ", pet_i->Name);
System::Console::WriteLine("\n\nfor each loop -- From typecast to IList<>" +
" with Add():");
IList<Pet^>^ genericIList = %pets;
genericIList->Add(gcnew Pet("Queen"));
for each (Pet^ pet in genericIList)
System::Console::Write("{0} ", pet->Name);
System::Console::WriteLine("\n\nfor each loop --" +
" using built in IEnumerator<> interface:");
for each (Pet^ pet in pets)
System::Console::Write("{0} ", pet->Name);
System::Console::WriteLine("\n\nfor each loop --" +
" subset ICollection<>" +
" created by make_collection<>():");
ICollection<Pet^>^ icPets = make_collection(pets.begin() + 1,
pets.end() - 1);
for each (Pet^ pet in icPets)
System::Console::Write("{0} ", pet->Name);
System::Console::WriteLine("\n\nfor loop --" +
" Using reverse_iterator from ICollection" +
" with pop_back():");
deque<Pet^>^ dPets = gcnew deque<Pet^>(icPets);
dPets->pop_front();
deque<Pet^>::reverse_iterator pet_ri;
for(pet_ri = dPets->rbegin(); pet_ri != dPets->rend(); pet_ri++)
System::Console::Write("{0} ", pet_ri->Name);
System::Console::WriteLine("\n\n");
return (0);
}
|
fbe6273632004421cfc0ac03ed67e131d2ebb695 | 1662cd859416acb91ccd4ee42b7ab89641256d28 | /src/ui/HSVRangeControlPanel/hsvrangecontrolpanel.h | b5de125705671220d67efef203f52e07aa35d230 | [] | no_license | somabuggy2020/ONGAProject | cc34bf9928046e5d2f6affc7f3b9104dc581e758 | 89be4e826ffd369fd1f3892e5e7fefc40ac54f85 | refs/heads/master | 2023-01-04T06:06:06.272653 | 2020-11-04T12:14:50 | 2020-11-04T12:14:50 | 300,178,684 | 0 | 1 | null | 2020-10-01T07:08:51 | 2020-10-01T06:57:01 | null | UTF-8 | C++ | false | false | 970 | h | hsvrangecontrolpanel.h | #ifndef HSVRANGECONTROLPANEL_H
#define HSVRANGECONTROLPANEL_H
#include <QWidget>
#include <QString>
#include <QDebug>
namespace Range
{
const int Min = 0;
const int Max = 255;
}
struct Range_t
{
int min, max;
Range_t():min(Range::Min),max(Range::Max) {}
};
struct HSVRange_t
{
Range_t H, S, V;
};
namespace Ui {
class HSVRangeControlPanel;
}
class HSVRangeControlPanel : public QWidget
{
Q_OBJECT
public:
explicit HSVRangeControlPanel(QWidget *parent = nullptr);
~HSVRangeControlPanel();
private slots:
void on_pushButton_clicked();
void on_sldrHMin_valueChanged(int value);
void on_sldrHMax_valueChanged(int value);
void on_sldrSMin_valueChanged(int value);
void on_sldrSMax_valueChanged(int value);
void on_sldrVMin_valueChanged(int value);
void on_sldrVMax_valueChanged(int value);
signals:
void On_HSVRange_changed(HSVRange_t hsvRange);
private:
Ui::HSVRangeControlPanel *ui;
HSVRange_t hsvRange;
};
#endif // HSVRANGECONTROLPANEL_H
|
5fa1ee30f6fee478384c96de87d04707f4e5634f | a44477d357f3c395100666b96cd325d9575cfc66 | /c10/10.33.cpp | e19f717b7170458fde17a36b9aa676fecc0579dc | [] | no_license | syllcs/primer | 13b9900107fac430def722d12ffe5a9e5e77e3bf | b99e47b5a6388aa292fb839fa585eb0dd35594ba | refs/heads/master | 2020-03-15T07:00:19.451257 | 2019-04-19T19:49:43 | 2019-04-19T19:49:43 | 132,020,014 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 620 | cpp | 10.33.cpp | #include <iostream>
#include <fstream>
#include <iterator>
#include <string>
#include <algorithm>
using namespace std;
void even_odd_into_files(string sin, string sout1, string sout2) {
ifstream ifs(sin);
ofstream ofs1(sout1);
ofstream ofs2(sout2);
istream_iterator<int> iter_in(ifs), eof_in;
ostream_iterator<int> iter_odd(ofs1, " ");
ostream_iterator<int> iter_even(ofs2, "\n");
vector<int> vec;
copy(iter_in, eof_in, back_inserter(vec));
for(int i : vec) {
if (i % 2) *iter_odd++ = i;
else *iter_even++ = i;
}
}
int main() {
even_odd_into_files("D:\\test.txt", "D:\\test1.txt", "D:\\test2.txt");
}
|
fea3eb38102e91bc6e173e5d88faf4cc5b5cd92b | 1b9b9dc1efb36b7fa846953b8ee835cb517a3a5b | /solved problems/One Way Roads.cpp | 984364faa9c539bb0d346790f9c16fa40a833456 | [] | no_license | sohelarman1100/Graph-Theory | 25f70e132f8b9eeed4390f24118fd914e7b4b572 | 8bed2091dacd4039359e504afe0e4bc8afdb168e | refs/heads/master | 2023-03-12T04:33:43.173927 | 2021-03-02T10:10:33 | 2021-03-02T10:10:33 | 343,703,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,929 | cpp | One Way Roads.cpp | #include<bits/stdc++.h>
using namespace std;
int sz,m,mx=0,p;
vector<int>graph[105];
int vis[105];
vector<int>dis[105];
int cst[101][3];
int node[101][3];
int cnt1=0,cnt2=1,cnt3=1,cost=0;
void DFS(int start)
{
if(vis[start])
return;
vis[start]=1;
for(int i=0; i<graph[start].size(); i++)
{
int u=graph[start][i];
cost+=dis[start][i];
if(graph[u].size()==0)
{
node[cnt1][cnt2++]=u;
cst[cnt1][cnt3++]=cost;
cost=0;
}
if(!vis[u])
DFS(u);
}
}
int main()
{
int t,q;
scanf("%d",&t);
for(q=1; q<=t; q++)
{
int i,j,u,v,d,a,b,c;
//memset(dis,0,sizeof(dis));
cnt1=0,cnt2=1,cnt3=1;
for(i=0; i<101; i++)
{
memset(cst[i],0,sizeof(cst[i]));
memset(node[i],0,sizeof(node[i]));
}
memset(vis,0,sizeof(vis));
for(i=0; i<105; i++)
{
graph[i].clear();
dis[i].clear();
}
scanf("%d",&m);
//dis is the array where cost are stored
for(i=1; i<=m; i++)
{
cin>>u>>v>>d;
graph[u].push_back(v);
dis[u].push_back(d);
}
for(i=1; i<=m; i++)
{
if(vis[i]==0 && graph[i].size()==2)
{
cnt1++;
cnt2=1;
cnt3=1;
p=i;
DFS(p);
}
}
int path[101][3];
for(i=0; i<101; i++)
memset(path[i],0,sizeof(path[i]));
path[1][1]=1;
path[1][2]=2;
int crnt=node[1][1];
node[1][1]=-1;
node[1][2]=-1;
int colour=1;
int brk=0;
for(j=1; j<=cnt1; j++)
{
if(node[j][1]==crnt && node[j][1]!=-1 && node[j][2]!=-1)
{
node[j][1]=-1;
crnt=node[j][2];
node[j][2]=-1;
path[j][2]=colour;
path[j][1]=2;
j=0;
brk++;
}
if(node[j][2]==crnt && node[j][1]!=-1 && node[j][2]!=-1)
{
node[j][2]=-1;
crnt=node[j][1];
node[j][1]=-1;
path[j][1]=colour;
path[j][2]=2;
j=0;
brk++;
}
if(brk==cnt1)
break;
}
int cst1=0,cst2=0;
for(i=1; i<=cnt1; i++)
{
for(j=1; j<=2; j++)
{
if(path[i][j]==1)
cst1+=cst[i][j];
if(path[i][j]==2)
cst2+=cst[i][j];
}
}
int x=min(cst1,cst2);
printf("Case %d: %d\n",q,x);
}
return 0;
}
|
0440c0807ef2c523d196c5574fa5841941f12e8e | 07983ad8feee84b052a66702354293c9c423c57d | /CWP47.cpp | f52682fc040bafcce3a514ed95f90a834f21a78a | [] | no_license | 0ashu0/CProgramming | b9ce616eb73e6b23128de52ab09ea778c8ca7b3e | a64fe47f02deeda4e30495f57991c50b91c2ca9e | refs/heads/master | 2021-01-10T19:28:39.658995 | 2015-06-19T14:12:47 | 2015-06-19T14:12:47 | 37,415,505 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 296 | cpp | CWP47.cpp | #include <iostream>
using namespace std;
int main() {
int n=10;
int a = 0;
int b = 1;
int ans = 0;
int total = 0;
for(int i=1;i<=10;i++)
{
ans = a + b;
total = total + ans;
a = b;
b = ans;
}
cout<<ans<<"\n";
cout<<total;
}
|
8570706d3c5ad64eaeb45b52a0cdfd8d9d80b37c | 313e37460514c75e24d775c3876c715a4c8e3168 | /src/virt/AudioSystem.cpp | e2ae01c050bb460b50cca51dfd75d62765d01d67 | [] | no_license | devin-dominguez/SND-Virt | 3a4df5a61bbc1788d5845b4a080eef7acf3a0bb2 | 4ebc012081257bf8a7e0f1ec92bda4ce34f0ce63 | refs/heads/master | 2020-12-25T19:03:29.147920 | 2015-05-19T01:55:01 | 2015-05-19T01:55:01 | 35,852,478 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 664 | cpp | AudioSystem.cpp | #include "AudioSystem.h"
ofxOscSender AudioSystem::oscOut;
vector<ofxOscMessage> AudioSystem::messages;
void AudioSystem::setup(string hostname, unsigned int port) {
oscOut.setup(hostname, port);
}
void AudioSystem::addMessage(unsigned int voiceNumber, string destination, string parameter, double value) {
string address = "/" + destination + "/" + "voice" + ofToString(voiceNumber) + "/" + parameter;
ofxOscMessage message;
message.setAddress(address);
message.addFloatArg(value);
messages.push_back(message);
}
void AudioSystem::update() {
for(unsigned int i = 0; i < messages.size(); i++) {
oscOut.sendMessage(messages[i]);
}
messages.clear();
} |
45463aaf4310f9538bb18d240dbb51ad0b808fb9 | 9267651f4a673770bd9389ba3fe34354e6a69137 | /Lab3/mipop.cpp | 773c55d05ee4cef7e794c0271ac447cb3612481b | [] | no_license | Xinrea/ParallelProgramming | aeb28a8c08041e0944501aa6813c814c95faf159 | e5a0a6b3f96360422e5fc32bbb8aeedd321f4352 | refs/heads/master | 2020-03-22T08:50:17.844682 | 2018-07-10T15:18:05 | 2018-07-10T15:18:05 | 139,794,773 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,544 | cpp | mipop.cpp | //Author: Xinrea
//Date: 2018/7/8
#include "mipop.h"
#include <omp.h>
#include <cstdio>
#include <cstring>
int *MIPerosion(int *img, int *se, int img_width, int img_height, int se_width, int se_height){
if(se_width%2 == 0|| se_height%2 == 0)return img; // SE is not standard
if(se_width > img_width|| se_height > img_height)return img; // Can't do anything
int total = (img_width-se_width)*(img_height-se_height); // total pixels needed to be processed
int *output = new int[img_width*img_height];
memcpy(output,img,img_height*img_width*sizeof(int));
omp_set_num_threads(4);
double begin = omp_get_wtime();
#pragma omp parallel for
for(int i = 0; i <= img_height-se_height; i++){
for(int k = 0; k <= img_width-se_width; k++){
int x = k+se_width/2;
int y = i+se_height/2;
int compares = se_width*se_height;
bool isMiss = false;
for(int i = 0; i < compares; i++){ // row: i%args->se_width, colomn: i/args->se_width
int row = i%se_width;
int colomn = i/se_width;
int px = x-se_width/2+colomn;
int py = y-se_height/2+row;
if(se[i]==1&&img[px+py*img_width]==0)isMiss = true;
}
if(isMiss){
output[x+y*img_width] = 0;
} else {
output[x+y*img_width] = img[x+y*img_width];
}
}
}
double end = omp_get_wtime();
printf("Total time: %f\n",end-begin);
return output;
} |
a7285e95319bdb1ecaf40462de77bf491556f98f | 429c7c9911d1d474085610a4a9623c116ab0b50e | /NeuArch/NaPNFill.h | ca66d379261a871c3f2610616737d69517b84a70 | [] | no_license | evlad/nnacs | 932f575056da33e8d8b8a3b3f98b60b9713a575f | fea3f054b695c97b08b2e2584f2b56bc45b17e0b | refs/heads/master | 2023-04-27T00:38:55.261142 | 2019-10-06T16:20:55 | 2019-10-06T16:20:55 | 13,727,160 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,037 | h | NaPNFill.h | //-*-C++-*-
/* NaPNFill.h */
/* $Id$ */
//---------------------------------------------------------------------------
#ifndef NaPNFillH
#define NaPNFillH
#include <NaPetri.h>
//---------------------------------------------------------------------------
// Applied Petri net node: fill some samples in input stream.
// Has one input and one output of the same dimension. Simply fills n first
// samples by given value just before network operation.
//---------------------------------------------------------------------------
class PNNA_API NaPNFill : public NaPetriNode
{
public:
// Create node for Petri network
NaPNFill (const char* szNodeName = "fill");
////////////////
// Connectors //
////////////////
// Input (mainstream)
NaPetriCnInput in;
// Output (mainstream)
NaPetriCnOutput out;
// Synchronize other nodes (-1 while filling and +1 another time)
NaPetriCnOutput sync;
///////////////////
// Quick linkage //
///////////////////
// Return mainstream output connector (the only output or NULL)
virtual NaPetriConnector* main_output_cn ();
///////////////////
// Node specific //
///////////////////
// Set number of data portions to fill (zeros by default)
void set_fill_number (unsigned n);
void set_fill_number (unsigned n, NaVector& vect);
///////////////////////
// Phases of network //
///////////////////////
// 2. Link connectors inside the node
virtual void relate_connectors ();
// 5. Verification to be sure all is OK (true)
virtual bool verify ();
// 7. Do one step of node activity and return true if succeeded
virtual bool activate ();
// 8. True action of the node (if activate returned true)
virtual void action ();
// 9. Finish data processing by the node (if activate returned true)
virtual void post_action ();
private:
// Number of samples to skip
unsigned nFill;
// Value to fill output with
NaVector vFill;
};
//---------------------------------------------------------------------------
#endif
|
dab3d49ce2cf7b2bf0181f442cad60739654d545 | 9007ab07c9f1e8928eeda34af7254481ff997195 | /sdl2/win32/misc/tty.cpp | 621a6e4f05428a2e1ffd5abab745394074a7d8e6 | [
"MIT"
] | permissive | libretro/libretro-meowPC98 | deed8e63602cee23eaa6a65b78e10b3f7d02daa6 | bee2e243b0c68f787d0d360c2d4c289e581620ef | refs/heads/master | 2023-06-17T08:28:08.583126 | 2023-05-28T12:17:16 | 2023-05-28T12:17:16 | 87,991,058 | 11 | 17 | MIT | 2023-05-28T12:17:17 | 2017-04-12T00:18:46 | C | SHIFT_JIS | C++ | false | false | 3,966 | cpp | tty.cpp | /**
* @file ttyl.cpp
* @brief シリアル通信クラスの動作の定義を行います
*/
#include "compiler.h"
#include "tty.h"
#include <algorithm>
#include <setupapi.h>
#include <tchar.h>
#pragma comment(lib, "setupapi.lib")
/**
* コンストラクタ
*/
CTty::CTty()
: m_hFile(INVALID_HANDLE_VALUE)
{
}
/**
* デストラクタ
*/
CTty::~CTty()
{
Close();
}
/**
* オープンする
* @param[in] lpDevName デバイス名
* @param[in] nSpeed ボーレート
* @param[in] lpcszParam パラメタ
* @retval true 成功
* @retval false 失敗
*/
bool CTty::Open(LPCTSTR lpDevName, UINT nSpeed, LPCTSTR lpcszParam)
{
Close();
if (!SetParam(lpcszParam, NULL))
{
return false;
}
HANDLE hFile = ::CreateFile(lpDevName, GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING, 0, NULL);
if (hFile == INVALID_HANDLE_VALUE)
{
return false;
}
DCB dcb;
::GetCommState(hFile, &dcb);
if (nSpeed != 0)
{
dcb.BaudRate = nSpeed;
}
SetParam(lpcszParam, &dcb);
dcb.fOutxCtsFlow = FALSE;
dcb.fRtsControl = RTS_CONTROL_ENABLE;
if (!::SetCommState(hFile, &dcb))
{
::CloseHandle(hFile);
return false;
}
m_hFile = hFile;
return true;
}
/**
* クローズする
*/
void CTty::Close()
{
if (m_hFile != INVALID_HANDLE_VALUE)
{
::CloseHandle(m_hFile);
m_hFile = INVALID_HANDLE_VALUE;
}
}
/**
* データ受信
* @param[in] lpcvData 送信データのポインタ
* @param[in] nDataSize 送信データのサイズ
* @return 送信バイト数
*/
ssize_t CTty::Read(LPVOID lpcvData, ssize_t nDataSize)
{
if (m_hFile == INVALID_HANDLE_VALUE)
{
return -1;
}
if ((lpcvData == NULL) || (nDataSize <= 0))
{
return 0;
}
DWORD dwErrors;
COMSTAT stat;
if (!::ClearCommError(m_hFile, &dwErrors, &stat))
{
return -1;
}
DWORD dwReadLength = (std::min)(stat.cbInQue, static_cast<DWORD>(nDataSize));
if (dwReadLength == 0)
{
return 0;
}
DWORD dwReadSize = 0;
if (!::ReadFile(m_hFile, lpcvData, dwReadLength, &dwReadSize, NULL))
{
return -1;
}
return static_cast<ssize_t>(dwReadSize);
}
/**
* データ送信
* @param[in] lpcvData 送信データのポインタ
* @param[in] nDataSize 送信データのサイズ
* @return 送信バイト数
*/
ssize_t CTty::Write(LPCVOID lpcvData, ssize_t nDataSize)
{
if (m_hFile == INVALID_HANDLE_VALUE)
{
return -1;
}
if ((lpcvData == NULL) || (nDataSize <= 0))
{
return 0;
}
DWORD dwWrittenSize = 0;
if (!::WriteFile(m_hFile, lpcvData, nDataSize, &dwWrittenSize, NULL))
{
// DEBUGLOG(_T("Failed to write."));
return -1;
}
return static_cast<ssize_t>(dwWrittenSize);
}
/**
* パラメータ設定
* @param[in] lpcszParam パラメタ
* @param[in, out] dcb DCB 構造体のポインタ
* @retval true 成功
* @retval false 失敗
*/
bool CTty::SetParam(LPCTSTR lpcszParam, DCB* dcb)
{
BYTE cByteSize = 8;
BYTE cParity = NOPARITY;
BYTE cStopBits = ONESTOPBIT;
if (lpcszParam != NULL)
{
TCHAR c = lpcszParam[0];
if ((c < TEXT('4')) || (c > TEXT('8')))
{
return false;
}
cByteSize = static_cast<BYTE>(c - TEXT('0'));
c = lpcszParam[1];
switch (c & (~0x20))
{
case TEXT('N'): // for no parity
cParity = NOPARITY;
break;
case TEXT('E'): // for even parity
cParity = EVENPARITY;
break;
case TEXT('O'): // for odd parity
cParity = ODDPARITY;
break;
case TEXT('M'): // for mark parity
cParity = MARKPARITY;
break;
case TEXT('S'): // for for space parity
cParity = SPACEPARITY;
break;
default:
return false;
}
if (::lstrcmp(lpcszParam + 2, TEXT("1")) == 0)
{
cStopBits = ONESTOPBIT;
}
else if (::lstrcmp(lpcszParam + 2, TEXT("1.5")) == 0)
{
cStopBits = ONE5STOPBITS;
}
else if (::lstrcmp(lpcszParam + 2, TEXT("2")) == 0)
{
cStopBits = TWOSTOPBITS;
}
else
{
return false;
}
}
if (dcb != NULL)
{
dcb->ByteSize = cByteSize;
dcb->Parity = cParity;
dcb->StopBits = cStopBits;
}
return true;
}
|
71663e8f30de777e40051b8993e7f2258c1dbc42 | 3f8d9837b86fc6ad2b4787062c2e80ac977a6af2 | /QSharedPointerQml/src/MyModel.cpp | c330170d9f3122a0c68d6eb66124669f3317e779 | [] | no_license | FreakyTeddy/QSharedPointer-QObject | a698eb8027d73488f4cf4ae65ea41f7b78babd20 | 6bb4064e1eae0522d7d83365914a82938a4a8e18 | refs/heads/master | 2018-12-31T20:32:02.093229 | 2014-03-12T14:11:15 | 2014-03-12T14:11:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 105 | cpp | MyModel.cpp | /*
* MyModel.cpp
*
* Created on: 12/03/2014
* Author: vidueirof
*/
#include "MyModel.h"
|
bf9d96446e363bbf992736991c37e90ced9499db | d88032504eb8f502102f40e4e3e0ac17fc50d2c3 | /DMPG/DMPG17G2.cpp | afa44319d4fa8673b9cb2aa066b16997746957b3 | [] | no_license | jessicazhang236/Competitive | 8f19d903e72927679bc9821f5794052a69b1abc2 | f54e177e9eaf7053f1864b5f209827ffaf898cfb | refs/heads/master | 2021-07-06T09:38:37.440076 | 2020-08-12T04:58:56 | 2020-08-12T04:58:56 | 150,030,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,710 | cpp | DMPG17G2.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN=1e5+4;
int N, Q;
ll num[MAXN];
char cmd;
struct node{
int l, r;
ll pre, suf, sum, tot;
node(){l=r=0;pre=suf=sum=tot=0;}
node(int a, int b, ll c, ll d, ll e, ll f){l=a; r=b; pre=c; suf=d; sum=e; tot=f;}
}st[MAXN*3];
node best(node l, node r) {
node m=node(l.l, r.r, max(l.pre, l.tot+r.pre), max(r.suf, r.tot+l.suf), max(max(l.sum, r.sum), l.suf+r.pre), l.tot+r.tot);
m.sum=max(max(m.pre, m.suf), max(m.sum, m.tot));
return m;
}
void push_up(int i) {
st[i]=best(st[i<<1], st[i<<1|1]);
}
void build (int i, int l, int r) {
if (l==r) {
st[i]={l, r, num[l], num[r], num[l], num[r]};
return;
}
int m=l+r>>1;
build(i<<1, l, m);
build(i<<1|1, m+1, r);
push_up(i);
}
void update (int i, int u, ll val) {
if (st[i].l==st[i].r) {
st[i].tot=val;
st[i].sum=val;
st[i].pre=val;
st[i].suf=val;
return;
}
int m=st[i].l+st[i].r>>1;
if (u<=m) update(i<<1, u, val);
else update(i<<1|1, u, val);
push_up(i);
}
node query(int i, int l, int r) {
if (l==st[i].l&&r==st[i].r) return st[i];
int m=st[i].l+st[i].r>>1;
if (r<=m) return query(i<<1, l, r);
else if (l>m) return query(i<<1|1, l, r);
else return best(query(i<<1, l, m), query(i<<1|1, m+1, r));
}
int main() {
scanf("%d%d", &N, &Q);
for (int n=1; n<=N; n++) scanf("%lld", &num[n]);
build(1, 1, N);
for(int q=0, x, y; q<Q; q++) {
scanf(" %c%d%d", &cmd, &x, &y);
if(cmd=='S') update(1, x, y);
else printf("%lld\n", query(1, x, y).sum);
}
}
|
67bef568ac9ff5c911438b4e6aed36558379b669 | c507b259841a43910e94c20e58073eaa8937288b | /deform_control/external_libs/osgBullet-2.0/osgbDynamics/RigidBody.h | c5ba805ca69be11f509fd0d3e1b93acfef630a21 | [
"BSD-2-Clause"
] | permissive | UM-ARM-Lab/mab_ms | 5024c4d696cb35bc69fce71e85e1be1da66a30b5 | f199f05b88060182cfbb47706bd1ff3479032c43 | refs/heads/master | 2020-03-07T11:18:25.199893 | 2018-03-30T23:47:39 | 2018-03-30T23:47:39 | 127,452,258 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,490 | h | RigidBody.h | /*************** <auto-copyright.pl BEGIN do not edit this line> **************
*
* osgBullet is (C) Copyright 2009-2011 by Kenneth Mark Bryden
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*************** <auto-copyright.pl END do not edit this line> ***************/
#ifndef __OSGBDYNAMICS_RIGID_BODY_H__
#define __OSGBDYNAMICS_RIGID_BODY_H__ 1
#include <osgbDynamics/Export.h>
#include <osgbDynamics/CreationRecord.h>
#include <btBulletDynamicsCommon.h>
namespace osgbDynamics
{
/** \defgroup rigidbody Rigid Body Creation
\brief Convenience routines for creating Bullet rigid bodies from scene graphs.
These functions use the CreationRecord struct to create collision shapes,
rigid bodies, and motion state objects. The application is responsible for
setting the CreationRecord fields as needed. The fields are used as follows:
<ul>
<li> \c _sceneGraph Geometric source data for collision shape and rigid body creation.
<ul>
<li>Passed to osgbCollision::btCompoundShapeFromOSGGeodes() to create a collision shape.</li>
<li>If \c _comSet is false, the \c _sceneGraph bounding sphere center is used as the center of mass.</li>
<li>If \c _sceneGraph is a Transform node, it is set as the managed Transform node in MotionState (MotionState::setTransform()).</li>
</ul>
</li>
<li> \c _com When \c _comSet is true, \c _com is the center of mass. Otherwise, the bounding volume
center is used as the center of mass. (See CreationRecord::setCenterOfMass().)
<ul>
<li>The negated center of mass multiplied by the \c _scale vector is used as a transform for geometric data during collision shape creation.
<li>The center of mass is passed to the created MotionState object (MotionState::setCenterOfMass()).
</ul>
</li>
<li> \c _scale \em xyz scale vector. (osgBullet supports non-uniform scaling.)
<ul>
<li>The negated center of mass multiplied by the \c _scale vector is used as a transform for geometric data during collision shape creation.
<li>\c _scale is passed to the created MotionState object (MotionState::setScale()).
</ul>
</li>
<li> \c _parentTransform Used to specify an initial position. It is set as the MotionState parent transform (MotionState::setParentTransform()).
</li>
<li> \c _shapeType Passed to osgbCollision::btCompoundShapeFromOSGGeodes().
</li>
<li> \c _mass
<ul>
<li>Passed to btCollisionShape::calculateLocalInertia().
<li>Set in the created rigid body via btRigidBody::btRigidBodyConstructionInfo.
</ul>
</li>
<li> \c _restitution Set in the created rigid body via btRigidBody::btRigidBodyConstructionInfo::m_restitution.
</li>
<li> \c _friction Set in the created rigid body via btRigidBody::btRigidBodyConstructionInfo::m_friction.
</li>
<li> \c _axis Passed to osgbCollision::btCompoundShapeFromOSGGeodes().
Ultimately, it is referenced only if \c _shapeType is \c CYLINDER_SHAPE_PROXYTYPE.
</li>
<li> \c _reductionLevel Passed to osgbCollision::btCompoundShapeFromOSGGeodes().
If \c _shapeType is \c TRIANGLE_MESH_SHAPE_PROXYTYPE or CONVEX_TRIANGLEMESH_SHAPE_PROXYTYPE,
this value is used to configure osgWorks geometry reduction utilities to reduce triangle
count prior to creating the collision shape.
</li>
</ul>
Note that these are merely convenience routines, and your application can interface
directly with Bullet to create collision shapes and rigid bodies. However, you should
strongly consider using these convenience routines for the following reasons:
\li The routines are based on the CreationRecord class, which supports the dot OSG
file format. This allows your application to save and restore creation paramters.
\li These routines support non-origin center of mass.
\li These routines support scaled collision shapes.
\li These routines support initial transformations (for example, from the
accumulated OSG local-to-world matrix in the subgraph parent's NodePath).
\li These routines automatically create a MotionState object to keep the OSG visual
representation in sync with the Bullet physics representation.
<b>Requirements</b>
\li The root node of the subgraph (CreationRecord::_sceneGraph) must be either an
osg::MatrixTransform or an osgwTools::AbsoluteModelTransform (from the osgWorks project).
Other osg::Transform-derived nodes are not supported.
<b>Functionality Removed in v2.0</b>
\li The <em>overall</em> feature created a single collision shape around the entire
subgraph. You can still obtain this same functionality by calling the
\link collisionshapes collision shape functions \endlink directly, then
passing the created collision shape to createRigidBody().
\li The <em>named node</em> feature searched the subgraph for the named node, then
used that node as the basis for creating the collision shape. The application is
now responsible for doing this work. The FindNamedNode visitor in osgWorks can be
used to find nodes with a specific name.
*/
/*@{*/
/** \brief Creates a compound collision shape and rigid body from the CreationRecord data.
Uses the osgbCollision::ComputeShapeVisitor to create a btCompoundShape from CreationRecord::_sceneGraph.
Currently, a shape per Geode is created. CreationRecord::_shapeType specifies the shape type created per Geode.
If CreationRecord::_shapeType is CYLINDER_SHAPE_PROXYTYPE, CreationRecord::_axis specifies the cylinder major axis.
*/
OSGBDYNAMICS_EXPORT btRigidBody* createRigidBody( osgbDynamics::CreationRecord* cr );
/** \overload
<p>
Use this function to create a rigid body if you have already created the collision shape.
This is useful for sharing collision shapes.
</p>
*/
OSGBDYNAMICS_EXPORT btRigidBody* createRigidBody( osgbDynamics::CreationRecord* cr, btCollisionShape* shape );
/**@}*/
// osgbDynamics
}
// __OSGBDYNAMICS_RIGID_BODY_H__
#endif
|
21813c4d27c581c19844054218b97eb542fb4b78 | 92ef3ab9f5aa4f8dc7dce5b54aa2ecfe9bb2b79a | /ACM/LG/LG-1003-TLE.cpp | 1c6f5cffcc8fd539ee1bc66d25102fbb58ab2352 | [] | no_license | Fyy10/ENIAC | 4c845c04d571a888ddd6630fd196a5baab1e3139 | ce034918cb575ec6bb71c07901b66f6f0f8cda7f | refs/heads/master | 2020-03-25T09:53:14.517682 | 2019-08-19T03:24:04 | 2019-08-19T03:24:04 | 143,677,951 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 385 | cpp | LG-1003-TLE.cpp | #include<stdio.h>
#include<string.h>
using namespace std;
int an[1000][1000];
int main()
{
int n,a,b,g,k,x,y,i,j,l;
memset(an,0,sizeof(an));
scanf("%d",&n);
for(l=1;l<=n;++l)
{
scanf("%d %d %d %d",&a,&b,&g,&k);
for(i=a;i<=g;++i)
for(j=b;j<=k;++j)
an[i][j]=l;
}
scanf("%d %d",&x,&y);
if(an[x][y]==0)
printf("%d\n",-1);
else
printf("%d\n",an[x][y]);
return 0;
}
|
1a043ede6057b543cf77bb196f194eec4b0632b4 | 9e17c2758137516079701aaa908a818e8c7e92e7 | /LinkedList/deleteLLrecursive.cpp | 8f68149073230da15e3448a3b6b5276030b665ad | [] | no_license | amitozs999/practice-cpp | c574170bd8680680f7f03586a08c1f8917982477 | 1e0e85348bfc56253653ae9ecad8b326c289059a | refs/heads/master | 2022-12-20T08:29:02.439106 | 2020-09-23T20:40:35 | 2020-09-23T20:40:35 | 297,013,730 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,767 | cpp | deleteLLrecursive.cpp | #include<bits/stdc++.h>
using namespace std;
struct node{
int data;
node *next;
};
class LinkedList{
node *head;
node *tail;
public :
LinkedList(){
head=NULL;
tail=NULL;
}
void insert(int x){
node *newnode=new node;
newnode->data=x;
newnode->next=NULL;
if(head==NULL){
head=newnode;
}else{
node *temp=head;
while(temp->next!=NULL){
temp=temp->next;
}
temp->next=newnode;
}
}
void insertfront(int x){
node *newnode=new node;
newnode->data=x;
newnode->next=NULL;
if(head==NULL){
head=newnode;
}else{
newnode->next=head;
head=newnode;
}
}
void insertpos(int pos,int x){
node *newnode=new node;
newnode->data=x;
newnode->next=NULL;
if(head==NULL){
head=newnode;
}else{
node *temp=head;
for(int i=1;i<pos-1;i++){
temp=temp->next;
}
newnode->next=temp->next;
temp->next=newnode;
}
}
void deleteatpos(int pos){
node *temp=head;
for(int i=1;i<pos-1;i++){
temp=temp->next;
}
node *tobedel=temp->next;
temp->next=tobedel->next;
free(tobedel);
}
void deletewholell(){
node *curr=head;
node *after;
while(curr!=NULL){
after=curr->next;
free(curr);
curr=after;
}
head=NULL;
cout<<"deleted";
}
void deletewholellrecursively(node *temp){
if(temp==NULL){
head=NULL;
return;
}else{
deletewholellrecursively(temp->next);
free(temp);
}
}
node *gethead(){
return head;
}
void display(node *head){
if(head==NULL){
cout<<"NULL";
}else{
cout<<head->data<<" ";
display(head->next);
}
}
};
int main(){
LinkedList ls;
ls.insert(2);
ls.insert(6);
ls.insert(9);
ls.insertfront(8); //8 2 6 9
ls.insertpos(3,5); // 8 2 5 6 9
ls.deleteatpos(4); //8 2 5 9
ls.display(ls.gethead());
ls.deletewholellrecursively(ls.gethead());
ls.display(ls.gethead());
cout<<"delete";
} |
6f4fc5e11feda3629fdc6768fb4edb4dc04fabef | 07f462f118f0a41b4ac6990563800b573ed53535 | /jjba/jotaro.h | 10bef60879f16cebd6a4be41ea847747ff873bd9 | [] | no_license | Alecajuice/jjba | 145828aec173c2567ba0f1a67c3014b7e8b3818a | 9009f343052f195ccb76fb0e1a22dd5976c1db3e | refs/heads/master | 2020-04-06T11:55:15.663385 | 2019-06-06T03:29:00 | 2019-06-06T03:29:00 | 157,436,073 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | h | jotaro.h | //
// Created by aleca on 11/17/2018.
//
#ifndef JJBA_JOTARO_H
#define JJBA_JOTARO_H
#include "standUser.h"
class Jotaro : public StandUser {
public:
//Constructor
Jotaro();
//Member functions
void loadMedia(SDL_Renderer* renderer) override;
void render(SDL_Renderer* renderer) override;
const int getMoveSpeed() const override;
const int getStandMoveSpeed() const override;
const int getStandRange() const override;
};
#endif //JJBA_JOTARO_H
|
2af2e0a3d71ad2e657edcd9dd79a82b034d18442 | 96f48e8df6af1e063e417d294684cedf5e14ed93 | /WinApiFramework/event.h | 525f8922f5780fa2c63c2cf8d8b186afdf96ee9e | [
"Unlicense"
] | permissive | Greketrotny/WinApiFramework | 6000527f2cbff757a3d6fc3c44ec856f1959db49 | 7d5d24f621d2b3bd220feb4e5517fb322538dc0c | refs/heads/master | 2023-04-18T16:06:16.113949 | 2021-05-15T13:40:59 | 2021-05-15T13:40:59 | 367,447,762 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,871 | h | event.h | #ifndef EVENT_H
#define EVENT_H
#include <typeinfo>
#include <unordered_map>
#include <vector>
namespace WinapiFramework
{
// ~~~~~~~~ [STRUCT] BaseAction ~~~~~~~~
struct BaseAction
{
public:
BaseAction() = default;
virtual ~BaseAction() = default;
public:
virtual void Invoke() = 0;
};
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~~~~~~ [STRUCT] BaseEvent ~~~~~~~~
struct BaseEvent
{
public:
BaseEvent() = default;
virtual ~BaseEvent() = default;
public:
virtual void BeforeHandling() {}
virtual void AfterHandling() {}
};
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~~~~~~ event functions ~~~~~~~~
template <typename E, class C> using event_member_function_t = void(C::*)(E&);
template <typename E> using event_function_t = void(*)(E&);
// ~~~~~~~~ event functor ~~~~~~~~
template <typename E> struct BaseEventFunctor
{
BaseEventFunctor() {}
virtual ~BaseEventFunctor() {}
virtual void Call(E& event) const = 0;
virtual const event_function_t<E> GetFunction() const = 0;
};
template <typename E, class C> struct EventFunctor : public BaseEventFunctor<E>
{
private:
event_member_function_t<E, C> m_function;
C* m_pObject;
public:
EventFunctor(event_member_function_t<E, C> function, C* object)
: m_function(function)
, m_pObject(object)
{}
~EventFunctor() {}
public:
void Call(E& event) const override
{
(m_pObject->*m_function)(event);
}
const event_function_t<E> GetFunction() const override
{
const event_member_function_t<E, C>* fn_ptr = &m_function;
return *(reinterpret_cast<const event_function_t<E>*>(fn_ptr));
}
};
template <typename E> struct EventFunctor<E, void> : public BaseEventFunctor<E>
{
private:
event_function_t<E> m_function;
public:
EventFunctor(event_function_t<E> function)
: m_function(function)
{}
~EventFunctor() {}
public:
void Call(E& event) const override
{
m_function(event);
}
const event_function_t<E> GetFunction() const override
{
return m_function;
}
};
// ~~~~~~~~ event functor list ~~~~~~~~
struct BaseFunctorList
{
BaseFunctorList() = default;
virtual ~BaseFunctorList() {}
};
template <typename E> struct FunctorList : public BaseFunctorList
{
private:
std::vector<const BaseEventFunctor<E>*> m_ehl;
public:
FunctorList() {}
~FunctorList()
{
for (auto& eh : m_ehl)
delete eh;
}
public:
void AddEventHandler(const BaseEventFunctor<E>* eh)
{
m_ehl.push_back(eh);
}
bool RemoveEventHandler(const BaseEventFunctor<E>* eh)
{
for (size_t i = 0; i < m_ehl.size(); i++)
{
if ((m_ehl[i]->GetFunction()) == (eh->GetFunction()))
{
delete m_ehl[i];
m_ehl.erase(m_ehl.begin() + i);
return true;
}
}
return false;
}
void CallHandlers(E& e) const
{
for (auto& h : m_ehl)
{
h->Call(e);
}
}
};
// ~~~~~~~~ [CLASS] EventHandler ~~~~~~~~
class EventHandler
{
private:
using TypeInfoRef = std::reference_wrapper<const std::type_info>;
struct Hasher
{
std::size_t operator()(TypeInfoRef code) const
{
return code.get().hash_code();
}
};
struct EqualTo
{
bool operator()(TypeInfoRef lhs, TypeInfoRef rhs) const
{
return lhs.get() == rhs.get();
}
};
std::unordered_map<TypeInfoRef, BaseFunctorList*, Hasher, EqualTo> m_functor_lists;
protected:
EventHandler() {}
~EventHandler()
{
for (auto& h : m_functor_lists)
{
delete h.second;
}
m_functor_lists.clear();
}
protected:
template <typename E, typename... Params> void RaiseEventByHandler(Params... params)
{
E e(params...);
InvokeEvent<E>(e);
}
template <typename E> void InvokeEvent(E& event)
{
event.BeforeHandling();
const FunctorList<E>* flist = GetFunctorList<E>();
if (flist) flist->CallHandlers(event);
event.AfterHandling();
}
public:
template <typename E, typename C> void BindEventFunc(void(C::*function)(E&), C* object)
{
AddEventFunctorToList(new EventFunctor<E, C>(function, object));
}
template <typename E> void BindEventFunc(void(*function)(E&))
{
AddEventFunctorToList(new EventFunctor<E, void>(function));
}
template <typename E, typename C> bool UnbindEventFunc(void(C::*function)(E&))
{
BaseEventFunctor<E>* eh = new EventFunctor<E, C>(function, nullptr);
bool result = RemoveEventFunctorFromList<E>(eh);
delete eh;
return result;
}
template <typename E> bool UnbindEventFunc(void(*function)(E&))
{
BaseEventFunctor<E>* eh = new EventFunctor<E, void>(function);
bool result = RemoveEventFunctorFromList<E>(eh);
delete eh;
return result;
}
private:
// Find list of event functors for specified event type
template <typename E> FunctorList<E>* GetFunctorList()
{
auto search = m_functor_lists.find(typeid(E));
if (search == m_functor_lists.end())
return nullptr;
return dynamic_cast<FunctorList<E>*>(search->second);
}
template <typename E> void AddEventFunctorToList(BaseEventFunctor<E>* eh)
{
FunctorList<E>* hlist = GetFunctorList<E>();
if (hlist == nullptr)
{// -> HandlerManager does not contain handler list for specified event
FunctorList<E>* hl = new FunctorList<E>();
hl->AddEventHandler(eh);
m_functor_lists.insert({ typeid(E), reinterpret_cast<BaseFunctorList*>(hl) });
}
else
{// -> HandlerManager has at least one event handler for specified event
hlist->AddEventHandler(eh);
}
}
template <typename E> bool RemoveEventFunctorFromList(const BaseEventFunctor<E>* eh)
{
FunctorList<E>* hlist = GetFunctorList<E>();
if (hlist == nullptr)
{// -> there is no handler list for specified event
return false;
}
else
{// -> try to find and remove event handler
return hlist->RemoveEventHandler(eh);
}
}
};
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}
#endif |
d7861e9abceea93a18631b1ce55e487003d4a1dd | 4e64e05878cc1f6b4275728770aaf51fbc694163 | /Project1/board.h | 7595efb09450bfd7fe97ccd11cf5adad69005390 | [] | no_license | CoDeBloo-D/Block_breaker | a6364e595793863d8c5005210015275d67bfd2cb | 4ed8e30b6432897cf2773f23f8087201dbd3b58e | refs/heads/master | 2022-02-04T12:55:05.217921 | 2019-05-10T08:17:08 | 2019-05-10T08:17:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 301 | h | board.h | #pragma once
#include <utility>
#include "common.h"
extern class Ball;
extern class Block;
class Board {
private:
std::pair<int, int> pos;
int len;
char *p_len;
public:
Board();
~Board();
void board_Move();
friend bool ball_Move(Ball * ball, Board * board, Block * block);
}; |
cd947a44e1a5ab31564504dd93c5a78a3b3b348e | 1f515c64253d340a22436628623d68fd13ec3513 | /blingfirecompile.library/src/FATestMorph_w2t.cpp | 42c2be8a2bcf75f59fa46b3de42129a9d33d177a | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | microsoft/BlingFire | 92467240018cdbed9a3288b7f8d33f04bc9b28c5 | 5dad17aa31dd87c9992d9570ab0dd20e84246fa6 | refs/heads/master | 2023-08-20T23:43:13.448077 | 2023-06-27T13:00:11 | 2023-06-27T13:00:11 | 175,482,543 | 574 | 81 | MIT | 2023-06-27T13:00:13 | 2019-03-13T19:04:41 | C++ | UTF-8 | C++ | false | false | 4,635 | cpp | FATestMorph_w2t.cpp | /**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
#include "blingfire-compile_src_pch.h"
#include "FAConfig.h"
#include "FATestMorph_w2t.h"
#include "FAUtils.h"
#include "FAPrintUtils.h"
#include "FAUtf32Utils.h"
#include "FAStringTokenizer.h"
#include "FATagSet.h"
#include "FAFsmConst.h"
#include <string>
namespace BlingFire
{
FATestMorph_w2t::FATestMorph_w2t (FAAllocatorA * pAlloc) :
FATestMorph (pAlloc),
m_Func (FAFsmConst::FUNC_W2T),
m_pTagSet (NULL)
{}
void FATestMorph_w2t::SetTagSet (const FATagSet * pTagSet)
{
m_pTagSet = pTagSet;
}
void FATestMorph_w2t::SetFunc (const int Func)
{
DebugLogAssert (FAFsmConst::FUNC_W2T == Func || FAFsmConst::FUNC_B2T == Func);
m_Func = Func;
}
void FATestMorph_w2t::Test (const char * pLineStr, const int LineLen)
{
DebugLogAssert (m_pPRM && m_pTagSet);
DebugLogAssert (0 < LineLen && pLineStr);
std::ostream * pDbgOs = GetOutStream ();
const char * pTmpStr;
int TmpStrLen;
FAStringTokenizer tokenizer;
tokenizer.SetString (pLineStr, LineLen);
tokenizer.SetSpaces ("\t");
// read the first token
if (!tokenizer.GetNextStr (&pTmpStr, &TmpStrLen)) {
if (pDbgOs) {
const std::string Line (pLineStr, LineLen);
(*pDbgOs) << "W2T ERROR: BAD INPUT\t" << Line << '\n';
}
return;
}
// convert UTF-8 input word into array of integers (UTF-32)
const int ChainSize = \
FAStrUtf8ToArray (
pTmpStr,
TmpStrLen,
m_ChainBuffer,
MaxChainSize - 1
);
if (0 > ChainSize || MaxChainSize - 1 < ChainSize) {
if (pDbgOs) {
const std::string Line (pLineStr, LineLen);
(*pDbgOs) << "W2T ERROR: BAD INPUT\t" << Line << '\n';
}
return;
}
// make input in the lower case, if needed
if (m_IgnoreCase) {
FAUtf32StrLower (m_ChainBuffer, ChainSize);
}
int InTagCount = 0;
while (tokenizer.GetNextStr (&pTmpStr, &TmpStrLen)) {
const int Tag = m_pTagSet->Str2Tag (pTmpStr, TmpStrLen);
if (-1 == Tag) {
if (pDbgOs) {
const std::string Line (pLineStr, LineLen);
(*pDbgOs) << "W2T ERROR: UNKNOWN TAG\t" << Line << '\n';
}
return;
}
m_OutChain2Buffer [InTagCount++] = Tag;
}
if (0 == InTagCount) {
if (pDbgOs) {
const std::string Line (pLineStr, LineLen);
(*pDbgOs) << "W2T ERROR: NO TAGS\t" << Line << '\n';
}
return;
}
// make them sorted and uniqued
InTagCount = \
FASortUniq (m_OutChain2Buffer, m_OutChain2Buffer + InTagCount);
// generate a set of tags with word-guesser
const int * pOutTags = NULL;
int OutTagCount;
if (FAFsmConst::FUNC_B2T != m_Func) {
OutTagCount = m_pPRM->ProcessW2T (m_ChainBuffer, ChainSize, &pOutTags);
} else {
OutTagCount = m_pPRM->ProcessB2T (m_ChainBuffer, ChainSize, &pOutTags);
}
DebugLogAssert (OutTagCount <= MaxChainSize);
if (0 < OutTagCount) {
for (int i = 0; i < OutTagCount; ++i) {
DebugLogAssert (pOutTags);
m_OutChainBuffer [i] = pOutTags [i];
}
OutTagCount = \
FASortUniq (m_OutChainBuffer, m_OutChainBuffer + OutTagCount);
} else if (-1 == OutTagCount) {
OutTagCount = 0;
}
// calculate the difference between input and result
const int ErrType = \
UpdateCounts (
m_OutChainBuffer,
OutTagCount,
m_OutChain2Buffer,
InTagCount
);
if (pDbgOs && ERR_NO_ERROR != ErrType) {
(*pDbgOs) << "W2T ERROR: ";
if (ERR_BIGGER == ErrType) {
(*pDbgOs) << "BIGGER\t";
} else if (ERR_SMALLER == ErrType) {
(*pDbgOs) << "SMALLER\t";
} else if (ERR_DIFFERENT == ErrType) {
(*pDbgOs) << "DIFFERENT\t";
}
// print the word
FAPrintWordList (*pDbgOs, m_ChainBuffer, ChainSize);
(*pDbgOs) << '\t';
// print the output tags
FAPrintTagList (*pDbgOs, m_pTagSet, m_OutChainBuffer, OutTagCount);
(*pDbgOs) << "\tvs\t";
// print the expected tags
FAPrintTagList (*pDbgOs, m_pTagSet, m_OutChain2Buffer, InTagCount);
(*pDbgOs) << '\n';
}
}
}
|
e095477b753632167f9dcf12f0155368f3a0bcff | c614b694607dc5c3271c29aff2f9f8b8e200e68e | /include/trans-dsl/sched/concepts/SchedActionConcept.h | efd883fe64567b7f744b031588bb99643312704d | [
"MIT"
] | permissive | gettogetto/trans-dsl-2 | f3bd6e91ddf5578bd9af0084c77537deefa1453a | 49f235166cea5f511c2c41c56abe554e60c60e86 | refs/heads/master | 2023-06-28T19:23:47.773849 | 2021-07-27T08:07:59 | 2021-07-27T08:07:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 496 | h | SchedActionConcept.h | //
// Created by godsme on 6/19/20.
//
#ifndef TRANS_DSL_2_SCHEDACTIONCONCEPT_H
#define TRANS_DSL_2_SCHEDACTIONCONCEPT_H
#include <trans-dsl/tsl_config.h>
#include <trans-dsl/sched/domain/SchedAction.h>
#include <type_traits>
#include <trans-dsl/sched/concepts/ConceptHelper.h>
#if __has_include(<concepts>)
#include <concepts>
#endif
TSL_NS_BEGIN
template<typename T>
DEF_CONCEPT(SchedActionConcept, std::is_base_of_v<SchedAction, T>);
TSL_NS_END
#endif //TRANS_DSL_2_SCHEDACTIONCONCEPT_H
|
b75ae2c92e03e97ddca0b885effe83ce42df367e | f9bdf0531491615cb788a8b5e91ce04d99138b31 | /Final/EmptyRoom.hpp | 31366f0fa9edb26defc331c0f4ddcafe845b8ac4 | [] | no_license | Hazama/CS162 | 0f276b3c502daa8f10f9141d47f8e5750caa5131 | 555015125ef7fb61b7435314ddffcfc9a8e6892f | refs/heads/master | 2020-04-18T18:44:02.923170 | 2016-08-30T13:56:20 | 2016-08-30T13:56:20 | 66,945,161 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 451 | hpp | EmptyRoom.hpp | /*********************************************************************
** Author: Jeffery Goss
** Date: 03/10/16
** Description: EmptyRoom.hpp file
*********************************************************************/
#ifndef EMPTY_HPP
#define EMPTY_HPP
#include "Room.hpp"
#include <cstdlib>
class EmptyRoom :
public Room
{
public:
EmptyRoom();
~EmptyRoom();
void sceneText();
direction scene();
void printArt();
};
#endif |
af42c313a94282ef7e33ea2a14ff44c870e0a674 | 9eb1e519380666c166f2f2007a1eecfa3e61fe29 | /CompuScope_Linux_v5.04.36/gati-linux-driver/Boards/CsSpDev/Common/CsSpDevice.h | 397e87deb54a27f51d9d7a2c098b6ae659158d74 | [] | no_license | theFREElaker/CompuScopeDriver | fd5cfaaf98d01a40f575806cadc8c00b627b625d | ce5f2a5bb0c69e1bd0ad061fb629b8a17ed7ba9b | refs/heads/master | 2023-07-25T19:15:00.576880 | 2021-08-22T22:13:27 | 2021-08-22T22:13:27 | 398,911,935 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,507 | h | CsSpDevice.h | #pragma once
#include "CsTypes.h"
#include "CsStruct.h"
#include "CsErrors.h"
#include "CsThreadLock.h"
#include "CsSpDevFuncTypes.h"
#include "CsiHeader.h"
#include <map>
using namespace std;
#define SPD_INIT_DELAY 4000//2000 //2 sec
#define USB_PARAMS_KEY _T("SYSTEM\\CurrentControlSet\\Services\\CsUsb\\Configuration")
#define CS_OPTIONS_USB_FIRMWARE_MASK 0x1
#define CS_OPTIONS_USB_SX50T_MASK 0x2
#define CS_OPTIONS_USB_FX70T_MASK 0x4
#define CS_USB_AC_DC_INPUT 0x1
#define CS_USB_ALG_IMAGE_SIZE 7038721 // FPGA 1
#define CS_USB_ALG_FX70T_IMAGE_SIZE 9290829 // FPGA 1 !! THIS IS A DUMMY SIZE, FOR NOW
#define CS_USB_COMM_LX30T_IMAGE_SIZE 3294859 // FPGA 2
#define CS_USB_COMM_SX50T_IMAGE_SIZE 7038721 // FPGA 2
#define CS_USB_FIRMWARE_IMAGE_SIZE 5722
#define CS_USB_DEFAULT_TRIG_SENSE 48
#define CSISEPARATOR_LENGTH 16
const uInt8 CsiSeparator[] = "-- SEPARATOR --|"; // 16 character long + NULL character
#pragma pack (1)
typedef struct _SpDevDef
{
int nAdqType;
char strName[8];
char strCsName[16];
LONGLONG llBaseFrequecy;
long lMaxDiv;
long lResolution;
long lMemSize; //in MS
unsigned short usBits;
unsigned short usChanNumber;
long lExtTrigAddrAdj;
}SpDevDef;
typedef struct _SpDevSr
{
int64 i64Sr;
int nDiv;
unsigned int uSkip;
}SpDevSr;
#pragma pack ()
class CsEventLog
{
public:
CsEventLog(void);
~CsEventLog(void);
BOOL Report(DWORD dwErrorId, LPTSTR lpMsgIn);
private:
HANDLE m_hEventLog;
DWORD m_dwError;
};
class CsSpdevException
{
public:
CsSpdevException(void) {}
CsSpdevException(TCHAR* cause) {_tcsncpy_s(_cause, sizeof(_cause), cause, _countof(_cause) - 1);}
CsSpdevException(TCHAR* pre, TCHAR* post ) {::_stprintf_s(_cause, _countof(_cause),"%s%s", pre, post ); }
~CsSpdevException(void) {}
TCHAR _cause[250];
};
class CsSpDeviceManager;
#define SDP_DEV_SIG_SIZE 16
#define SDP_DEV_SIG_ADDR 332
#define SDP_DEV_DC_SIG "004"
#define SDP_DEV_DC_AC_SIG "005"
#define SDP_DEV_DC_SIG_SIZE (_countof(SDP_DEV_DC_SIG)-1)
#define SPD_INPUT_RANGE 2200 //2.2 Vp-p
#define SPD_DC_INPUT_RANGE 250 //2.2 Vp-p
#define SPD_EXT_TRIG_LEVEL 40
#define SPD_EXTTRIG_RANGE CS_GAIN_5_V //5 Vp-p
#define SPD_MIN_EXT_CLK 34000000 //34 MHz
#define SPD_LOW_EXT_CLK 240000000 //240 MHz
#define SPD_MIN_DEPTH 8 //samples
#define SPD_ITRA_RECORD 8 //Uint32
#define SPD_MAX_TRIG_DELAY (1<<31) //samples
#define SPD_ALINGMENT 128 //bytes
#define SPD_SKIP_SR 100000000 // 100 MHz
#define SPD_CHAN_AFE_MASK 0x5
class CsSpDevice
{
private:
CsSpDeviceManager* m_pManager;
SpDevDef m_Info;
int m_nNum;
int m_nType;
ADQInterface* m_pAdq;
int m_nRevFpga1;
int m_nRevFpga2;
unsigned int m_uBusAddr;
char m_strSerNum[17];
uInt32 m_u32MemSize;
uInt32 m_u32PcbRev;
bool m_bStarted;
int64 m_i64TickFrequency;
int m_nTimeStampMode;
bool m_bDisplayTrace;
bool m_bDisplayXferTrace;
int m_nTrigSense;
int64 m_i64TrigAddrAdj;
CSI_ENTRY m_BaseBoardCsiEntry; // the Alg fpga
CSI_ENTRY m_AddonCsiEntry; // the Comm fpga
CSI_ENTRY m_UsbFpgaEntry;
bool m_bSkipFwUpdate;
bool m_bForceFwUpdateComm;
bool m_bForceFwUpdateAlgo;
bool m_bFavourClockSkip;
bool m_bDcInput;
bool m_bDcAcInput;
bool m_bUsb;
bool m_bPxi;
uInt32 m_u32AFE; // AC / DC configuration for both channels
SpDevSr* m_pSrTable;
size_t m_szSrTableSize;
CSACQUISITIONCONFIG m_Acq;
CSCHANNELCONFIG m_aChan[2];
CSTRIGGERCONFIG m_Trig;
CSACQUISITIONCONFIG m_ReqAcq;
CSCHANNELCONFIG m_aReqChan[2];
CSTRIGGERCONFIG m_ReqTrig;
int32 ConfigureAcq( PCSACQUISITIONCONFIG pAcqCfg, bool bCoerce, bool bValidateOnly);
int32 ConfigureChan( PCSCHANNELCONFIG aChanCfg, bool bCoerce, bool bValidateOnly);
int32 ConfigureTrig( PCSTRIGGERCONFIG pTrigCfg, bool bCoerce, bool bValidateOnly);
int32 ValidateBufferForReadWrite(uInt32 u32ParamID, void* pvParamBuffer, bool bRead);
uInt16 ConvertToHw( uInt16 u16SwChannel );
int64 GetMaxSr(void){return m_pSrTable[0].i64Sr;}
void BuildSrTable(void);
int32 StartAcquisition(void);
int32 ForceTrigger(void);
int32 Abort(void);
int32 Reset(void);
int32 ResetTimeStamp(void);
int32 ResetDevice(void);
void ReadRegistryInfo(void);
public:
CsSpDevice(CsSpDeviceManager* pMngr, int nNum);
~CsSpDevice(void);
//// For CsDrvApi
int32 GetAcquisitionSystemInfo(PCSSYSTEMINFO pSysInfo);
int32 AcquisitionSystemInit(BOOL bResetDefaultSetting);
int32 AcquisitionSystemCleanup(void);
int32 GetAcquisitionSystemCaps(uInt32 u32CapsId, PCSSYSTEMCONFIG pSysCfg, void* pBuffer, uInt32* pu32BufferSize);
int32 GetBoardsInfo(PARRAY_BOARDINFO pABoardInfo);
int32 GetAcquisitionStatus(uInt32* pu32Status);
int32 GetParams(uInt32 u32ParamID, void* pParambuffer);
int32 SetParams(uInt32 u32ParamID, void* pParambuffer);
int32 ValidateParams(uInt32 u32ParamID, uInt32 u32Coerce, void* pParamBuffer);
int32 Do(uInt32 u32ActionID, void* pActionBuffer);
int32 TransferData(IN_PARAMS_TRANSFERDATA inParams, POUT_PARAMS_TRANSFERDATA pOutParams);
int32 TransferDataEx(PIN_PARAMS_TRANSFERDATA_EX pInParamsEx, POUT_PARAMS_TRANSFERDATA_EX pOutParamsEx);
int32 RegisterEventHandle(uInt32 , HANDLE* ){return CS_INVALID_EVENT_TYPE;}
int32 ReadAndValidateCsiFile(void);
int32 CompareFirmwareVersions(void);
TCHAR* GetSerialNumber() { return m_strSerNum; }
TCHAR* GetDeviceName() { return m_Info.strCsName; }
};
typedef map<DRVHANDLE, CsSpDevice*> USBDEVMAP;
//#define CSUSB_BASE_HANDLE 0x23450000
#define CSUSB_BASE_HANDLE 0x00234500 // changed so as not to interfere with remote system handles
class CsSpDeviceManager
{
private:
CsSpDeviceManager(void);
~CsSpDeviceManager(void);
static CsSpDeviceManager* m_pInstance;
static Critical_Section __key;
public:
static CsSpDeviceManager& GetInstance()
{
if(NULL == m_pInstance )
{
Lock_Guard<Critical_Section> __lock(__key);
if(NULL == m_pInstance )
{
m_pInstance = new CsSpDeviceManager();
}
}
return *m_pInstance;
}
static void RemoveInstance()
{
Lock_Guard<Critical_Section> __lock(__key);
delete m_pInstance;
m_pInstance = NULL;
}
int GetFailedNum(void){return m_nFailedNum;}
size_t GetDevNum(void){return m_mapDev.size();}
int GetApiRev(void){return m_nApiRev;}
int32 GetAcquisitionSystemCount(uInt16* pu16SystemFound);
int32 GetAcquisitionSystemHandles(PDRVHANDLE pDrvHdl, uInt32 Size);
int32 AutoFirmwareUpdate(void);
CsSpDevice* GetDevice(DRVHANDLE DrvHdl)
{
USBDEVMAP::iterator theMapIterator;
if ((theMapIterator = m_mapDev.find(DrvHdl)) != m_mapDev.end())
return ((*theMapIterator).second);
else
return NULL;
}
HANDLE GetCommEvent(){return m_hCommEventHandle;}
static const SpDevDef* GetDevTypeTable(size_t* pSize);
protected:
const static SpDevSr SrTable108_fcd[];
const static SpDevSr SrTable112_fcd[];
const static SpDevSr SrTable114_fcd[];
const static SpDevSr SrTable214_fcd[];
const static SpDevSr SrTable108_fcs[];
const static SpDevSr SrTable112_fcs[];
const static SpDevSr SrTable114_fcs[];
const static SpDevSr SrTable214_fcs[];
private:
const static SpDevDef DevType[];
bool m_bInitOK;
HANDLE m_hCommEventHandle;
USBDEVMAP m_mapDev;
void* m_pControl;
int m_nTypeCount;
int m_nFailedNum;
int m_nApiRev;
int ResolveProcAddresses(HMODULE _hDllMod);
int MakeDevicesAndControl(void);
void DeleteDevicesAndControl(void);
protected:
_AdqCreateControlUnit* m_pfCreateControl;
_AdqDeleteControlUnit* m_pfDeleteControl;
_AdqGetApiRevision* m_pfGetApiRevision;
_AdqFindDevices* m_pfFindDevices;
_AdqGetFailedDeviceCount* m_pfGetFailedDevCount;
_AdqGetADQInterface* m_pfGetAdqInterface;
void* GetControl(void){return m_pControl;}
friend class CsSpDevice;
}; |
0f831665f1023ff7925f231e43f74fe2968e42d4 | e0fc6f42436363606f978a4a63146ab3cdb9aa4b | /request.h | 860573b8d8d747f0103f20b30fa057b89cb639cc | [] | no_license | valehorv/Threads | 57d5a9453d1c4c8a5069be2cf91d1fa5e384981a | b95df7c0c31bedaeeb24c04bae5aff2a1468a65f | refs/heads/master | 2020-03-15T22:30:37.341559 | 2019-02-01T11:06:04 | 2019-02-01T11:06:04 | 132,375,095 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 414 | h | request.h | #ifndef REQUEST_H
#define REQUEST_H
#include <string>
#include"abstract_request.h"
using namespace std;
typedef void (*log_function)(string text);
class Request : public AbstractRequest
{
int value;
log_function out_func;
public:
void set_value(int value){this->value = value;}
void set_output(log_function func){out_func = func;}
void process();
void finish();
};
#endif // REQUEST_H
|
ff284678b288a052838e10b84c9d4c84b4e730ca | 4f75d4ea48d1f667e621515e9660fdd2dae14d5b | /src/core/Lot.cpp | 8db5d4bb0622b9114cef9577d36ec4e91a015c1f | [] | no_license | vitorgil/gescoice | c6e8b52b504c4fa65bde01db474a65b5a7164785 | 5b24995bad2b7c0ca3c8fdf9bcabf7863ae72330 | refs/heads/master | 2020-05-19T09:39:52.479321 | 2019-05-11T23:09:05 | 2019-05-11T23:09:05 | 184,953,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,787 | cpp | Lot.cpp | #include "Lot.h"
#include "Containers.h"
#include "Ingredients.h"
#include "IO.h"
#include <QJsonDocument>
#include <QJsonObject>
void Lot::addContainer(const QString& recipientName, const double quantity)
{
if (quantity > 0)
{
m_containers[recipientName] = quantity;
}
else
{
m_containers.remove(recipientName);
}
}
void Lot::removeContainer(const QString& name)
{
m_containers.remove(name);
}
void Lot::addIngredient(const QString& name, const double quantity)
{
m_ingredientQuantities[name] = quantity;
}
void Lot::removeIngredient(const QString& name)
{
m_ingredientQuantities.remove(name);
}
const QMap<QString, double>& Lot::getIngredients() const
{
return m_ingredientQuantities;
}
const QMap<QString, double>& Lot::getContainers() const
{
return m_containers;
}
const QMap<QString, double>& Lot::getLastPrices() const
{
return m_lastPrices;
}
void Lot::calculatePrices()
{
m_lastPrices.clear();
double totalPrice = 0.0;
for (auto it = m_ingredientQuantities.constBegin(); it != m_ingredientQuantities.constEnd(); ++it)
{
totalPrice += it.value() * Ingredients::getPrice(it.key());
}
double lotTotalVolume = 0.0;
for (auto it = m_containers.constBegin(); it != m_containers.constEnd(); ++it)
{
lotTotalVolume += it.value();
}
if (totalPrice <= 0.0 || lotTotalVolume <= 0.0)
{
return;
}
auto lotPricePerLiter = totalPrice / lotTotalVolume;
for (auto it = m_containers.constBegin(); it != m_containers.constEnd(); ++it)
{
const auto& container = Containers::get(it.key());
m_lastPrices[it.key()] = lotPricePerLiter * container->m_capacityLiters + container->m_price;
}
}
double Lot::totalCost() const
{
double totalCost = 0.0;
for (auto it = m_containers.constBegin(); it != m_containers.constEnd(); ++it)
{
totalCost += m_containers[it.key()] * m_lastPrices[it.key()];
}
return totalCost;
}
Lot* Lot::loadFromFile(const QString& fileName)
{
auto jsonDoc = IO::readJson(fileName);
const auto& object = jsonDoc.object();
Lot* lot = new Lot;
const auto& ingredientsObject = object["ingredients"].toObject();
for (auto it = ingredientsObject.constBegin(); it != ingredientsObject.constEnd(); ++it)
{
lot->m_ingredientQuantities[it.key()] = it.value().toDouble();
}
const auto& containersObject = object["containers"].toObject();
for (auto it = containersObject.constBegin(); it != containersObject.constEnd(); ++it)
{
lot->m_containers[it.key()] = it.value().toDouble();
}
const auto& lastPricesObject = object["lastPrices"].toObject();
for (auto it = lastPricesObject.constBegin(); it != lastPricesObject.constEnd(); ++it)
{
lot->m_lastPrices[it.key()] = it.value().toDouble();
}
return lot;
}
void Lot::saveToFile(const QString& fileName) const
{
QJsonObject ingredientsObject;
for (auto it = m_ingredientQuantities.cbegin(); it != m_ingredientQuantities.cend(); ++it)
{
ingredientsObject.insert(it.key(), it.value());
}
QJsonObject containersObject;
for (auto it = m_containers.cbegin(); it != m_containers.cend(); ++it)
{
containersObject.insert(it.key(), it.value());
}
QJsonObject lastPricesObject;
for (auto it = m_lastPrices.cbegin(); it != m_lastPrices.cend(); ++it)
{
lastPricesObject.insert(it.key(), it.value());
}
QJsonObject object;
object.insert("ingredients", QJsonValue(ingredientsObject));
object.insert("containers", QJsonValue(containersObject));
object.insert("lastPrices", QJsonValue(lastPricesObject));
IO::saveJson(fileName, QJsonDocument(object));
}
|
c179d361f413c1af5a2b688695225901027a28b2 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/com/netfx/src/clr/vm/jumptargettable.h | 476b09b05be664985cd85db23ac08347f6accff2 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 5,515 | h | jumptargettable.h | // ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
#ifndef JUMPTARGETTABLE_H_
#define JUMPTARGETTABLE_H_
#include <WinWrap.h>
#include <windows.h>
#include <stdlib.h>
#include <objbase.h>
#include <stddef.h>
#include <float.h>
#include <limits.h>
//
// An JumpTargetTable is a range of code which provides a dense set of
// jump addresses, which all cascade to a single routine, but which
// leave behind state from which a unique index can be recovered for
// each address.
//
// The jump target table assumes assumes that the low 2 bits of ESP
// will be zero on entry. In addition to changing these 2 bits, it
// stomps the AL with part of the result. (These 10 bits
// are used to recover the original value from the destination routine.)
//
// The jump table is laid out in blocks. The smallest blocks
// (called subblocks) look like this:
//
// inc esp
// inc esp
// mov al, imm8
// jmp rel8
//
// Each of these subblocks yields 4 jump targets, at a cost of 7 bytes.
//
// These subblocks can be clustered (19 before and 16 after) around a central jump site
// movzx eax, al
// add eax, (base index >> 2)
// jmp rel32
//
// A full block thus yields a total of 140 target addresses, at a
// cost of 258 bytes of code.
//
// These blocks can be duplicated as needed to provide more targets, up to an abritrary number.
//
// The ultimate target of the jump block must take the low 2 bits out
// of esp, and add to eax (shifted left by 2), to form the
// final index.
//
//
// NOTE: There are a few minor optimizations that we could make, but we don't because
// it just complicates the layout & saves only a few bytes.
// - the subblock before the central jump site could have its "jmp rel8" omitted
// - the last subblock could have one or more "inc ecx"s omitted if the number of targets isn't evenly
// divisible by 4.
//
class X86JumpTargetTable
{
friend class X86JumpTargetTableStubManager;
//
// Instruction constants
//
enum
{
INC_ESP = 0x44,
MOV_AL = 0xB0,
JMP_REL8 = 0xEB,
JMP_REL32 = 0xE9,
MOVZX_EAX_AL_1 = 0x0F,
MOVZX_EAX_AL_2 = 0xB6,
MOVZX_EAX_AL_3 = 0xC0,
ADD_EAX = 0x05,
};
//
// Block geometry constants
//
enum
{
// number of jump targets in subblock
SUB_TARGET_COUNT = 4,
// size of sub block of 4 targets
SUB_BLOCK_SIZE = 7,
// size of central jump site, target of sub blocks
CENTRAL_JUMP_EXTEND_EAX_SIZE = 3,
CENTRAL_JUMP_ADD_BASE_SIZE = 5,
CENTRAL_JUMP_FIXUP_EAX_SIZE = CENTRAL_JUMP_EXTEND_EAX_SIZE + CENTRAL_JUMP_ADD_BASE_SIZE,
CENTRAL_JUMP_SIZE = CENTRAL_JUMP_FIXUP_EAX_SIZE + 5,
// Max. number of subblocks before jump site (max offset 127)
MAX_BEFORE_INDEX = 19,
// Max. number of subblocks after jump site (min offset -128)
MAX_AFTER_INDEX = 16,
// Total subblock count in block
MAX_BLOCK_INDEX = (MAX_BEFORE_INDEX + MAX_AFTER_INDEX),
};
public:
enum
{
// Max number of targets
MAX_TARGET_COUNT = UINT_MAX,
// Number of jump targets in fully populated block
MAX_BLOCK_TARGET_COUNT = MAX_BLOCK_INDEX*SUB_TARGET_COUNT,
// Total size of fully populated block
FULL_BLOCK_SIZE = (SUB_BLOCK_SIZE*MAX_BLOCK_INDEX + CENTRAL_JUMP_SIZE),
};
//
// Computes the offset (into a series of contiguous blocks)
// of a the target for the given index.
//
static int ComputeTargetOffset(int targetIndex);
//
// Computes the size of a contiguous series of blocks
// containing the specified number of targets.
//
static int ComputeSize(int targetCount);
//
// Compute the target index of a jump target
//
static int ComputeTargetIndex(const BYTE *target);
//
// Emits one block, with indicies starting at baseIndex, and containing
// the given number of targets. (baseIndex must be divisble by 4.)
// Returns the offset of where the relative address of the jump target
// must be written.
//
// Note that you will normally call this in a loop, each block containing
// at most MAX_BLOCK_TARGET_COUNT entries, and blocks before the last
// being size FULL_BLOCK_SIZE. (The reason for this is that
// there is one jump target address per block, which the caller is responsible
// for filling in.)
//
static int EmitBlock(int targetCount, int baseIndex, BYTE *buffer);
};
class X86JumpTargetTableStubManager : public StubManager
{
public:
static X86JumpTargetTableStubManager *g_pManager;
static BOOL Init();
#ifdef SHOULD_WE_CLEANUP
static void Uninit();
#endif /* SHOULD_WE_CLEANUP */
X86JumpTargetTableStubManager() : StubManager(), m_rangeList() {}
~X86JumpTargetTableStubManager() {}
LockedRangeList m_rangeList;
BOOL CheckIsStub(const BYTE *stubStartAddress);
BOOL DoTraceStub(const BYTE *stubStartAddress, TraceDestination *trace);
private:
BOOL TraceManager(Thread *thread, TraceDestination *trace,
CONTEXT *pContext, BYTE **pRetAddr);
MethodDesc *Entry2MethodDesc(const BYTE *IP, MethodTable *pMT);
};
#endif // JUMPTARGETTABLE_H_
|
5c324cf171575f8ef67882d7a80a12de9d0df5c2 | cc460f2d2b869f3f389809230caa0e11178d393d | /src/set3/22.cpp | baa3657efb6f573ec49d00d28d43f2a6151e6e7f | [] | no_license | pdogr/cryptopals-cpp | d70e0125b3626d90365a04571280bca06ef129b2 | 6d4a8c0c0d745f72f8dc53a2c2fa9769dc246249 | refs/heads/master | 2023-03-29T13:40:23.976578 | 2021-04-14T22:35:04 | 2021-04-14T22:35:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | 22.cpp | #include "../../include/disp.h"
#include "../../include/mt19937.h"
#include "../../include/utils.h"
#include <random>
int
main ()
{
uint32_t cur_time = time (0);
uint32_t wait1 = random_long (10, 1000);
MT19937 m (cur_time + wait1);
cout << cur_time + wait1 << "\n";
uint32_t val = m ();
uint32_t wait2 = random_long (10, 1000);
uint32_t finish_time = time (0) + wait1 + wait2;
for (int i = 0; i < wait1 + wait2 + 100; ++i)
{
MT19937 _m (finish_time - i);
if (_m () == val)
{
cout << "Found seed: " << finish_time - i << "\n";
break;
}
}
return 0;
}
|
09cf4dc35409c09459f4e965b973ed6a9b122d6f | 14538cd33199f19a6f7bbe1c78897b6698b878e3 | /MH/macros/src/HiEvtPlaneList.h | c2b199205ff9772281585ecda70c65115e42fed0 | [] | no_license | ssanders50/PbPb_2015 | bf3b3158a633316e7748ee38d9c3bd6e108d9d48 | 7c33631d5b26b70872bfe35ea2685da22a587e3f | refs/heads/master | 2021-05-14T13:44:31.397770 | 2020-02-25T18:12:38 | 2020-02-25T18:12:38 | 74,303,093 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54,424 | h | HiEvtPlaneList.h | #ifndef __HiEvtPlaneList__
#define __HiEvtPlaneList__
/*
Index Name Detector Order hmin1 hmax1 hmin2 hmax2 minpt maxpt nsub mcw rmate1 rmate2
0 HFm1 HF 1 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp1 trackmid1
1 HFp1 HF 1 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm1 trackmid1
2 trackmid1 Tracker 1 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
3 trackm1 Tracker 1 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp1 HFm1
4 trackp1 Tracker 1 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp1 HFm1
5 trackm122 Tracker 1 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
6 trackm118 Tracker 1 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
7 trackm114 Tracker 1 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
8 trackm110 Tracker 1 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
9 trackm106 Tracker 1 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
10 trackm102 Tracker 1 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
11 trackp102 Tracker 1 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
12 trackp106 Tracker 1 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
13 trackp110 Tracker 1 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
14 trackp114 Tracker 1 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
15 trackp118 Tracker 1 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
16 trackp122 Tracker 1 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm1 HFp1
17trackmid1mc Tracker 1 -0.80 0.80 0.00 0.00 0.30 3.00 3sub yestrackm122mctrackp122mc
18 trackm1mc Tracker 1 -0.50 0.00 0.00 0.00 0.30 3.00 3sub yestrackm122mctrackp122mc
19 trackp1mc Tracker 1 0.00 0.50 0.00 0.00 0.30 3.00 3sub yestrackm122mctrackp122mc
20trackm122mc Tracker 1 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub yes trackp1mctrackp122mc
21trackm118mc Tracker 1 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub yes trackp1mctrackp122mc
22trackm114mc Tracker 1 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub yes trackp1mctrackp122mc
23trackm110mc Tracker 1 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub yes trackp1mctrackp122mc
24trackm106mc Tracker 1 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub yestrackp110mctrackp122mc
25trackm102mc Tracker 1 -0.40 0.00 0.00 0.00 0.30 3.00 3sub yestrackp110mctrackp122mc
26trackp102mc Tracker 1 0.00 0.40 0.00 0.00 0.30 3.00 3sub yestrackm110mctrackm122mc
27trackp106mc Tracker 1 0.40 0.80 0.00 0.00 0.30 3.00 3sub yestrackm110mctrackm122mc
28trackp110mc Tracker 1 0.80 1.20 0.00 0.00 0.30 3.00 3sub yes trackm1mctrackm122mc
29trackp114mc Tracker 1 1.20 1.60 0.00 0.00 0.30 3.00 3sub yes trackm1mctrackm122mc
30trackp118mc Tracker 1 1.60 2.00 0.00 0.00 0.30 3.00 3sub yes trackm1mctrackm122mc
31trackp122mc Tracker 1 2.00 2.40 0.00 0.00 0.30 3.00 3sub yes trackm1mctrackm122mc
32 HFm1a HF 1 -2.50 -2.00 0.00 0.00 0.01 30.00 3sub no HFp1 trackp1
33 HFm1b HF 1 -3.00 -2.50 0.00 0.00 0.01 30.00 3sub no HFp1 trackp1
34 HFm1c HF 1 -3.50 -3.00 0.00 0.00 0.01 30.00 3sub no HFp1 trackp1
35 HFm1d HF 1 -4.00 -3.50 0.00 0.00 0.01 30.00 3sub no HFp1 trackp1
36 HFm1e HF 1 -4.50 -4.00 0.00 0.00 0.01 30.00 3sub no HFp1 trackp1
37 HFm1f HF 1 -5.00 -4.50 0.00 0.00 0.01 30.00 3sub no HFp1 trackp1
38 HFm1g HF 1 -5.00 -4.00 0.00 0.00 0.01 30.00 3sub no HFp1 trackmid1
39 HFp1a HF 1 2.00 2.50 0.00 0.00 0.01 30.00 3sub no HFm1 trackm1
40 HFp1b HF 1 2.50 3.00 0.00 0.00 0.01 30.00 3sub no HFm1 trackm1
41 HFp1c HF 1 3.00 3.50 0.00 0.00 0.01 30.00 3sub no HFm1 trackm1
42 HFp1d HF 1 3.50 4.00 0.00 0.00 0.01 30.00 3sub no HFm1 trackm1
43 HFp1e HF 1 4.00 4.50 0.00 0.00 0.01 30.00 3sub no HFm1 trackm1
44 HFp1f HF 1 4.50 5.00 0.00 0.00 0.01 30.00 3sub no HFm1 trackm1
45 HFp1g HF 1 4.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm1 trackmid1
46 HFm2 HF 2 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp2 trackmid2
47 HFp2 HF 2 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm2 trackmid2
48 trackmid2 Tracker 2 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
49 trackm2 Tracker 2 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp2 HFm2
50 trackp2 Tracker 2 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp2 HFm2
51 trackm222 Tracker 2 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
52 trackm218 Tracker 2 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
53 trackm214 Tracker 2 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
54 trackm210 Tracker 2 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
55 trackm206 Tracker 2 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
56 trackm202 Tracker 2 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
57 trackp202 Tracker 2 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
58 trackp206 Tracker 2 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
59 trackp210 Tracker 2 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
60 trackp214 Tracker 2 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
61 trackp218 Tracker 2 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
62 trackp222 Tracker 2 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm2 HFp2
63 HFm2a HF 2 -2.50 -2.00 0.00 0.00 0.01 30.00 3sub no HFp2 trackp2
64 HFm2b HF 2 -3.00 -2.50 0.00 0.00 0.01 30.00 3sub no HFp2 trackp2
65 HFm2c HF 2 -3.50 -3.00 0.00 0.00 0.01 30.00 3sub no HFp2 trackp2
66 HFm2d HF 2 -4.00 -3.50 0.00 0.00 0.01 30.00 3sub no HFp2 trackp2
67 HFm2e HF 2 -4.50 -4.00 0.00 0.00 0.01 30.00 3sub no HFp2 trackp2
68 HFm2f HF 2 -5.00 -4.50 0.00 0.00 0.01 30.00 3sub no HFp2 trackp2
69 HFm2g HF 2 -5.00 -4.00 0.00 0.00 0.01 30.00 3sub no HFp2 trackmid2
70 HFp2a HF 2 2.00 2.50 0.00 0.00 0.01 30.00 3sub no HFm2 trackm2
71 HFp2b HF 2 2.50 3.00 0.00 0.00 0.01 30.00 3sub no HFm2 trackm2
72 HFp2c HF 2 3.00 3.50 0.00 0.00 0.01 30.00 3sub no HFm2 trackm2
73 HFp2d HF 2 3.50 4.00 0.00 0.00 0.01 30.00 3sub no HFm2 trackm2
74 HFp2e HF 2 4.00 4.50 0.00 0.00 0.01 30.00 3sub no HFm2 trackm2
75 HFp2f HF 2 4.50 5.00 0.00 0.00 0.01 30.00 3sub no HFm2 trackm2
76 HFp2g HF 2 4.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm2 trackmid2
77 HFm3 HF 3 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp3 trackmid3
78 HFp3 HF 3 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm3 trackmid3
79 trackmid3 Tracker 3 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
80 trackm3 Tracker 3 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp3 HFm3
81 trackp3 Tracker 3 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp3 HFm3
82 trackm322 Tracker 3 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
83 trackm318 Tracker 3 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
84 trackm314 Tracker 3 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
85 trackm310 Tracker 3 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
86 trackm306 Tracker 3 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
87 trackm302 Tracker 3 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
88 trackp302 Tracker 3 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
89 trackp306 Tracker 3 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
90 trackp310 Tracker 3 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
91 trackp314 Tracker 3 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
92 trackp318 Tracker 3 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
93 trackp322 Tracker 3 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm3 HFp3
94 HFm3a HF 3 -2.50 -2.00 0.00 0.00 0.01 30.00 3sub no HFp3 trackp3
95 HFm3b HF 3 -3.00 -2.50 0.00 0.00 0.01 30.00 3sub no HFp3 trackp3
96 HFm3c HF 3 -3.50 -3.00 0.00 0.00 0.01 30.00 3sub no HFp3 trackp3
97 HFm3d HF 3 -4.00 -3.50 0.00 0.00 0.01 30.00 3sub no HFp3 trackp3
98 HFm3e HF 3 -4.50 -4.00 0.00 0.00 0.01 30.00 3sub no HFp3 trackp3
99 HFm3f HF 3 -5.00 -4.50 0.00 0.00 0.01 30.00 3sub no HFp3 trackp3
100 HFm3g HF 3 -5.00 -4.00 0.00 0.00 0.01 30.00 3sub no HFp3 trackmid3
101 HFp3a HF 3 2.00 2.50 0.00 0.00 0.01 30.00 3sub no HFm3 trackm3
102 HFp3b HF 3 2.50 3.00 0.00 0.00 0.01 30.00 3sub no HFm3 trackm3
103 HFp3c HF 3 3.00 3.50 0.00 0.00 0.01 30.00 3sub no HFm3 trackm3
104 HFp3d HF 3 3.50 4.00 0.00 0.00 0.01 30.00 3sub no HFm3 trackm3
105 HFp3e HF 3 4.00 4.50 0.00 0.00 0.01 30.00 3sub no HFm3 trackm3
106 HFp3f HF 3 4.50 5.00 0.00 0.00 0.01 30.00 3sub no HFm3 trackm3
107 HFp3g HF 3 4.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm3 trackmid3
108 HFm4 HF 4 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp4 trackmid4
109 HFp4 HF 4 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm4 trackmid4
110 trackmid4 Tracker 4 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
111 trackm4 Tracker 4 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp4 HFm4
112 trackp4 Tracker 4 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp4 HFm4
113 trackm422 Tracker 4 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
114 trackm418 Tracker 4 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
115 trackm414 Tracker 4 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
116 trackm410 Tracker 4 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
117 trackm406 Tracker 4 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
118 trackm402 Tracker 4 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
119 trackp402 Tracker 4 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
120 trackp406 Tracker 4 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
121 trackp410 Tracker 4 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
122 trackp414 Tracker 4 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
123 trackp418 Tracker 4 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
124 trackp422 Tracker 4 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm4 HFp4
125 HFm4a HF 4 -2.50 -2.00 0.00 0.00 0.01 30.00 3sub no HFp4 trackp4
126 HFm4b HF 4 -3.00 -2.50 0.00 0.00 0.01 30.00 3sub no HFp4 trackp4
127 HFm4c HF 4 -3.50 -3.00 0.00 0.00 0.01 30.00 3sub no HFp4 trackp4
128 HFm4d HF 4 -4.00 -3.50 0.00 0.00 0.01 30.00 3sub no HFp4 trackp4
129 HFm4e HF 4 -4.50 -4.00 0.00 0.00 0.01 30.00 3sub no HFp4 trackp4
130 HFm4f HF 4 -5.00 -4.50 0.00 0.00 0.01 30.00 3sub no HFp4 trackp4
131 HFm4g HF 4 -5.00 -4.00 0.00 0.00 0.01 30.00 3sub no HFp4 trackmid4
132 HFp4a HF 4 2.00 2.50 0.00 0.00 0.01 30.00 3sub no HFm4 trackm4
133 HFp4b HF 4 2.50 3.00 0.00 0.00 0.01 30.00 3sub no HFm4 trackm4
134 HFp4c HF 4 3.00 3.50 0.00 0.00 0.01 30.00 3sub no HFm4 trackm4
135 HFp4d HF 4 3.50 4.00 0.00 0.00 0.01 30.00 3sub no HFm4 trackm4
136 HFp4e HF 4 4.00 4.50 0.00 0.00 0.01 30.00 3sub no HFm4 trackm4
137 HFp4f HF 4 4.50 5.00 0.00 0.00 0.01 30.00 3sub no HFm4 trackm4
138 HFp4g HF 4 4.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm4 trackmid4
139 HFm5 HF 5 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp5 trackmid5
140 HFp5 HF 5 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm5 trackmid5
141 trackmid5 Tracker 5 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
142 trackm5 Tracker 5 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp5 HFm5
143 trackp5 Tracker 5 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp5 HFm5
144 trackm522 Tracker 5 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
145 trackm518 Tracker 5 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
146 trackm514 Tracker 5 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
147 trackm510 Tracker 5 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
148 trackm506 Tracker 5 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
149 trackm502 Tracker 5 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
150 trackp502 Tracker 5 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
151 trackp506 Tracker 5 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
152 trackp510 Tracker 5 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
153 trackp514 Tracker 5 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
154 trackp518 Tracker 5 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
155 trackp522 Tracker 5 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm5 HFp5
156 HFm6 HF 6 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp6 trackmid6
157 HFp6 HF 6 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm6 trackmid6
158 trackmid6 Tracker 6 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
159 trackm6 Tracker 6 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp6 HFm6
160 trackp6 Tracker 6 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp6 HFm6
161 trackm622 Tracker 6 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
162 trackm618 Tracker 6 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
163 trackm614 Tracker 6 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
164 trackm610 Tracker 6 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
165 trackm606 Tracker 6 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
166 trackm602 Tracker 6 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
167 trackp602 Tracker 6 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
168 trackp606 Tracker 6 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
169 trackp610 Tracker 6 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
170 trackp614 Tracker 6 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
171 trackp618 Tracker 6 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
172 trackp622 Tracker 6 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm6 HFp6
173 HFm7 HF 7 -5.00 -3.00 0.00 0.00 0.01 30.00 3sub no HFp7 trackmid7
174 HFp7 HF 7 3.00 5.00 0.00 0.00 0.01 30.00 3sub no HFm7 trackmid7
175 trackmid7 Tracker 7 -0.80 0.80 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
176 trackm7 Tracker 7 -0.50 0.00 0.00 0.00 0.30 3.00 3sub no HFp7 HFm7
177 trackp7 Tracker 7 0.00 0.50 0.00 0.00 0.30 3.00 3sub no HFp7 HFm7
178 trackm722 Tracker 7 -2.40 -2.00 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
179 trackm718 Tracker 7 -2.00 -1.60 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
180 trackm714 Tracker 7 -1.60 -1.20 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
181 trackm710 Tracker 7 -1.20 -0.80 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
182 trackm706 Tracker 7 -0.80 -0.40 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
183 trackm702 Tracker 7 -0.40 0.00 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
184 trackp702 Tracker 7 0.00 0.40 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
185 trackp706 Tracker 7 0.40 0.80 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
186 trackp710 Tracker 7 0.80 1.20 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
187 trackp714 Tracker 7 1.20 1.60 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
188 trackp718 Tracker 7 1.60 2.00 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
189 trackp722 Tracker 7 2.00 2.40 0.00 0.00 0.30 3.00 3sub no HFm7 HFp7
*/
#include <string>
using namespace std;
namespace hi{
enum EPNamesInd {
HFm1, HFp1, trackmid1, trackm1, trackp1,
trackm122, trackm118, trackm114, trackm110, trackm106,
trackm102, trackp102, trackp106, trackp110, trackp114,
trackp118, trackp122, trackmid1mc, trackm1mc, trackp1mc,
trackm122mc, trackm118mc, trackm114mc, trackm110mc, trackm106mc,
trackm102mc, trackp102mc, trackp106mc, trackp110mc, trackp114mc,
trackp118mc, trackp122mc, HFm1a, HFm1b, HFm1c,
HFm1d, HFm1e, HFm1f, HFm1g, HFp1a,
HFp1b, HFp1c, HFp1d, HFp1e, HFp1f,
HFp1g, HFm2, HFp2, trackmid2, trackm2,
trackp2, trackm222, trackm218, trackm214, trackm210,
trackm206, trackm202, trackp202, trackp206, trackp210,
trackp214, trackp218, trackp222, HFm2a, HFm2b,
HFm2c, HFm2d, HFm2e, HFm2f, HFm2g,
HFp2a, HFp2b, HFp2c, HFp2d, HFp2e,
HFp2f, HFp2g, HFm3, HFp3, trackmid3,
trackm3, trackp3, trackm322, trackm318, trackm314,
trackm310, trackm306, trackm302, trackp302, trackp306,
trackp310, trackp314, trackp318, trackp322, HFm3a,
HFm3b, HFm3c, HFm3d, HFm3e, HFm3f,
HFm3g, HFp3a, HFp3b, HFp3c, HFp3d,
HFp3e, HFp3f, HFp3g, HFm4, HFp4,
trackmid4, trackm4, trackp4, trackm422, trackm418,
trackm414, trackm410, trackm406, trackm402, trackp402,
trackp406, trackp410, trackp414, trackp418, trackp422,
HFm4a, HFm4b, HFm4c, HFm4d, HFm4e,
HFm4f, HFm4g, HFp4a, HFp4b, HFp4c,
HFp4d, HFp4e, HFp4f, HFp4g, HFm5,
HFp5, trackmid5, trackm5, trackp5, trackm522,
trackm518, trackm514, trackm510, trackm506, trackm502,
trackp502, trackp506, trackp510, trackp514, trackp518,
trackp522, HFm6, HFp6, trackmid6, trackm6,
trackp6, trackm622, trackm618, trackm614, trackm610,
trackm606, trackm602, trackp602, trackp606, trackp610,
trackp614, trackp618, trackp622, HFm7, HFp7,
trackmid7, trackm7, trackp7, trackm722, trackm718,
trackm714, trackm710, trackm706, trackm702, trackp702,
trackp706, trackp710, trackp714, trackp718, trackp722,
EPBLANK
};
const std::string EPNames[] = {
"HFm1", "HFp1", "trackmid1", "trackm1", "trackp1",
"trackm122", "trackm118", "trackm114", "trackm110", "trackm106",
"trackm102", "trackp102", "trackp106", "trackp110", "trackp114",
"trackp118", "trackp122","trackmid1mc", "trackm1mc", "trackp1mc",
"trackm122mc","trackm118mc","trackm114mc","trackm110mc","trackm106mc",
"trackm102mc","trackp102mc","trackp106mc","trackp110mc","trackp114mc",
"trackp118mc","trackp122mc", "HFm1a", "HFm1b", "HFm1c",
"HFm1d", "HFm1e", "HFm1f", "HFm1g", "HFp1a",
"HFp1b", "HFp1c", "HFp1d", "HFp1e", "HFp1f",
"HFp1g", "HFm2", "HFp2", "trackmid2", "trackm2",
"trackp2", "trackm222", "trackm218", "trackm214", "trackm210",
"trackm206", "trackm202", "trackp202", "trackp206", "trackp210",
"trackp214", "trackp218", "trackp222", "HFm2a", "HFm2b",
"HFm2c", "HFm2d", "HFm2e", "HFm2f", "HFm2g",
"HFp2a", "HFp2b", "HFp2c", "HFp2d", "HFp2e",
"HFp2f", "HFp2g", "HFm3", "HFp3", "trackmid3",
"trackm3", "trackp3", "trackm322", "trackm318", "trackm314",
"trackm310", "trackm306", "trackm302", "trackp302", "trackp306",
"trackp310", "trackp314", "trackp318", "trackp322", "HFm3a",
"HFm3b", "HFm3c", "HFm3d", "HFm3e", "HFm3f",
"HFm3g", "HFp3a", "HFp3b", "HFp3c", "HFp3d",
"HFp3e", "HFp3f", "HFp3g", "HFm4", "HFp4",
"trackmid4", "trackm4", "trackp4", "trackm422", "trackm418",
"trackm414", "trackm410", "trackm406", "trackm402", "trackp402",
"trackp406", "trackp410", "trackp414", "trackp418", "trackp422",
"HFm4a", "HFm4b", "HFm4c", "HFm4d", "HFm4e",
"HFm4f", "HFm4g", "HFp4a", "HFp4b", "HFp4c",
"HFp4d", "HFp4e", "HFp4f", "HFp4g", "HFm5",
"HFp5", "trackmid5", "trackm5", "trackp5", "trackm522",
"trackm518", "trackm514", "trackm510", "trackm506", "trackm502",
"trackp502", "trackp506", "trackp510", "trackp514", "trackp518",
"trackp522", "HFm6", "HFp6", "trackmid6", "trackm6",
"trackp6", "trackm622", "trackm618", "trackm614", "trackm610",
"trackm606", "trackm602", "trackp602", "trackp606", "trackp610",
"trackp614", "trackp618", "trackp622", "HFm7", "HFp7",
"trackmid7", "trackm7", "trackp7", "trackm722", "trackm718",
"trackm714", "trackm710", "trackm706", "trackm702", "trackp702",
"trackp706", "trackp710", "trackp714", "trackp718", "trackp722"
};
enum Detectors {Tracker, HF, Castor};
const int EPDet[] = {
HF, HF, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, HF, HF, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, HF, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, HF,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, HF,
HF, HF, HF, HF, HF,
HF, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, HF, HF, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, HF, HF,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker,
Tracker, Tracker, Tracker, Tracker, Tracker
};
const int EPOrder[] = {
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 1, 1, 1, 1,
1, 2, 2, 2, 2,
2, 2, 2, 2, 2,
2, 2, 2, 2, 2,
2, 2, 2, 2, 2,
2, 2, 2, 2, 2,
2, 2, 2, 2, 2,
2, 2, 3, 3, 3,
3, 3, 3, 3, 3,
3, 3, 3, 3, 3,
3, 3, 3, 3, 3,
3, 3, 3, 3, 3,
3, 3, 3, 3, 3,
3, 3, 3, 4, 4,
4, 4, 4, 4, 4,
4, 4, 4, 4, 4,
4, 4, 4, 4, 4,
4, 4, 4, 4, 4,
4, 4, 4, 4, 4,
4, 4, 4, 4, 5,
5, 5, 5, 5, 5,
5, 5, 5, 5, 5,
5, 5, 5, 5, 5,
5, 6, 6, 6, 6,
6, 6, 6, 6, 6,
6, 6, 6, 6, 6,
6, 6, 6, 7, 7,
7, 7, 7, 7, 7,
7, 7, 7, 7, 7,
7, 7, 7, 7, 7
};
const double EPEtaMin1[] = {
-5.00, 3.00, -0.80, -0.50, 0.00,
-2.40, -2.00, -1.60, -1.20, -0.80,
-0.40, 0.00, 0.40, 0.80, 1.20,
1.60, 2.00, -0.80, -0.50, 0.00,
-2.40, -2.00, -1.60, -1.20, -0.80,
-0.40, 0.00, 0.40, 0.80, 1.20,
1.60, 2.00, -2.50, -3.00, -3.50,
-4.00, -4.50, -5.00, -5.00, 2.00,
2.50, 3.00, 3.50, 4.00, 4.50,
4.00, -5.00, 3.00, -0.80, -0.50,
0.00, -2.40, -2.00, -1.60, -1.20,
-0.80, -0.40, 0.00, 0.40, 0.80,
1.20, 1.60, 2.00, -2.50, -3.00,
-3.50, -4.00, -4.50, -5.00, -5.00,
2.00, 2.50, 3.00, 3.50, 4.00,
4.50, 4.00, -5.00, 3.00, -0.80,
-0.50, 0.00, -2.40, -2.00, -1.60,
-1.20, -0.80, -0.40, 0.00, 0.40,
0.80, 1.20, 1.60, 2.00, -2.50,
-3.00, -3.50, -4.00, -4.50, -5.00,
-5.00, 2.00, 2.50, 3.00, 3.50,
4.00, 4.50, 4.00, -5.00, 3.00,
-0.80, -0.50, 0.00, -2.40, -2.00,
-1.60, -1.20, -0.80, -0.40, 0.00,
0.40, 0.80, 1.20, 1.60, 2.00,
-2.50, -3.00, -3.50, -4.00, -4.50,
-5.00, -5.00, 2.00, 2.50, 3.00,
3.50, 4.00, 4.50, 4.00, -5.00,
3.00, -0.80, -0.50, 0.00, -2.40,
-2.00, -1.60, -1.20, -0.80, -0.40,
0.00, 0.40, 0.80, 1.20, 1.60,
2.00, -5.00, 3.00, -0.80, -0.50,
0.00, -2.40, -2.00, -1.60, -1.20,
-0.80, -0.40, 0.00, 0.40, 0.80,
1.20, 1.60, 2.00, -5.00, 3.00,
-0.80, -0.50, 0.00, -2.40, -2.00,
-1.60, -1.20, -0.80, -0.40, 0.00,
0.40, 0.80, 1.20, 1.60, 2.00
};
const double EPEtaMax1[] = {
-3.00, 5.00, 0.80, 0.00, 0.50,
-2.00, -1.60, -1.20, -0.80, -0.40,
0.00, 0.40, 0.80, 1.20, 1.60,
2.00, 2.40, 0.80, 0.00, 0.50,
-2.00, -1.60, -1.20, -0.80, -0.40,
0.00, 0.40, 0.80, 1.20, 1.60,
2.00, 2.40, -2.00, -2.50, -3.00,
-3.50, -4.00, -4.50, -4.00, 2.50,
3.00, 3.50, 4.00, 4.50, 5.00,
5.00, -3.00, 5.00, 0.80, 0.00,
0.50, -2.00, -1.60, -1.20, -0.80,
-0.40, 0.00, 0.40, 0.80, 1.20,
1.60, 2.00, 2.40, -2.00, -2.50,
-3.00, -3.50, -4.00, -4.50, -4.00,
2.50, 3.00, 3.50, 4.00, 4.50,
5.00, 5.00, -3.00, 5.00, 0.80,
0.00, 0.50, -2.00, -1.60, -1.20,
-0.80, -0.40, 0.00, 0.40, 0.80,
1.20, 1.60, 2.00, 2.40, -2.00,
-2.50, -3.00, -3.50, -4.00, -4.50,
-4.00, 2.50, 3.00, 3.50, 4.00,
4.50, 5.00, 5.00, -3.00, 5.00,
0.80, 0.00, 0.50, -2.00, -1.60,
-1.20, -0.80, -0.40, 0.00, 0.40,
0.80, 1.20, 1.60, 2.00, 2.40,
-2.00, -2.50, -3.00, -3.50, -4.00,
-4.50, -4.00, 2.50, 3.00, 3.50,
4.00, 4.50, 5.00, 5.00, -3.00,
5.00, 0.80, 0.00, 0.50, -2.00,
-1.60, -1.20, -0.80, -0.40, 0.00,
0.40, 0.80, 1.20, 1.60, 2.00,
2.40, -3.00, 5.00, 0.80, 0.00,
0.50, -2.00, -1.60, -1.20, -0.80,
-0.40, 0.00, 0.40, 0.80, 1.20,
1.60, 2.00, 2.40, -3.00, 5.00,
0.80, 0.00, 0.50, -2.00, -1.60,
-1.20, -0.80, -0.40, 0.00, 0.40,
0.80, 1.20, 1.60, 2.00, 2.40
};
const double EPEtaMin2[] = {
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00
};
const double EPEtaMax2[] = {
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00,
0.00, 0.00, 0.00, 0.00, 0.00
};
const double minTransverse[] = {
0.01, 0.01, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.01, 0.01, 0.01, 0.01,
0.01, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.01, 0.01, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.01, 0.01,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30,
0.30, 0.30, 0.30, 0.30, 0.30
};
const double maxTransverse[] = {
30.00, 30.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 30.00, 30.00, 30.00, 30.00,
30.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 30.00, 30.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 30.00, 30.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00,
3.00, 3.00, 3.00, 3.00, 3.00
};
const std::string ResCalcType[] = {
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub",
"3sub", "3sub", "3sub", "3sub", "3sub"
};
const std::string MomConsWeight[] = {
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "yes", "yes", "yes",
"yes", "yes", "yes", "yes", "yes",
"yes", "yes", "yes", "yes", "yes",
"yes", "yes", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no",
"no", "no", "no", "no", "no"
};
const int RCMate1[] = {
HFp1, HFm1, HFm1, HFp1, HFp1,
HFm1, HFm1, HFm1, HFm1, HFm1,
HFm1, HFm1, HFm1, HFm1, HFm1,
HFm1, HFm1,trackm122mc,trackm122mc,trackm122mc,
trackp1mc, trackp1mc, trackp1mc, trackp1mc,trackp110mc,
trackp110mc,trackm110mc,trackm110mc, trackm1mc, trackm1mc,
trackm1mc, trackm1mc, HFp1, HFp1, HFp1,
HFp1, HFp1, HFp1, HFp1, HFm1,
HFm1, HFm1, HFm1, HFm1, HFm1,
HFm1, HFp2, HFm2, HFm2, HFp2,
HFp2, HFm2, HFm2, HFm2, HFm2,
HFm2, HFm2, HFm2, HFm2, HFm2,
HFm2, HFm2, HFm2, HFp2, HFp2,
HFp2, HFp2, HFp2, HFp2, HFp2,
HFm2, HFm2, HFm2, HFm2, HFm2,
HFm2, HFm2, HFp3, HFm3, HFm3,
HFp3, HFp3, HFm3, HFm3, HFm3,
HFm3, HFm3, HFm3, HFm3, HFm3,
HFm3, HFm3, HFm3, HFm3, HFp3,
HFp3, HFp3, HFp3, HFp3, HFp3,
HFp3, HFm3, HFm3, HFm3, HFm3,
HFm3, HFm3, HFm3, HFp4, HFm4,
HFm4, HFp4, HFp4, HFm4, HFm4,
HFm4, HFm4, HFm4, HFm4, HFm4,
HFm4, HFm4, HFm4, HFm4, HFm4,
HFp4, HFp4, HFp4, HFp4, HFp4,
HFp4, HFp4, HFm4, HFm4, HFm4,
HFm4, HFm4, HFm4, HFm4, HFp5,
HFm5, HFm5, HFp5, HFp5, HFm5,
HFm5, HFm5, HFm5, HFm5, HFm5,
HFm5, HFm5, HFm5, HFm5, HFm5,
HFm5, HFp6, HFm6, HFm6, HFp6,
HFp6, HFm6, HFm6, HFm6, HFm6,
HFm6, HFm6, HFm6, HFm6, HFm6,
HFm6, HFm6, HFm6, HFp7, HFm7,
HFm7, HFp7, HFp7, HFm7, HFm7,
HFm7, HFm7, HFm7, HFm7, HFm7,
HFm7, HFm7, HFm7, HFm7, HFm7
};
const int RCMate2[] = {
trackmid1, trackmid1, HFp1, HFm1, HFm1,
HFp1, HFp1, HFp1, HFp1, HFp1,
HFp1, HFp1, HFp1, HFp1, HFp1,
HFp1, HFp1,trackp122mc,trackp122mc,trackp122mc,
trackp122mc,trackp122mc,trackp122mc,trackp122mc,trackp122mc,
trackp122mc,trackm122mc,trackm122mc,trackm122mc,trackm122mc,
trackm122mc,trackm122mc, trackp1, trackp1, trackp1,
trackp1, trackp1, trackp1, trackmid1, trackm1,
trackm1, trackm1, trackm1, trackm1, trackm1,
trackmid1, trackmid2, trackmid2, HFp2, HFm2,
HFm2, HFp2, HFp2, HFp2, HFp2,
HFp2, HFp2, HFp2, HFp2, HFp2,
HFp2, HFp2, HFp2, trackp2, trackp2,
trackp2, trackp2, trackp2, trackp2, trackmid2,
trackm2, trackm2, trackm2, trackm2, trackm2,
trackm2, trackmid2, trackmid3, trackmid3, HFp3,
HFm3, HFm3, HFp3, HFp3, HFp3,
HFp3, HFp3, HFp3, HFp3, HFp3,
HFp3, HFp3, HFp3, HFp3, trackp3,
trackp3, trackp3, trackp3, trackp3, trackp3,
trackmid3, trackm3, trackm3, trackm3, trackm3,
trackm3, trackm3, trackmid3, trackmid4, trackmid4,
HFp4, HFm4, HFm4, HFp4, HFp4,
HFp4, HFp4, HFp4, HFp4, HFp4,
HFp4, HFp4, HFp4, HFp4, HFp4,
trackp4, trackp4, trackp4, trackp4, trackp4,
trackp4, trackmid4, trackm4, trackm4, trackm4,
trackm4, trackm4, trackm4, trackmid4, trackmid5,
trackmid5, HFp5, HFm5, HFm5, HFp5,
HFp5, HFp5, HFp5, HFp5, HFp5,
HFp5, HFp5, HFp5, HFp5, HFp5,
HFp5, trackmid6, trackmid6, HFp6, HFm6,
HFm6, HFp6, HFp6, HFp6, HFp6,
HFp6, HFp6, HFp6, HFp6, HFp6,
HFp6, HFp6, HFp6, trackmid7, trackmid7,
HFp7, HFm7, HFm7, HFp7, HFp7,
HFp7, HFp7, HFp7, HFp7, HFp7,
HFp7, HFp7, HFp7, HFp7, HFp7
};
static const int NumEPNames = 190;
}
#endif
|
098b77c09ef94df6d3d6d35a950ca9d597fc3953 | aaa60b19f500fc49dbaac1ec87e9c535a66b4ff5 | /1-Offer/15.二进制中1的个数.cc | 56f174bca1ce9f73af3e2d84ea4a29f9c2155e89 | [] | no_license | younger-1/leetcode-younger | c24e4a2a77c2f226c064c4eaf61e7f47d7e98d74 | a6dc92bbb90c5a095ac405476aeae6690e204b6b | refs/heads/master | 2023-07-25T02:31:42.430740 | 2021-09-09T08:06:05 | 2021-09-09T08:06:05 | 334,441,040 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 208 | cc | 15.二进制中1的个数.cc | // 剑指 Offer 15. 二进制中1的个数
// https://leetcode-cn.com/problems/er-jin-zhi-zhong-1de-ge-shu-lcof/
// 注意:本题与主站 191 题相同:https://leetcode-cn.com/problems/number-of-1-bits/
|
699755a61b5ff1ed3c85aeaa8c51b0d50828986d | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /cc/test/render_pass_test_utils.h | 41a0f384b5f30da90c7b350f9661542e2f2edd3a | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 5,260 | h | render_pass_test_utils.h | // Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_TEST_RENDER_PASS_TEST_UTILS_H_
#define CC_TEST_RENDER_PASS_TEST_UTILS_H_
#include <stdint.h>
#include <vector>
#include "cc/paint/filter_operations.h"
#include "components/viz/common/quads/aggregated_render_pass.h"
#include "components/viz/common/quads/compositor_render_pass.h"
#include "components/viz/common/quads/solid_color_draw_quad.h"
#include "third_party/skia/include/core/SkColor.h"
namespace gfx {
class Rect;
class Transform;
}
namespace gpu {
struct SyncToken;
}
namespace viz {
class ClientResourceProvider;
class DisplayResourceProvider;
class CompositorRenderPass;
class RasterContextProvider;
} // namespace viz
namespace cc {
// Adds a new render pass with the provided properties to the given
// render pass list.
viz::CompositorRenderPass* AddRenderPass(
viz::CompositorRenderPassList* pass_list,
viz::CompositorRenderPassId render_pass_id,
const gfx::Rect& output_rect,
const gfx::Transform& root_transform,
const FilterOperations& filters);
viz::AggregatedRenderPass* AddRenderPass(
viz::AggregatedRenderPassList* pass_list,
viz::AggregatedRenderPassId render_pass_id,
const gfx::Rect& output_rect,
const gfx::Transform& root_transform,
const FilterOperations& filters);
// Adds a new render pass with the provided properties to the given
// render pass list.
viz::CompositorRenderPass* AddRenderPassWithDamage(
viz::CompositorRenderPassList* pass_list,
viz::CompositorRenderPassId render_pass_id,
const gfx::Rect& output_rect,
const gfx::Rect& damage_rect,
const gfx::Transform& root_transform,
const FilterOperations& filters);
viz::AggregatedRenderPass* AddRenderPassWithDamage(
viz::AggregatedRenderPassList* pass_list,
viz::AggregatedRenderPassId render_pass_id,
const gfx::Rect& output_rect,
const gfx::Rect& damage_rect,
const gfx::Transform& root_transform,
const FilterOperations& filters);
// Adds a solid quad to a given render pass.
template <typename RenderPassType>
inline viz::SolidColorDrawQuad* AddTransparentQuad(RenderPassType* pass,
const gfx::Rect& rect,
SkColor4f color,
float opacity) {
viz::SharedQuadState* shared_state = pass->CreateAndAppendSharedQuadState();
shared_state->SetAll(gfx::Transform(), rect, rect, gfx::MaskFilterInfo(),
absl::nullopt, false, opacity, SkBlendMode::kSrcOver, 0);
auto* quad =
pass->template CreateAndAppendDrawQuad<viz::SolidColorDrawQuad>();
quad->SetNew(shared_state, rect, rect, color, false);
return quad;
}
template <typename RenderPassType>
inline viz::SolidColorDrawQuad* AddQuad(RenderPassType* pass,
const gfx::Rect& rect,
SkColor4f color) {
return AddTransparentQuad(pass, rect, color, 1.0);
}
// Adds a solid quad to a given render pass and sets is_clipped=true.
viz::SolidColorDrawQuad* AddClippedQuad(viz::AggregatedRenderPass* pass,
const gfx::Rect& rect,
SkColor color);
// Adds a solid quad with a transform to a given render pass.
viz::SolidColorDrawQuad* AddTransformedQuad(viz::AggregatedRenderPass* pass,
const gfx::Rect& rect,
SkColor color,
const gfx::Transform& transform);
// Adds a render pass quad to an existing render pass.
viz::CompositorRenderPassDrawQuad* AddRenderPassQuad(
viz::CompositorRenderPass* to_pass,
viz::CompositorRenderPass* contributing_pass);
viz::AggregatedRenderPassDrawQuad* AddRenderPassQuad(
viz::AggregatedRenderPass* to_pass,
viz::AggregatedRenderPass* contributing_pass);
// Adds a render pass quad with the given mask resource, filter, and transform.
void AddRenderPassQuad(viz::AggregatedRenderPass* to_pass,
viz::AggregatedRenderPass* contributing_pass,
viz::ResourceId mask_resource_id,
gfx::Transform transform,
SkBlendMode blend_mode);
std::vector<viz::ResourceId> AddOneOfEveryQuadType(
viz::CompositorRenderPass* to_pass,
viz::ClientResourceProvider* resource_provider,
viz::CompositorRenderPassId child_pass_id);
// Adds a render pass quad with the given mask resource, filter, and transform.
// The resource used in render pass is created by viz::ClientResourceProvider,
// then transferred to viz::DisplayResourceProvider.
void AddOneOfEveryQuadTypeInDisplayResourceProvider(
viz::AggregatedRenderPass* to_pass,
viz::DisplayResourceProvider* resource_provider,
viz::ClientResourceProvider* child_resource_provider,
viz::RasterContextProvider* child_context_provider,
viz::AggregatedRenderPassId child_pass_id,
gpu::SyncToken* sync_token_for_mailbox_texture);
} // namespace cc
#endif // CC_TEST_RENDER_PASS_TEST_UTILS_H_
|
9aeb1e50863b5c0174d1ce73e42f1525ed92d261 | 3d1bd15de9f5fa146717e19a69b82dcc01e9eb64 | /cs141/Projects/Project6/coinSwap.cpp | 5e92ebc24730d90bb9f6dfeb095b2c5c615b8197 | [] | no_license | TonyMakis/cs-academia | 75b88813cd76190a8c36a806975675983f31f1c2 | 5ce97ddaee0a6d0cda608df2660d00a13cee2c90 | refs/heads/master | 2023-04-16T17:26:43.833717 | 2021-04-15T19:53:00 | 2021-04-15T19:53:00 | 285,456,665 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,456 | cpp | coinSwap.cpp | #include <iostream>
#include <string>
using namespace std;
// Global constants
const int BOARD_SIZE = 5;
/* Struct to layout a game move
* - moveNum => The number of this move when displayed
* - movePiece => The piece used to make this move
* - nextMove => Pointer to the next move made after this one
* - priorMove => Pointer to the previous move made before this one
*/
struct move {
int moveNum;
string board;
move* priorMove;
};
void addNewMove(int moveNum, string board, struct move* ¤tMove) {
struct move* newMove = new struct move;
newMove->moveNum = moveNum;
newMove->board = board;
newMove->priorMove = currentMove;
currentMove = newMove;
}
void undoLatestMove(struct move* ¤tMove) {
struct move* delCurMove = currentMove;
currentMove = currentMove->priorMove;
delete delCurMove;
}
void displayIdentifyingInformation() {
cout << endl << "Author: Anthony Makis" << endl;
cout << "Program: #6, CoinSwap Undo" << endl << endl;
}
void displayInstructions() {
cout << "Welcome to the coin swap puzzle." << endl
<< "Make moves to solve the puzzle where the objective is to swap the" << endl
<< "place of the pieces on either side of the board. X can only move" << endl
<< "to the right into an empty square, or can jump to the right over" << endl
<< "an O into an empty square. Conversely O can only move to the left" << endl
<< "into an empty square, or can jump to the left over an X into an" << endl
<< "empty square." << endl << endl
<< "For each move enter the source (1..5) and destination (1..5)." << endl
<< "Enter x to exit the program." << endl;
}
void printMoveList(struct move* latestMove) {
struct move* iter = latestMove;
while(iter != nullptr) {
cout << iter->moveNum;
if(iter->moveNum != 1) cout << "->";
iter = iter->priorMove;
}
}
void displayBoard(struct move* latestMove) {
cout << endl << " 1 2 3 4 5\n" << " ";
for(int i = 0; i < BOARD_SIZE; i++) { cout << latestMove->board[i] << " ";}
cout << "\tList: ";
printMoveList(latestMove);
cout << endl << endl;
}
// See if board pieces have finished being swapped. This is the case when
// the left-most two pieces are both 'O' and the right-most two pieces are 'X'
bool notDone(string board) {
return board[0]!='O' || board[1]!='O' || board[3]!='X' || board[4]!='X';
}
void promptForAndGetMove(string &board, int &moveNumber, int &source,
int &destination, struct move* ¤tMove) {
char userInput;
// Infinite loop to handle possible multiple undo of moves
while(true) {
cout << currentMove->moveNum << ". Enter source and destination: ";
cin >> userInput;
// See if user input of 0 was given to exit the program
if( userInput == 'x') {
cout << "\n";
cout << "Exiting program...\n";
exit(0);
}
if( userInput == 'u') {
if(currentMove->moveNum > 1) {
undoLatestMove(currentMove);
board = currentMove->board;
moveNumber = currentMove->moveNum;
cout << "* Undoing move *" << endl;
} else {
cout << "*** You cannot undo past the beginning of the game. ";
cout << "Please retry. " << endl;
}
displayBoard(currentMove);
continue; // Prompt to retry move
}
// Input is likely numeric and is not 'x' or 'u'. Convert to a number.
source = userInput - '0';
// Also get destination portion of user input
cin >> destination;
// Adjust user entry to compensate for 0-based indexing, rather than 1-based
source--;
destination--;
// We don't need to undo a move
break;
}
}
bool moveNotValid(string board, int source, int destination) {
if(source < 0 || source > 4 || destination < 0 || destination > 4) {
cout << "*** You can't refer to a position off the board. ";
return true;
}
if(board[destination] != ' ') {
cout << "*** Destination square is not empty. ";
return true;
}
if(board[source] == 'X') {
if(source > destination) {
cout << "*** You can't move that piece that direction. ";
return true;
}
} else if(board[source] == 'O') {
if(source < destination) {
cout << "*** You can't move that piece that direction. ";
return true;
}
}
if(source - destination > 2 || source - destination < -2) {
cout << "*** Destination is too far away. ";
return true;
}
if(source - destination == 2) {
if( board[(source + destination) / 2] == ' ') {
cout << "*** A jumped square must have an opponent. ";
return true;
}
}
if(source - destination == -2) {
if( board[(source + destination) / 2] == ' ') {
cout << "*** A jumped square must have an opponent. ";
return true;
}
}
return false;
}
int main() {
// Initial Board Setup
string board = "XX OO";
int source, destination;
int moveNumber = 1;
// Setup the intial board state, as a "move" that we can return to
struct move* currentMove = new struct move;
currentMove->moveNum = moveNumber;
currentMove->board = board;
currentMove->priorMove = nullptr;
// Display identifying information, the instructions, and the initial board
displayIdentifyingInformation();
displayInstructions();
displayBoard(currentMove);
// Game play loop
while(notDone(board)) {
promptForAndGetMove(board, moveNumber, source, destination, currentMove);
if( moveNotValid(board, source, destination)) {
cout << "Invalid move, please retry. \n";
continue;
}
// Make move. Note that no move validation is being done.
board[destination] = board[source];
board[source] = ' ';
moveNumber++;
addNewMove(moveNumber, board, currentMove);
displayBoard(currentMove);
}
// freeMovesMemory(currentMove);
cout << "Congratulations, you did it!" << endl << endl;
cout << "Exiting program ...\n";
return 0;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.