blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 5
140
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 905
values | visit_date
timestamp[us]date 2015-08-09 11:21:18
2023-09-06 10:45:07
| revision_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-17 19:19:19
| committer_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-06 06:22:19
| github_id
int64 3.89k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-07 00:51:45
2023-09-14 21:58:39
⌀ | gha_created_at
timestamp[us]date 2008-03-27 23:40:48
2023-08-21 23:17:38
⌀ | gha_language
stringclasses 141
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
10.4M
| extension
stringclasses 115
values | content
stringlengths 3
10.4M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
158
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3d8cc73a8b914d36bec85ac431a29dec2db5f721 | a39c53a90833972e162944c109bd1c735ffe886e | /1_ CS-2420-601/1_Projects/Project 2/CS-2420_Program_2_RCA_V3.0/CS-2420_Program_2_RCA_V3.0/SingleList.cpp | 2b9fee67a172f8c52aa2dc9760996687c4f8177a | [] | no_license | Zamzee/1_SPRING-2015 | b3316642af662d2998e6ce4fe175b5c8c4091d1d | 390a719509d589c074d304fc1fb5c9d0e851abd6 | refs/heads/master | 2021-01-10T19:00:05.290201 | 2015-04-18T18:22:12 | 2015-04-18T18:22:12 | 29,507,793 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,230 | cpp | /////////////////////////////////////////
// File Prologue
// Author: Russell Andlauer
// Class: CS-2420-601
// Project: Program 2 - Linked Lists
// Date Last Modified: February 5th, 2015
/////////////////////////////////////////
#include "SingleList.h"
SingleList::SingleList()
{
Node* head = nullptr;
int count = 0;
}
SingleList::~SingleList()
{
Node* p = nullptr;
p = head;
while (p != nullptr)
{
p = head->rhLink;
delete head;
head = p;
count = 0;
}
}
void SingleList::insert(int inputNum)
{
Node* p = nullptr;
Node* q = new Node(inputNum);
// If new Node is the first Node in the SingleList
if (head == nullptr)
{
head = q;
head->rhLink = nullptr;
}
// If new Node is not the first Node in the SingleList
else
{
p = head;
while (p->rhLink != nullptr)
{
p = p->rhLink;
}
p->rhLink = q;
q->rhLink = nullptr;
}
// Increment count by one for the new Node
count++;
}
void SingleList::traverse()
{
if (head == nullptr)
cout << "The list is empty";
else
{
Node* p;
p = head;
while (p != nullptr)
{
p = p->rhLink;
}
}
}
void SingleList::traversePrint(void(*visit)(Node* p))
{
Node* p;
p = head;
while (p != nullptr)
{
(*visit)(p);
p = p->rhLink;
}
} | [
"[email protected]"
] | |
67d6ffb31aca2c67cd6579f79e83dd4389119e33 | 28aeecd4968c3285f46bc5428814e7a1cac22587 | /pmdk-include/libpmemobj++/install/include/libpmemobj++/utils.hpp | 8e0a058f699d0b5934a3868eb6cb37753f0ac798 | [
"BSD-2-Clause"
] | permissive | GlitterIsMe/rocksdb-pmdk | 740c9ce5c5fe815697e4564d33dea7f80bab7276 | c50f32fca8e94334d343fb97a7489090e4d3bb4a | refs/heads/master | 2020-04-05T14:49:24.758032 | 2018-11-10T12:29:37 | 2018-11-10T12:29:37 | 156,942,170 | 0 | 0 | BSD-2-Clause | 2019-07-15T07:31:42 | 2018-11-10T03:03:22 | C++ | UTF-8 | C++ | false | false | 2,886 | hpp | /*
* Copyright 2016-2017, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @file
* Libpmemobj C++ utils.
*/
#ifndef LIBPMEMOBJ_UTILS_HPP
#define LIBPMEMOBJ_UTILS_HPP
#include "libpmemobj++/detail/pexceptions.hpp"
#include "libpmemobj++/persistent_ptr.hpp"
#include "libpmemobj/base.h"
namespace pmem
{
namespace obj
{
/**
* Retrieve pool handle for the given pointer.
*
* @param[in] that pointer to an object from a persistent memory pool.
*
* @return handle to the pool containing the object.
*
* @throw pool_error if the given pointer does not belong to an open pool.
*/
template <typename T>
inline pool_base
pool_by_vptr(const T *that)
{
auto pop = pmemobj_pool_by_ptr(that);
if (!pop)
throw pool_error("Object not in an open pool.");
return pool_base(pop);
}
/**
* Retrieve pool handle for the given persistent_ptr.
*
* @param[in] ptr pointer to an object from a persistent memory pool.
*
* @return handle to the pool containing the object.
*
* @throw pool_error if the given pointer does not belong to an open pool.
*/
template <typename T>
inline pool_base
pool_by_pptr(const persistent_ptr<T> ptr)
{
auto pop = pmemobj_pool_by_oid(ptr.raw());
if (!pop)
throw pool_error("Object not in an open pool.");
return pool_base(pop);
}
} /* namespace obj */
} /* namespace pmem */
#endif /* LIBPMEMOBJ_UTILS_HPP */
| [
"[email protected]"
] | |
11cfaf49e5d6c820c963cc8df9110cd4b82f4e3f | 1d7ab0a15d66449b00b11687cf8f5a5e4cf4c3a3 | /Game/zNPCTypeBossSB2.cpp | 3b567c77e704bb1718f96592b901609b7d9c33a2 | [] | no_license | seilweiss/bfbbpc-old | 5be41b728cc9b5f21af655226efbb5a94fd1a3ce | 0459d01f9fa33cc46b5247399e3d2aab9b38e09e | refs/heads/master | 2023-03-04T01:47:58.869582 | 2020-07-20T02:41:49 | 2020-07-20T02:41:49 | 258,961,400 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 144 | cpp | #include "zNPCTypeBossSB2.h"
#include "print.h"
xAnimTable *ZNPC_AnimTable_BossSB2()
{
BFBBSTUB("ZNPC_AnimTable_BossSB2");
return 0;
} | [
"[email protected]"
] | |
79518f83fae895c7cc40f00455c42188b0242355 | 4a158febef59077abb201c7ed658892d2c6507f9 | /Spatial/impl/Container.cpp | 9db155f0bf4baed371b70cbc73e420e2ce3130ba | [] | no_license | hard7/boostGeometryDemo | bb3ba0995f422ebc6d04e8bbc4a0f9520e74290b | ca60554fc2d2fca542885ccc3d001a4df1bdb05f | refs/heads/master | 2021-01-10T11:03:36.129215 | 2016-08-16T04:51:40 | 2016-08-16T04:51:40 | 55,776,200 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,754 | cpp | #include "../Container.h"
#include "box.h"
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/register/point.hpp>
#include <boost/geometry/geometries/register/box.hpp>
#include <boost/range/adaptor/indexed.hpp>
#include <boost/range/adaptor/transformed.hpp>
#include <boost/geometry/algorithms/intersection.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/numeric/conversion/cast.hpp>
#include <memory>
#include <boost/iterator/counting_iterator.hpp>
#include <list>
#include <tuple>
#include <set>
#include <unordered_set>
#include "stream/box.h" //FIXME DELETE
#include "stream/point.h" //FIXME DELETE
#include "algo_box.h"
#include "stream/box.h"
namespace bg = boost::geometry;
namespace bgi = boost::geometry::index;
typedef Spatial::Component::Point Point;
typedef Spatial::Component::Box Box;
BOOST_GEOMETRY_REGISTER_POINT_3D_GET_SET(Point, Point::type, boost::geometry::cs::cartesian, x, y, z, x, y, z)
BOOST_GEOMETRY_REGISTER_BOX(Box, Point, lo(), hi())
namespace {
// Define a function object converting a value_type of indexed Range into std::pair<>.
// This is a generic implementation but of course it'd be possible to use some
// specific types. One could also take Value as template parameter and access
// first_type and second_type members, etc.
template <typename First, typename Second>
struct pair_maker {
typedef std::pair<First, Second> result_type;
template<typename T>
inline result_type operator()(T const& v) const {
return result_type(v.value(), v.index());
}
};
}
namespace {
struct Donor {
typedef std::set<Spatial::Component::BoxId> Links;
Box box;
Links links;
Donor(Box const box_, Links const& links_) : box(box_), links(links_) {}
};
struct DonorMaker {
Donor::Links& links;
DonorMaker(Donor::Links& links_) : links(links_) {}
Donor operator()(Box const& box) { return Donor(box, links); }
};
} // namespace {anonymous}
namespace Spatial {
struct Container::Impl {
typedef unsigned int BorderWidth;
typedef std::pair<Box, int> Value;
typedef bgi::rtree< Value, bgi::dynamic_quadratic> Rtree;
typedef std::map<BoxId, BoxId> ProjectionIm;
_implContainer container;
const std::vector<Box> boxes;
std::vector<Box> boxesIm;
BorderWidth borderWidth;
ProjectionIm projectionIm;
std::size_t realBoxCount;
mutable std::map<std::pair<BoxId, BorderWidth>, Component::OutputExchange::Collection> cachedOutput;
mutable std::map<std::pair<BoxId, BorderWidth>, Component::InputExchange::Collection> cachedInput;
std::map<BoxId, Component::BoxIdCollection> spatialNeighbor, trueNeighbor;
Impl(Config const& config) : boxes(std::move(config.boxes)) {
realBoxCount = boxes.size();
borderWidth = config.borderWidth;
std::tie(boxesIm, projectionIm) = findImaginaryBoxes(boxes, config.periodic);
initNeighbors();
}
bool isRealBoxId(BoxId boxId) const {
if(boxId < 0) throw std::logic_error("boxId < 0");
return static_cast<std::size_t>(boxId) < realBoxCount;
}
bool isImaginaryBoxId(BoxId boxId) const { return not isRealBoxId(boxId); }
Box const& getBox(BoxId boxId) const {
if(isRealBoxId(boxId)) return boxes.at(boost::numeric_cast<std::size_t>(boxId));
else return boxesIm.at(boost::numeric_cast<std::size_t>(boxId - realBoxCount));
}
private:
static void sanityCheck(Rtree const& rtree, Boxes const& boxes) {
Box common;
std::set<Box, Box::LexCompare> uniqueCheck;
for(Box const& box : boxes) {
if(not uniqueCheck.insert(box).second) throw std::logic_error("Fail sanityCheck (duplicate)");
for(Value const &v : rtree | bgi::adaptors::queried(bgi::intersects(box) and not bgi::covered_by(box))) {
if(bg::intersection(box, v.first, common) and common.volume() > 0) throw std::logic_error("Fail sanityCheck (intersection)");
}
}
}
void initNeighbors() {
int count = 0;
Rtree rtree_( bgi::dynamic_quadratic( boxes.size() + boxesIm.size() ));
for (Box const& box : boxes) rtree_.insert(std::make_pair(box, count++));
for (Box const& box : boxesIm) rtree_.insert(std::make_pair(box, count++));
count = 0;
for (Box const& box : boxes) spatialNeighbor.insert(Impl::findSpatialNeighborPair(rtree_, box, count++));
for (Box const& box : boxesIm) spatialNeighbor.insert(Impl::findSpatialNeighborPair(rtree_, box, count++));
BoxId boxId;
Component::BoxIdCollection links;
for(auto const& neighbor : spatialNeighbor) {
std::tie(boxId, links) = neighbor;
if(isImaginaryBoxId(boxId)) continue;
std::unordered_set<BoxId> unique_;
std::transform(std::begin(links), std::end(links), std::inserter(unique_, std::end(unique_)), [this](BoxId id) {
return isRealBoxId(id) ? id : projectionIm.at(id);
});
trueNeighbor.insert(std::make_pair(boxId, Component::BoxIdCollection(std::begin(unique_), std::end(unique_))));
}
}
public:
static
std::pair< Boxes, ProjectionIm > findImaginaryBoxes(Boxes const& boxesRe, Config::Periodic per) {
Rtree rtree_( bgi::dynamic_quadratic( boxesRe.size() ));
for(std::size_t i=0; i<boxesRe.size(); ++i) rtree_.insert(std::make_pair(boxesRe.at(i), i));
sanityCheck(rtree_, boxesRe);
auto range_ = [](bool periodic) -> std::vector<int> {
if(periodic) return { -1, 0, 1 }; else return {0};
};
Box bounds;
boost::geometry::convert(rtree_.bounds(), bounds);
Point boundsNorm = bounds.hi() - bounds.lo();
Boxes boxesIm_;
ProjectionIm projectionIm;
std::size_t index = boxesRe.size();
for(int k : range_(per.byZ)) {
for(int j : range_(per.byY)) {
for(int i : range_(per.byX)) {
if(i or j or k) {
Point offset = boundsNorm * Point(i, j, k);//fix
Box stick = sticking(bounds, offset);
for(Value const& value : rtree_ | bgi::adaptors::queried(bgi::intersects(stick))) {
boxesIm_.push_back(value.first - offset);
projectionIm.insert(std::make_pair(index++, value.second));
}
}
}
}
}
return std::make_pair(boxesIm_, projectionIm);
}
static Box expand(Box const& box, int expandValue) {
Point lo(box.lo().x() - expandValue, box.lo().y() - expandValue, box.lo().z() - expandValue);
Point hi(box.hi().x() + expandValue, box.hi().y() + expandValue, box.hi().z() + expandValue);
return Box(lo, hi);
}
static Box makeBox() {
return Box(Point(0,0,0), Point(0,0,0));
}
static Box trueIntersection(Box const& box1, Box const& box2) throw (std::logic_error) {
Box result = makeBox();
bool isIntersected = boost::geometry::intersection(box1, box2, result);
if(not isIntersected or result.volume() <= 0) {
throw std::logic_error("Bad intersection");
}
return result;
}
Component::BoxIdCollection const& getNeighbors(BoxId boxId) const {
return trueNeighbor.at(boxId);
}
Component::BoxIdCollection const& getSpatialNeighbors(BoxId boxId) const {
return spatialNeighbor.at(boxId);
}
Component::InputExchange::Collection const& getInputExchange(BoxId boxId, unsigned int width) const {
auto key = std::make_pair(boxId, width);
auto found = cachedInput.find(key);
if(found != std::end(cachedInput)) return found->second;
else {
cachedInput.insert(std::make_pair(key, findInputExchange(boxId, width)));
return cachedInput.at(key);
}
}
Component::OutputExchange::Collection const& getOutputExchange(BoxId boxId, unsigned int width) const {
auto key = std::make_pair(boxId, width);
auto found = cachedOutput.find(key);
if(found != std::end(cachedOutput)) return found->second;
else {
cachedOutput.insert(std::make_pair(key, findOutputExchange(boxId, width)));
return cachedOutput.at(key);
}
}
private:
static Component::BoxIdCollection findSpatialNeighbor(Rtree const &rtree, Box const &target) {
Component::BoxIdCollection result;
for(Value const& v : rtree | bgi::adaptors::queried(bgi::intersects(target) and not bgi::covered_by(target))) {
result.push_back(v.second);
}
return result;
}
static
std::pair<BoxId, Component::BoxIdCollection> findSpatialNeighborPair(Rtree const& rtree, Box const& box, BoxId id) {
return std::make_pair(id, Impl::findSpatialNeighbor(rtree, box));
}
Component::InputExchange::Collection findInputExchange(BoxId boxId, unsigned int width) const {
Component::InputExchange::Collection result;
for(BoxId neighborBoxId : getNeighbors(boxId)) {
for(Component::OutputExchange const& output : getOutputExchange(neighborBoxId, width)) {
// Component::BoxIdCollection::const_iterator found = std::find(std::begin(output.destinations), std::end(output.destinations), boxId);
Component::DestinationCollection const& dst = output.destinations;
Component::DestinationCollection::const_iterator found;
found = std::find_if(std::begin(dst), std::end(dst), [boxId](Component::Destination const& d) { return boxId == d.destinationId; });
if(found != std::end(output.destinations)) result.push_back( /*(Component::InputExchange) */{found->ghost, output.donor, neighborBoxId});
}
}
return result;
}
Component::OutputExchange::Collection findOutputExchange(BoxId boxId, unsigned int width) const {
using std::begin;
using std::end;
Box current = getBox(boxId);
Component::OutputExchange::Collection result;
std::list<Donor> donors;
for(BoxId neighborBoxId : getSpatialNeighbors(boxId)) {
Box neighbor = getBox(neighborBoxId);
Box expandedNeighbor = Impl::expand(neighbor, width);
Box donorBox = Impl::trueIntersection(current, expandedNeighbor);
donors.push_back({donorBox, {neighborBoxId}});
}
typedef std::list<Donor>::iterator iter;
for(iter i=begin(donors); i!=end(donors); ++i) {
for(iter j= ++iter(i); j!=end(donors); /* ++j */) {
Box& iBox = i->box, & jBox = j->box;
if(iBox == jBox) {
i->links.insert(begin(j->links), end(j->links));
j = donors.erase(j);
continue;
}
Box common;
bg::intersection(iBox, jBox, common);
if(common.volume() > 0) {
std::vector<Box> iSp = CommonCase::split(iBox, common);
std::transform(begin(iSp), end(iSp), std::inserter(donors, ++iter(i)), DonorMaker(i->links));
i = donors.erase(i);
std::vector<Box> jSp = CommonCase::split(jBox, common);
std::transform(begin(jSp), end(jSp), std::inserter(donors, ++iter(j)), DonorMaker(j->links));
j = donors.erase(j);
continue;
}
++j;
}
}
assert(isRealBoxId(boxId));
result.reserve(donors.size());
std::transform(begin(donors), end(donors), std::back_inserter(result), [this](Donor const& donor) {
Component::DestinationCollection dst;
dst.reserve(donor.links.size());
for(BoxId linkId : donor.links) {
if(isRealBoxId(linkId)) dst.push_back({donor.box, linkId});
else dst.push_back({projectImaginaryBox(donor.box, linkId), projectionIm.at(linkId)});
}
Component::OutputExchange ex = { donor.box, std::move(dst) };
return ex;
});
return result;
}
private:
Box projectImaginaryBox(Box const& target, BoxId imId) const {
BoxId reId = projectionIm.at(imId);
Box imBox = getBox(imId), reBox = getBox(reId);
Point offset = reBox.lo() - imBox.lo();
return target + offset;
}
};
//----------------------------------------------------------------------------------------------------------------------
Container::Container(Boxes const& boxes) : Container(Config(boxes)) {}
Container::Container(Boxes && boxes) : Container(Config(std::move(boxes))) {} // may be move running implicitly
Container::Container(Config const& config) : impl(new Impl(config)) {
std::size_t size = impl->boxes.size();
impl->container.reserve(size);
for(std::size_t i=0; i<size; ++i) {
impl->container.push_back(Component(*this, boost::numeric_cast<int>(i)));
}
}
Box const& Container::getBox(BoxId boxId) const {
return impl->getBox(boxId);
}
Component::BoxIdCollection const& Container::getNeighbors(BoxId boxId) const { return impl->getNeighbors(boxId); }
Component::InputExchange::Collection const& Container::getInputExchange(BoxId boxId) const {
return impl->getInputExchange(boxId, impl->borderWidth);
}
Component::InputExchange::Collection const& Container::getInputExchange(BoxId boxId, unsigned int width) const {
return impl->getInputExchange(boxId, width);
}
Component::OutputExchange::Collection const& Container::getOutputExchange(BoxId boxId) const {
return impl->getOutputExchange(boxId, impl->borderWidth);
}
Component::OutputExchange::Collection const& Container::getOutputExchange(BoxId boxId, unsigned int width) const {
return impl->getOutputExchange(boxId, width);
}
Container::iterator Container::begin() { return impl->container.begin(); }
Container::iterator Container::end() { return impl->container.end(); }
Container::const_iterator Container::begin() const { return impl->container.cbegin(); }
Container::const_iterator Container::end() const { return impl->container.cend(); }
Container::const_iterator Container::cbegin() const { return impl->container.cbegin(); }
Container::const_iterator Container::cend() const { return impl->container.cend(); }
} // namespace Spatial | [
"[email protected]"
] | |
b56e7dd75b356f637b7a0cca1b9f21063d5d966c | 1998ec53473d93b6d38fe83469a2f6d610c98e34 | /ARFinal/Temp/il2cppOutput/il2cppOutput/Generics2.cpp | 720eede9e07f15a796224981008e907494365547 | [] | no_license | obrana/carParking | 3342e8a7d7306f309c8dd6cf526795e7b4b5eb43 | 6d21838b685b2f4cbaaafe0e4f07200f3342f2b9 | refs/heads/master | 2020-11-25T14:39:11.035971 | 2019-12-17T23:37:22 | 2019-12-17T23:37:22 | 228,719,536 | 0 | 0 | null | 2019-12-17T23:37:23 | 2019-12-17T23:31:43 | null | UTF-8 | C++ | false | false | 1,561,567 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>[]
struct LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>
struct ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F;
// System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>
struct ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5;
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332;
// System.Collections.Generic.Comparer`1<System.Int32>
struct Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2;
// System.Collections.Generic.Comparer`1<System.Int32Enum>
struct Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC;
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7;
// System.Collections.Generic.Comparer`1<System.UInt64>
struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC;
// System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8;
// System.Collections.Generic.Comparer`1<UnityEngine.Color32>
struct Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC;
// System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>
struct Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7;
// System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>
struct Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957;
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>
struct Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA;
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>
struct Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647;
// System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>
struct Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD;
// System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>
struct Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126;
// System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>
struct Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0;
// System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B;
// System.Collections.Generic.Comparer`1<UnityEngine.Vector2>
struct Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F;
// System.Collections.Generic.Comparer`1<UnityEngine.Vector3>
struct Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D;
// System.Collections.Generic.Comparer`1<UnityEngine.Vector4>
struct Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6;
// System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>
struct Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF;
// System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[]
struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>[]
struct EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[]
struct EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[]
struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[]
struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[]
struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Single>[]
struct EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>
struct KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>
struct KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Boolean>
struct KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>
struct KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>
struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>
struct KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Single>
struct KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>
struct ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>
struct ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean>
struct ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>
struct ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>
struct ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>
struct ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Single>
struct ValueCollection_tD451EABA6EF02C05DCAB503218EE673B4607CAAA;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884;
// System.Collections.Generic.Dictionary`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>
struct Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B;
// System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>
struct Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B;
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32>
struct Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>
struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6;
// System.Collections.Generic.Dictionary`2<System.Object,System.Single>
struct Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_tFF77EB203CF12E843446A71A6581145AB929D681;
// System.Collections.Generic.IComparer`1<System.UInt64>
struct IComparer_1_t7E1CC88723F5E5E455D1F3D16DB58DCF4B173316;
// System.Collections.Generic.IComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct IComparer_1_t8CAEE6758AF945843D758BD3DF5A1ADC2FD66EA8;
// System.Collections.Generic.IComparer`1<UnityEngine.Vector2>
struct IComparer_1_t40E24BDF6AD8C93DFE645984FD6A35A016BA21A1;
// System.Collections.Generic.IComparer`1<UnityEngine.Vector3>
struct IComparer_1_t19801D660A63EB23ADEE44DCDD9208D172E6DC26;
// System.Collections.Generic.IComparer`1<UnityEngine.Vector4>
struct IComparer_1_t6A7119E06BD5FB50F325A954ADBC51DF2881D3F0;
// System.Collections.Generic.IComparer`1<UnityEngine.XR.iOS.ARHitTestResult>
struct IComparer_1_t6B74233E7CED0C480FE500A174578F05B9C7A86F;
// System.Collections.Generic.IComparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct IComparer_1_t4CB30A1FB1B44D4C5CDC5840602F4F2FC4CB60F3;
// System.Collections.Generic.IEnumerator`1<Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>
struct IEnumerator_1_t33F5C0359EC6C3F43D15EFC822D3D9570CCB9FD5;
// System.Collections.Generic.IEnumerator`1<System.Boolean>
struct IEnumerator_1_t79DBAD8EFA3332B8CE0D7CBEF6F1AC175331AC38;
// System.Collections.Generic.IEnumerator`1<System.Int32>
struct IEnumerator_1_t7348E69CA57FC75395C9BBB4A9FBB33953F29F27;
// System.Collections.Generic.IEnumerator`1<System.Object>
struct IEnumerator_1_tDDB69E91697CCB64C7993B651487CEEC287DB7E8;
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0;
// System.Collections.Generic.LinkedListNode`1<System.Object>
struct LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683;
// System.Collections.Generic.List`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352;
// System.Comparison`1<UnityEngine.Vector2>
struct Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC;
// System.Comparison`1<UnityEngine.Vector3>
struct Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9;
// System.Comparison`1<UnityEngine.Vector4>
struct Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178;
// System.Comparison`1<UnityEngine.XR.iOS.ARHitTestResult>
struct Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592;
// System.Comparison`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Exception
struct Exception_t;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F;
// System.String
struct String_t;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
// UnityEngine.XR.iOS.ARHitTestResult[]
struct ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588;
// UnityEngine.XR.iOS.UnityARVideoFormat[]
struct UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
IL2CPP_EXTERN_C String_t* _stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1;
IL2CPP_EXTERN_C String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A;
IL2CPP_EXTERN_C String_t* _stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC;
IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA;
IL2CPP_EXTERN_C String_t* _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8;
IL2CPP_EXTERN_C String_t* _stringLiteralC363992023785AF013BBCF2E20C19D9835184F82;
IL2CPP_EXTERN_C String_t* _stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1;
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
IL2CPP_EXTERN_C String_t* _stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6;
IL2CPP_EXTERN_C String_t* _stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049;
IL2CPP_EXTERN_C String_t* _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_BinarySearch_m0B2F9D6EA76D97A87A36FF3F703176BA891689CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_BinarySearch_mAFDC6BE6CD24B04B18C2D2951AB6ADDC8F6F9647_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_BinarySearch_mBC1D837D4E9F0E9FD14B1B5E3E96A8F7D12C29B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_BinarySearch_mCA08144B82033D4C9FFC6E51E2226DC28E20BA9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_BinarySearch_mCB24D2D0F36BE5C42952DF4E1A65966667330CB4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_BinarySearch_mF56641C9B8DC52B271D9BC737243940591B7B5DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m0FBECB30D64BE2FFE97C762E9EB82D4EA8A9D259_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m1A7130392EE383B614830B46679DC48443DD1D27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m1BF12B97FAEFBE2F06A5475A166183F820D492C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m20AC4539CFE4FB2D2C74C07379BDC633C52D020D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m2EDBEB7CCB015F07F54E95A321A0745AA443D5A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m450BEF3CAA3C9C629B8A72559F7F183ABC870C05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m6B36A47612F2102125B3B576942122DF87FC735B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_m7D0B63037D4CE7077F5656A8EE7C57CE626E07F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_mADEE5FBCAD715C00E3A268DD78F013F8723D63AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_mB19B2789C2E22F686C4625BE148FA1042DA71935_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_mC1043B732F0D449BC8989C1C051DCA9F379A4801_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_Sort_mEDEEC98ECFC836B58336F04CB3AE53E650E5FE8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_2_Sort_m54990056CBDEC54715AFEF54BF5698F41F0E82DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_2_Sort_mB1F0BA2E8984A2AB76EF0E14F5209EF253AFDAC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m011399A990F1B60614792C55FA517C8C5C348621_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m356D5D2DB51CF06720A0672A46E2F5AFB7ACA766_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EF13B62B1B96235F45F77ECD55E9C3FEB74C721_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA49953C56CCB65B52D0E24185255CF0510C46634_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBB30355EF8489BC568DD0615FE5227D8CF62E03F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0A3961005F1ABED70A20D9A614021A251B05584B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m238A8E4DEC276B807DA996D7517D8DA3689738AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5971032670683B699DFB6F56C420554D7096B392_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7C39842B1F0FD7FDF2F4B444D5068D3EE577F52D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFC3934EF50E09E6F21286FEC2381DE7E0F43F609_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m170E98680AF4B51125414A6CA83E0AE1839D4836_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m4E4EEC8755B96363256140D7A3DD441F5091D413_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA1709A1BBF9863255F7CA4E87DD443CF8A24259F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mB6A5CA12D9CD0101F276E58857685346F5160F39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mE46B00F19F8002836D0393A72B25D229BDF2D723_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m136DAA7D2947B79A3D74F1FD48FF7E08AAF28582_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m537360965E59036350F5F2181D5D655D6C9A6C14_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_m96B63C4B04F318F6D271E8EFACF092C9E48FC11E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mDFE89FD8E5C0BFCECE10B34B4A1E8E730AB75E09_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection__ctor_mFE12A7A21ECF0C78EC9E7C1AA9048327D5E42207_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_BinarySearch_m0B2F9D6EA76D97A87A36FF3F703176BA891689CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_BinarySearch_mAFDC6BE6CD24B04B18C2D2951AB6ADDC8F6F9647_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_BinarySearch_mBC1D837D4E9F0E9FD14B1B5E3E96A8F7D12C29B4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_BinarySearch_mCA08144B82033D4C9FFC6E51E2226DC28E20BA9E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_BinarySearch_mCB24D2D0F36BE5C42952DF4E1A65966667330CB4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_BinarySearch_mF56641C9B8DC52B271D9BC737243940591B7B5DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m0FBECB30D64BE2FFE97C762E9EB82D4EA8A9D259_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m1A7130392EE383B614830B46679DC48443DD1D27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m1BF12B97FAEFBE2F06A5475A166183F820D492C7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m20AC4539CFE4FB2D2C74C07379BDC633C52D020D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m2EDBEB7CCB015F07F54E95A321A0745AA443D5A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m450BEF3CAA3C9C629B8A72559F7F183ABC870C05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m6B36A47612F2102125B3B576942122DF87FC735B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_m7D0B63037D4CE7077F5656A8EE7C57CE626E07F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_mADEE5FBCAD715C00E3A268DD78F013F8723D63AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_mB19B2789C2E22F686C4625BE148FA1042DA71935_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_mC1043B732F0D449BC8989C1C051DCA9F379A4801_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_1_Sort_mEDEEC98ECFC836B58336F04CB3AE53E650E5FE8B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_2_Sort_m54990056CBDEC54715AFEF54BF5698F41F0E82DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArraySortHelper_2_Sort_mB1F0BA2E8984A2AB76EF0E14F5209EF253AFDAC5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m0971B717CA3EA4879CB21FC78AAE149609D1658B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m0981F31B27E0D6D3CDE93A934CB2DC06AB51AB99_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m26298799E544D9EE595C576C45AA43266EBB2AE1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m353C887DC5F3B65AE0D85C08133AFEBA424104E0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m459C575628E47F5D7EAEFCB509217DD5D7B00217_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m4D23405F354814416B853C0435F25E41015BFC7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m4EAA1F6847DBC63EB76C0EA6643D0D501F908F37_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m52E5550AD296A1AEB71FA4300DF1CE3623BB6850_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m61F0FF73BEA955B76532DCD396B49D177FA6A59D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_m6C161D2E7ED7B604A2A7440A27AF3EFDE37FEE07_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mA4EDBC3EC0A558AAC4789F4C4DE4AFA62F9ABDF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mA54B74916770EF33EB14F698F93559506476FFC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mA8227022D1B3D587884CF44EB1208B4D4548EA55_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mB02598C6B5A9E306A8D2B3D6A04A4506848EC53D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mB54FA5E6B35FE9B57D04C888F464BCBE366E4F61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mC1A37E6DF1F157F836AEC75EDEAB79A70A06017D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mCE652C0BA2B90B68B6B05326371085D9FC0908DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mD4B73E502CC5A01C9D7D13942911DDFE92310344_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mF3F0F28977DF64F7FB115EC00BBDEAE25B47D9E4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_1_CreateComparer_mFF22DD81E3F312F716EF363ED21C8F67B7D7EAEC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m011399A990F1B60614792C55FA517C8C5C348621_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m356D5D2DB51CF06720A0672A46E2F5AFB7ACA766_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EF13B62B1B96235F45F77ECD55E9C3FEB74C721_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA49953C56CCB65B52D0E24185255CF0510C46634_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBB30355EF8489BC568DD0615FE5227D8CF62E03F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0A3961005F1ABED70A20D9A614021A251B05584B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m238A8E4DEC276B807DA996D7517D8DA3689738AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5971032670683B699DFB6F56C420554D7096B392_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7C39842B1F0FD7FDF2F4B444D5068D3EE577F52D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFC3934EF50E09E6F21286FEC2381DE7E0F43F609_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m170E98680AF4B51125414A6CA83E0AE1839D4836_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m4E4EEC8755B96363256140D7A3DD441F5091D413_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA1709A1BBF9863255F7CA4E87DD443CF8A24259F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mB6A5CA12D9CD0101F276E58857685346F5160F39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mE46B00F19F8002836D0393A72B25D229BDF2D723_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m136DAA7D2947B79A3D74F1FD48FF7E08AAF28582_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m537360965E59036350F5F2181D5D655D6C9A6C14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_m96B63C4B04F318F6D271E8EFACF092C9E48FC11E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mDFE89FD8E5C0BFCECE10B34B4A1E8E730AB75E09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ValueCollection__ctor_mFE12A7A21ECF0C78EC9E7C1AA9048327D5E42207_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285;
struct EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12;
struct EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F;
struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9;
struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6;
struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4;
struct EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
struct ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588;
struct UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct ArraySortHelper_1_tD35B97A65EC42619B197F14012FA4F719475A6DC : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>
struct ArraySortHelper_1_t54A42045A69C5FF4981B17B837BB0CEDE36BF4EB : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>
struct ArraySortHelper_1_t6EE73C70E86A29CF7D4CEDA8BCA95E00F48E1A00 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>
struct ArraySortHelper_1_t79BFFFF71C271762889D172AD0D2E47698893F56 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>
struct ArraySortHelper_1_tCA05CE9989BEB980EDD7850BF0AEBF5FE8C76B51 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct ArraySortHelper_1_t9E4DE375FC5ECB9C5299356A7E933108A49AF1FE : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>
struct ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F : public RuntimeObject
{
public:
public:
};
struct ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F_StaticFields
{
public:
// System.Collections.Generic.ArraySortHelper`2<TKey,TValue> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.ArraySortHelper`2::s_defaultArraySortHelper
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * ___s_defaultArraySortHelper_0;
public:
inline static int32_t get_offset_of_s_defaultArraySortHelper_0() { return static_cast<int32_t>(offsetof(ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F_StaticFields, ___s_defaultArraySortHelper_0)); }
inline ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * get_s_defaultArraySortHelper_0() const { return ___s_defaultArraySortHelper_0; }
inline ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F ** get_address_of_s_defaultArraySortHelper_0() { return &___s_defaultArraySortHelper_0; }
inline void set_s_defaultArraySortHelper_0(ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * value)
{
___s_defaultArraySortHelper_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_defaultArraySortHelper_0), (void*)value);
}
};
// System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>
struct ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 : public RuntimeObject
{
public:
public:
};
struct ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5_StaticFields
{
public:
// System.Collections.Generic.ArraySortHelper`2<TKey,TValue> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.ArraySortHelper`2::s_defaultArraySortHelper
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * ___s_defaultArraySortHelper_0;
public:
inline static int32_t get_offset_of_s_defaultArraySortHelper_0() { return static_cast<int32_t>(offsetof(ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5_StaticFields, ___s_defaultArraySortHelper_0)); }
inline ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * get_s_defaultArraySortHelper_0() const { return ___s_defaultArraySortHelper_0; }
inline ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 ** get_address_of_s_defaultArraySortHelper_0() { return &___s_defaultArraySortHelper_0; }
inline void set_s_defaultArraySortHelper_0(ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * value)
{
___s_defaultArraySortHelper_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_defaultArraySortHelper_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Int32>
struct Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Int32Enum>
struct Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.Object>
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<System.UInt64>
struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>
struct Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Color32>
struct Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>
struct Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>
struct Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>
struct Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>
struct Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>
struct Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>
struct Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>
struct Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Vector2>
struct Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Vector3>
struct Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.Vector4>
struct Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>
struct Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF : public RuntimeObject
{
public:
public:
};
struct Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 : public RuntimeObject
{
public:
public:
};
struct Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012_StaticFields
{
public:
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012_StaticFields, ___defaultComparer_0)); }
inline Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.DictionaryKeyCollectionDebugView`2<System.Object,System.Object>
struct DictionaryKeyCollectionDebugView_2_tE2001632545DCAD157DB38A935C22828ADC0F9C1 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.DictionaryValueCollectionDebugView`2<System.Object,System.Object>
struct DictionaryValueCollectionDebugView_2_t5DCBD0123990B14CCEBB185ABC79008B8975E930 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Int32,System.Object>
struct KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A, ___dictionary_0)); }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9, ___dictionary_0)); }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Boolean>
struct KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98, ___dictionary_0)); }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Int32>
struct KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E, ___dictionary_0)); }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Object>
struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C, ___dictionary_0)); }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Resources.ResourceLocator>
struct KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92, ___dictionary_0)); }
inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_KeyCollection<System.Object,System.Single>
struct KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94, ___dictionary_0)); }
inline Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>
struct ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913, ___dictionary_0)); }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676, ___dictionary_0)); }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>
struct ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5, ___dictionary_0)); }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>
struct ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7, ___dictionary_0)); }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>
struct ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14, ___dictionary_0)); }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___entries_1)); }
inline EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___keys_7)); }
inline KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ___values_8)); }
inline ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * get_values_8() const { return ___values_8; }
inline ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___entries_1)); }
inline EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___keys_7)); }
inline KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t82CD8BF85EAF120FF51D2462E206D60B8CBA61D9 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ___values_8)); }
inline ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * get_values_8() const { return ___values_8; }
inline ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Object,System.Boolean>
struct Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___entries_1)); }
inline EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___keys_7)); }
inline KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tD13ABA7438BCD619D7E14E225678BE0085397C98 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ___values_8)); }
inline ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * get_values_8() const { return ___values_8; }
inline ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32>
struct Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___entries_1)); }
inline EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___keys_7)); }
inline KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tEECFF3D52DBAFA05FAD1589D36F0A8EEF9E2670E * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ___values_8)); }
inline ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * get_values_8() const { return ___values_8; }
inline ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___entries_1)); }
inline EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___keys_7)); }
inline KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ___values_8)); }
inline ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * get_values_8() const { return ___values_8; }
inline ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>
struct Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___entries_1)); }
inline EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___keys_7)); }
inline KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tB62DC24DEF9A9DC0EE67965814F53091651CAE92 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ___values_8)); }
inline ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * get_values_8() const { return ___values_8; }
inline ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t32E4BA93A6E2E9AC038396EC46CDBA2BAE42AF4B * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.Object,System.Single>
struct Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tD451EABA6EF02C05DCAB503218EE673B4607CAAA * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___entries_1)); }
inline EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___keys_7)); }
inline KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t7F7B039AA360BDBEDF51F3287F471AE1BE0BBE94 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ___values_8)); }
inline ValueCollection_tD451EABA6EF02C05DCAB503218EE673B4607CAAA * get_values_8() const { return ___values_8; }
inline ValueCollection_tD451EABA6EF02C05DCAB503218EE673B4607CAAA ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tD451EABA6EF02C05DCAB503218EE673B4607CAAA * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>
struct LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A
{
public:
// TV Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry::v
RuntimeObject * ___v_0;
// System.Collections.Generic.LinkedListNode`1<TV> Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry::vNode
LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 * ___vNode_1;
public:
inline static int32_t get_offset_of_v_0() { return static_cast<int32_t>(offsetof(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A, ___v_0)); }
inline RuntimeObject * get_v_0() const { return ___v_0; }
inline RuntimeObject ** get_address_of_v_0() { return &___v_0; }
inline void set_v_0(RuntimeObject * value)
{
___v_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___v_0), (void*)value);
}
inline static int32_t get_offset_of_vNode_1() { return static_cast<int32_t>(offsetof(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A, ___vNode_1)); }
inline LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 * get_vNode_1() const { return ___vNode_1; }
inline LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 ** get_address_of_vNode_1() { return &___vNode_1; }
inline void set_vNode_1(LinkedListNode_1_t29FE2977C490DD49F9F19A1FCBD4B2510F580683 * value)
{
___vNode_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vNode_1), (void*)value);
}
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>
struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>
struct Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030, ___value_3)); }
inline bool get_value_3() const { return ___value_3; }
inline bool* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(bool value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>
struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>
struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Single>
struct Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
float ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81, ___value_3)); }
inline float get_value_3() const { return ___value_3; }
inline float* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(float value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>
struct Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
RuntimeObject * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___dictionary_0)); }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6, ___currentValue_3)); }
inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; }
inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(RuntimeObject * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>
struct Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
bool ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7, ___dictionary_0)); }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7, ___currentValue_3)); }
inline bool get_currentValue_3() const { return ___currentValue_3; }
inline bool* get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(bool value)
{
___currentValue_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>
struct Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
int32_t ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___dictionary_0)); }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A, ___currentValue_3)); }
inline int32_t get_currentValue_3() const { return ___currentValue_3; }
inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(int32_t value)
{
___currentValue_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>
struct Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
RuntimeObject * ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___dictionary_0)); }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F, ___currentValue_3)); }
inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; }
inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(RuntimeObject * value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>
struct Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
float ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50, ___dictionary_0)); }
inline Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50, ___currentValue_3)); }
inline float get_currentValue_3() const { return ___currentValue_3; }
inline float* get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(float value)
{
___currentValue_3 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>
struct KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
bool ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524, ___value_1)); }
inline bool get_value_1() const { return ___value_1; }
inline bool* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(bool value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>
struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>
struct KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
float ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488, ___value_1)); }
inline float get_value_1() const { return ___value_1; }
inline float* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(float value)
{
___value_1 = value;
}
};
// System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct ObjectComparer_1_t241F11EE09349836A486AE5584C3545C5320AACD : public Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Int32>
struct ObjectComparer_1_tEBA28E3A1AE038D6A58CB6873FC979BB80FFBEA2 : public Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Int32Enum>
struct ObjectComparer_1_tDF627A8F22F64D7B4D4EFAD5E47265D79507E0B6 : public Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.Object>
struct ObjectComparer_1_t04746A2EA0CA9E51D13794A9FCF86A3F32B9593F : public Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<System.UInt64>
struct ObjectComparer_1_t8DE6ED6D4ECCA05BA297A3E48C4E9264CEE1B12F : public Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>
struct ObjectComparer_1_t4F8251E93F42978CFBA3B375A452B0009BB8D3CD : public Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>
struct ObjectComparer_1_tE95CC9ACE80C71EBB3B17D945DDECFB523140CBB : public Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>
struct ObjectComparer_1_tD8D2D480AE111DC49D618CA8C123B52247EE0206 : public Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.ParticleCollisionEvent>
struct ObjectComparer_1_t2467AE1E52D7C1AFACEDE591CA9ACD714D71184C : public Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit2D>
struct ObjectComparer_1_tEC0B15CD69A60D9D8F9D4440807E329CB06DCF9E : public Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>
struct ObjectComparer_1_tEC617C7BD65BA5F090F4D9841865A86B19B10976 : public Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>
struct ObjectComparer_1_t9E9FDEF7EA33D20332EAB8B38EF6F56BD94A3731 : public Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>
struct ObjectComparer_1_t3543B300051BD71124C457A06DD31F44D78089A8 : public Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>
struct ObjectComparer_1_tCC08AB6AC52F7B4595B6E7F769467BE538F79087 : public Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct ObjectComparer_1_t86EB6885AD1EE49322D7BE8DF7B6DDC9CBB47067 : public Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector2>
struct ObjectComparer_1_t8F555FC86CB04301E85633E74C5B22E2D325B58F : public Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>
struct ObjectComparer_1_t03CC2728544D9820FBEA8B536F84F721595867F6 : public Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>
struct ObjectComparer_1_t8040366DB3E6C337A74B80E9A4EC261DC686FCF4 : public Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.XR.iOS.ARHitTestResult>
struct ObjectComparer_1_t2564C245C442157BBAC40699D195FF0F0F33297C : public Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF
{
public:
public:
};
// System.Collections.Generic.ObjectComparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct ObjectComparer_1_tF4C6CF35D9C3C3D24E64A3FDA39D38E5B87C14B8 : public Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012
{
public:
public:
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.BeforeRenderHelper_OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// UnityEngine.Color32
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// UnityEngine.Matrix4x4
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.UILineInfo
struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback
SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___negativeInfinityVector_8 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A, ___value_3)); }
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A get_value_3() const { return ___value_3; }
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___v_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___vNode_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>
struct Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___dictionary_0)); }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___current_3)); }
inline KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>
struct Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628, ___dictionary_0)); }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628, ___current_3)); }
inline KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>
struct Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___dictionary_0)); }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___current_3)); }
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>
struct Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___dictionary_0)); }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___current_3)); }
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>
struct Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5, ___dictionary_0)); }
inline Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5, ___current_3)); }
inline KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC, ___dictionary_0)); }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC, ___currentValue_3)); }
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A get_currentValue_3() const { return ___currentValue_3; }
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___v_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___vNode_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>
struct Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version
int32_t ___version_2;
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___currentValue_3;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___dictionary_0)); }
inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1, ___currentValue_3)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_currentValue_3() const { return ___currentValue_3; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_currentValue_3() { return &___currentValue_3; }
inline void set_currentValue_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___currentValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41, ___value_1)); }
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A get_value_1() const { return ___value_1; }
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___v_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___vNode_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL);
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*INT*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*INT*/* ___native_trace_ips_15;
};
// System.ExceptionResource
struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A
{
public:
// System.Int32 System.ExceptionResource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
};
// UnityEngine.ParticleCollisionEvent
struct ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47
{
public:
// UnityEngine.Vector3 UnityEngine.ParticleCollisionEvent::m_Intersection
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Intersection_0;
// UnityEngine.Vector3 UnityEngine.ParticleCollisionEvent::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// UnityEngine.Vector3 UnityEngine.ParticleCollisionEvent::m_Velocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_2;
// System.Int32 UnityEngine.ParticleCollisionEvent::m_ColliderInstanceID
int32_t ___m_ColliderInstanceID_3;
public:
inline static int32_t get_offset_of_m_Intersection_0() { return static_cast<int32_t>(offsetof(ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47, ___m_Intersection_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Intersection_0() const { return ___m_Intersection_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Intersection_0() { return &___m_Intersection_0; }
inline void set_m_Intersection_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Intersection_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_Velocity_2() { return static_cast<int32_t>(offsetof(ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47, ___m_Velocity_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_2() const { return ___m_Velocity_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_2() { return &___m_Velocity_2; }
inline void set_m_Velocity_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Velocity_2 = value;
}
inline static int32_t get_offset_of_m_ColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47, ___m_ColliderInstanceID_3)); }
inline int32_t get_m_ColliderInstanceID_3() const { return ___m_ColliderInstanceID_3; }
inline int32_t* get_address_of_m_ColliderInstanceID_3() { return &___m_ColliderInstanceID_3; }
inline void set_m_ColliderInstanceID_3(int32_t value)
{
___m_ColliderInstanceID_3 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
// UnityEngine.UIVertex
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv3_7 = value;
}
};
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
___simpleVert_10 = value;
}
};
// UnityEngine.XR.iOS.ARHitTestResultType
struct ARHitTestResultType_t814937A1EF21002C977A5DD0BB084C31A591EDD2
{
public:
// System.Int64 UnityEngine.XR.iOS.ARHitTestResultType::value__
int64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARHitTestResultType_t814937A1EF21002C977A5DD0BB084C31A591EDD2, ___value___2)); }
inline int64_t get_value___2() const { return ___value___2; }
inline int64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.iOS.UnityARVideoFormat
struct UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95
{
public:
// System.IntPtr UnityEngine.XR.iOS.UnityARVideoFormat::videoFormatPtr
intptr_t ___videoFormatPtr_0;
// System.Single UnityEngine.XR.iOS.UnityARVideoFormat::imageResolutionWidth
float ___imageResolutionWidth_1;
// System.Single UnityEngine.XR.iOS.UnityARVideoFormat::imageResolutionHeight
float ___imageResolutionHeight_2;
// System.Int32 UnityEngine.XR.iOS.UnityARVideoFormat::framesPerSecond
int32_t ___framesPerSecond_3;
public:
inline static int32_t get_offset_of_videoFormatPtr_0() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___videoFormatPtr_0)); }
inline intptr_t get_videoFormatPtr_0() const { return ___videoFormatPtr_0; }
inline intptr_t* get_address_of_videoFormatPtr_0() { return &___videoFormatPtr_0; }
inline void set_videoFormatPtr_0(intptr_t value)
{
___videoFormatPtr_0 = value;
}
inline static int32_t get_offset_of_imageResolutionWidth_1() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___imageResolutionWidth_1)); }
inline float get_imageResolutionWidth_1() const { return ___imageResolutionWidth_1; }
inline float* get_address_of_imageResolutionWidth_1() { return &___imageResolutionWidth_1; }
inline void set_imageResolutionWidth_1(float value)
{
___imageResolutionWidth_1 = value;
}
inline static int32_t get_offset_of_imageResolutionHeight_2() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___imageResolutionHeight_2)); }
inline float get_imageResolutionHeight_2() const { return ___imageResolutionHeight_2; }
inline float* get_address_of_imageResolutionHeight_2() { return &___imageResolutionHeight_2; }
inline void set_imageResolutionHeight_2(float value)
{
___imageResolutionHeight_2 = value;
}
inline static int32_t get_offset_of_framesPerSecond_3() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95, ___framesPerSecond_3)); }
inline int32_t get_framesPerSecond_3() const { return ___framesPerSecond_3; }
inline int32_t* get_address_of_framesPerSecond_3() { return &___framesPerSecond_3; }
inline void set_framesPerSecond_3(int32_t value)
{
___framesPerSecond_3 = value;
}
};
struct UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.XR.iOS.UnityARVideoFormat> UnityEngine.XR.iOS.UnityARVideoFormat::videoFormatsList
List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 * ___videoFormatsList_4;
public:
inline static int32_t get_offset_of_videoFormatsList_4() { return static_cast<int32_t>(offsetof(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95_StaticFields, ___videoFormatsList_4)); }
inline List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 * get_videoFormatsList_4() const { return ___videoFormatsList_4; }
inline List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 ** get_address_of_videoFormatsList_4() { return &___videoFormatsList_4; }
inline void set_videoFormatsList_4(List_1_tCF4CFA50F2B730D7C5BBB9EEB7800C3B58380E71 * value)
{
___videoFormatsList_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___videoFormatsList_4), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>
struct Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71, ___dictionary_0)); }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71, ___current_3)); }
inline KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___v_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___vNode_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>
struct Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___dictionary_0)); }
inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___current_3)); }
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->____value_0), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.XR.iOS.ARHitTestResult
struct ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E
{
public:
// UnityEngine.XR.iOS.ARHitTestResultType UnityEngine.XR.iOS.ARHitTestResult::type
int64_t ___type_0;
// System.Double UnityEngine.XR.iOS.ARHitTestResult::distance
double ___distance_1;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARHitTestResult::localTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
// UnityEngine.Matrix4x4 UnityEngine.XR.iOS.ARHitTestResult::worldTransform
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
// System.String UnityEngine.XR.iOS.ARHitTestResult::anchorIdentifier
String_t* ___anchorIdentifier_4;
// System.Boolean UnityEngine.XR.iOS.ARHitTestResult::isValid
bool ___isValid_5;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___type_0)); }
inline int64_t get_type_0() const { return ___type_0; }
inline int64_t* get_address_of_type_0() { return &___type_0; }
inline void set_type_0(int64_t value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_distance_1() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___distance_1)); }
inline double get_distance_1() const { return ___distance_1; }
inline double* get_address_of_distance_1() { return &___distance_1; }
inline void set_distance_1(double value)
{
___distance_1 = value;
}
inline static int32_t get_offset_of_localTransform_2() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___localTransform_2)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_localTransform_2() const { return ___localTransform_2; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_localTransform_2() { return &___localTransform_2; }
inline void set_localTransform_2(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___localTransform_2 = value;
}
inline static int32_t get_offset_of_worldTransform_3() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___worldTransform_3)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_worldTransform_3() const { return ___worldTransform_3; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_worldTransform_3() { return &___worldTransform_3; }
inline void set_worldTransform_3(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___worldTransform_3 = value;
}
inline static int32_t get_offset_of_anchorIdentifier_4() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___anchorIdentifier_4)); }
inline String_t* get_anchorIdentifier_4() const { return ___anchorIdentifier_4; }
inline String_t** get_address_of_anchorIdentifier_4() { return &___anchorIdentifier_4; }
inline void set_anchorIdentifier_4(String_t* value)
{
___anchorIdentifier_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___anchorIdentifier_4), (void*)value);
}
inline static int32_t get_offset_of_isValid_5() { return static_cast<int32_t>(offsetof(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E, ___isValid_5)); }
inline bool get_isValid_5() const { return ___isValid_5; }
inline bool* get_address_of_isValid_5() { return &___isValid_5; }
inline void set_isValid_5(bool value)
{
___isValid_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.iOS.ARHitTestResult
struct ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E_marshaled_pinvoke
{
int64_t ___type_0;
double ___distance_1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
char* ___anchorIdentifier_4;
int32_t ___isValid_5;
};
// Native definition for COM marshalling of UnityEngine.XR.iOS.ARHitTestResult
struct ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E_marshaled_com
{
int64_t ___type_0;
double ___distance_1;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___localTransform_2;
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___worldTransform_3;
Il2CppChar* ___anchorIdentifier_4;
int32_t ___isValid_5;
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.ArrayTypeMismatchException
struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Comparison`1<UnityEngine.UnitySynchronizationContext_WorkRequest>
struct Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 : public MulticastDelegate_t
{
public:
public:
};
// System.Comparison`1<UnityEngine.Vector2>
struct Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC : public MulticastDelegate_t
{
public:
public:
};
// System.Comparison`1<UnityEngine.Vector3>
struct Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 : public MulticastDelegate_t
{
public:
public:
};
// System.Comparison`1<UnityEngine.Vector4>
struct Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 : public MulticastDelegate_t
{
public:
public:
};
// System.Comparison`1<UnityEngine.XR.iOS.ARHitTestResult>
struct Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 : public MulticastDelegate_t
{
public:
public:
};
// System.Comparison`1<UnityEngine.XR.iOS.UnityARVideoFormat>
struct Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 : public MulticastDelegate_t
{
public:
public:
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Reflection.TypeInfo
struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC
{
public:
// System.MonoTypeInfo System.RuntimeType::type_info
MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26;
// System.Object System.RuntimeType::GenericCache
RuntimeObject * ___GenericCache_27;
// System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor
RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28;
public:
inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; }
inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; }
inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value)
{
___type_info_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value);
}
inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); }
inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; }
inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; }
inline void set_GenericCache_27(RuntimeObject * value)
{
___GenericCache_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value);
}
inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; }
inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; }
inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value)
{
___m_serializationCtor_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value);
}
};
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields
{
public:
// System.RuntimeType System.RuntimeType::ValueType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10;
// System.RuntimeType System.RuntimeType::EnumType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11;
// System.RuntimeType System.RuntimeType::ObjectType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12;
// System.RuntimeType System.RuntimeType::StringType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13;
// System.RuntimeType System.RuntimeType::DelegateType
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14;
// System.Type[] System.RuntimeType::s_SICtorParamTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15;
// System.RuntimeType System.RuntimeType::s_typedRef
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25;
public:
inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; }
inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ValueType_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value);
}
inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; }
inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___EnumType_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value);
}
inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; }
inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___ObjectType_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value);
}
inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; }
inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___StringType_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value);
}
inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; }
inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___DelegateType_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value);
}
inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; }
inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___s_SICtorParamTypes_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value);
}
inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; }
inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; }
inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value)
{
___s_typedRef_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.UnitySynchronizationContext_WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 m_Items[1];
public:
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector2_tA85D2DD88578276CA8A8796756458277E72D073D m_Items[1];
public:
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 m_Items[1];
public:
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E m_Items[1];
public:
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
m_Items[index] = value;
}
};
// UnityEngine.XR.iOS.ARHitTestResult[]
struct ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E m_Items[1];
public:
inline ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___anchorIdentifier_4), (void*)NULL);
}
inline ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___anchorIdentifier_4), (void*)NULL);
}
};
// UnityEngine.XR.iOS.UnityARVideoFormat[]
struct UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED : public RuntimeArray
{
public:
ALIGN_FIELD (8) UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 m_Items[1];
public:
inline UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint64_t m_Items[1];
public:
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>[]
struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D m_Items[1];
public:
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>[]
struct EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A m_Items[1];
public:
inline Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___v_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___vNode_1), (void*)NULL);
#endif
}
inline Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tE698E14907AA7A71B45D2EB12416914B88790E9A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___v_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___vNode_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Boolean>[]
struct EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 m_Items[1];
public:
inline Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
inline Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t002F09010D6E57174B6C73A6AA7D53F256F2E030 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>[]
struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE m_Items[1];
public:
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>[]
struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA m_Items[1];
public:
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
#endif
}
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>[]
struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D m_Items[1];
public:
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL);
#endif
}
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Single>[]
struct EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 m_Items[1];
public:
inline Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
inline Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t41D0F46F14E6E7F13B12262FF95C90B3BC38DF81 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
};
// Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>[]
struct LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A m_Items[1];
public:
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___v_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___vNode_1), (void*)NULL);
#endif
}
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___v_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___vNode_1), (void*)NULL);
#endif
}
};
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078_gshared (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared_inline (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m05045FF6D3652A888C6366211B91CD17A9A5D169_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mFBD7175CE8F07AE2829E868F97B9D383FE8B704D_gshared (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, RuntimeObject * ___key0, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_gshared_inline (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA75DCBA7C39757EA4961A04F22201C4D4658F4F3_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_gshared_inline (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_gshared_inline (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9915E3D2866A44FC00315C0609A376475C10F520_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m495D844F78DE88E97C84C76CEF1ED54272F1EB6F_gshared (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_gshared_inline (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m285AC739AADDFFAADDB0447469307045D05430AB_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_gshared_inline (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_gshared_inline (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D_gshared (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_gshared_inline (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA50DBA0C24DBBC85BC9F1DDE011645D185FED3D3_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_gshared_inline (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_gshared_inline (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_gshared_inline (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0_gshared (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_gshared_inline (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1F28ED5670EA987543E0FBEBD88CF7D7738A0EDD_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF141BC4E0D14D5D3A5A8AFCC6110CD0BC71D26CB_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mBDDCE6A0B0329EACED11818AE33B703481AECFAB_gshared (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, RuntimeObject * ___key0, float ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_gshared_inline (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5973A27A68C8CCA4B76BC05178664D19CCE6E36A_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_gshared_inline (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_gshared_inline (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared_inline (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC7E854BB00050D9FE0B71830FF8B78F151E5F119_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_gshared_inline (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2315640164C8D921A4E137896D5C8799509FB2D0_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_gshared_inline (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE3ABD29CF11410EA48CE979AE985B812EFD4C128_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_gshared_inline (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m700CF1F2AC79A11D8834D162E8CB21E004F3FEEF_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m207BA103FFA0F3405F1568102DC82DD3A76B2FB1_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_gshared_inline (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD31FC34F5B2F7C643FBB91FB488FA6B20FBD7E40_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m60DA385C6F3EE1BD61A8DD9FA00BCE221053FA7A_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method);
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::get_Current()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_gshared_inline (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.IntrospectiveSortUtilities::ThrowOrIgnoreBadComparer(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A (RuntimeObject * ___comparer0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.IntrospectiveSortUtilities::FloorLog2(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA (int32_t ___n0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Object System.RuntimeType::CreateInstanceForAnotherGenericParameter(System.Type,System.RuntimeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4 (Type_t * ___genericType0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___genericArgument1, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84 (int32_t ___resource0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078 (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext()
inline bool Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8 (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current()
inline KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_inline (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose()
inline void Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310 (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key()
inline int32_t KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value()
inline RuntimeObject * KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_gshared_inline)(__this, method);
}
// System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429 (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019 (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719 (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_m05045FF6D3652A888C6366211B91CD17A9A5D169 (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *, int32_t, const RuntimeMethod*))Enumerator__ctor_m05045FF6D3652A888C6366211B91CD17A9A5D169_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_mFBD7175CE8F07AE2829E868F97B9D383FE8B704D (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, RuntimeObject * ___key0, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *, RuntimeObject *, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A , const RuntimeMethod*))KeyValuePair_2__ctor_mFBD7175CE8F07AE2829E868F97B9D383FE8B704D_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Current()
inline KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_inline (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::Dispose()
inline void Enumerator_Dispose_mA75DCBA7C39757EA4961A04F22201C4D4658F4F3 (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_Dispose_mA75DCBA7C39757EA4961A04F22201C4D4658F4F3_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Key()
inline RuntimeObject * KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_inline (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Value()
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_inline (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, const RuntimeMethod* method)
{
return (( LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A (*) (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435 (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_m9915E3D2866A44FC00315C0609A376475C10F520 (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *, int32_t, const RuntimeMethod*))Enumerator__ctor_m9915E3D2866A44FC00315C0609A376475C10F520_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_m495D844F78DE88E97C84C76CEF1ED54272F1EB6F (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *, RuntimeObject *, bool, const RuntimeMethod*))KeyValuePair_2__ctor_m495D844F78DE88E97C84C76CEF1ED54272F1EB6F_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext()
inline bool Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866 (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current()
inline KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_inline (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose()
inline void Enumerator_Dispose_m285AC739AADDFFAADDB0447469307045D05430AB (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_Dispose_m285AC739AADDFFAADDB0447469307045D05430AB_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key()
inline RuntimeObject * KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_inline (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value()
inline bool KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_inline (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, const RuntimeMethod* method)
{
return (( bool (*) (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32 (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8 (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1 (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03 (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, const RuntimeMethod*))Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext()
inline bool Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2 (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current()
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_inline (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose()
inline void Enumerator_Dispose_mA50DBA0C24DBBC85BC9F1DDE011645D185FED3D3 (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_Dispose_mA50DBA0C24DBBC85BC9F1DDE011645D185FED3D3_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key()
inline RuntimeObject * KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_inline (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *, const RuntimeMethod*))KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value()
inline int32_t KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_inline (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *, const RuntimeMethod*))KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574 (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824 (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, int32_t, const RuntimeMethod*))Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3 (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_inline (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
inline void Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
inline RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, const RuntimeMethod*))KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
inline RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5 (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0 (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, RuntimeObject * ___key0, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, RuntimeObject *, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C , const RuntimeMethod*))KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext()
inline bool Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current()
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_inline (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose()
inline void Enumerator_Dispose_m1F28ED5670EA987543E0FBEBD88CF7D7738A0EDD (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_Dispose_m1F28ED5670EA987543E0FBEBD88CF7D7738A0EDD_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key()
inline RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value()
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method)
{
return (( ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*) (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4 (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
inline void Enumerator__ctor_mF141BC4E0D14D5D3A5A8AFCC6110CD0BC71D26CB (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *, int32_t, const RuntimeMethod*))Enumerator__ctor_mF141BC4E0D14D5D3A5A8AFCC6110CD0BC71D26CB_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_mBDDCE6A0B0329EACED11818AE33B703481AECFAB (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, RuntimeObject * ___key0, float ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *, RuntimeObject *, float, const RuntimeMethod*))KeyValuePair_2__ctor_mBDDCE6A0B0329EACED11818AE33B703481AECFAB_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::MoveNext()
inline bool Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84 (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::get_Current()
inline KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_inline (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::Dispose()
inline void Enumerator_Dispose_m5973A27A68C8CCA4B76BC05178664D19CCE6E36A (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_Dispose_m5973A27A68C8CCA4B76BC05178664D19CCE6E36A_gshared)(__this, method);
}
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>::get_Key()
inline RuntimeObject * KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_inline (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Single>::get_Value()
inline float KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_inline (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, const RuntimeMethod* method)
{
return (( float (*) (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31 (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_gshared)(__this, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry()
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
return (( DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Key()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Value()
inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6 (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose()
inline void Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *, const RuntimeMethod*))Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext()
inline bool Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32 (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *, const RuntimeMethod*))Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_inline (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *, const RuntimeMethod*))Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9 (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9 (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973 (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *, const RuntimeMethod*))Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::Dispose()
inline void Enumerator_Dispose_mC7E854BB00050D9FE0B71830FF8B78F151E5F119 (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *, const RuntimeMethod*))Enumerator_Dispose_mC7E854BB00050D9FE0B71830FF8B78F151E5F119_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02 (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *, const RuntimeMethod*))Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::get_Current()
inline LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_inline (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
return (( LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A (*) (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *, const RuntimeMethod*))Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2/LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9 (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *, const RuntimeMethod*))Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose()
inline void Enumerator_Dispose_m2315640164C8D921A4E137896D5C8799509FB2D0 (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *, const RuntimeMethod*))Enumerator_Dispose_m2315640164C8D921A4E137896D5C8799509FB2D0_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext()
inline bool Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285 (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *, const RuntimeMethod*))Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current()
inline bool Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_inline (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *, const RuntimeMethod*))Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4 (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose()
inline void Enumerator_Dispose_mE3ABD29CF11410EA48CE979AE985B812EFD4C128 (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *, const RuntimeMethod*))Enumerator_Dispose_mE3ABD29CF11410EA48CE979AE985B812EFD4C128_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext()
inline bool Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *, const RuntimeMethod*))Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current()
inline int32_t Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_inline (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *, const RuntimeMethod*))Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0 (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose()
inline void Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0 (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *, const RuntimeMethod*))Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93 (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *, const RuntimeMethod*))Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_inline (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *, const RuntimeMethod*))Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18 (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_m700CF1F2AC79A11D8834D162E8CB21E004F3FEEF (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *, const RuntimeMethod*))Enumerator__ctor_m700CF1F2AC79A11D8834D162E8CB21E004F3FEEF_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose()
inline void Enumerator_Dispose_m207BA103FFA0F3405F1568102DC82DD3A76B2FB1 (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *, const RuntimeMethod*))Enumerator_Dispose_m207BA103FFA0F3405F1568102DC82DD3A76B2FB1_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext()
inline bool Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2 (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *, const RuntimeMethod*))Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current()
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_inline (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
return (( ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C (*) (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *, const RuntimeMethod*))Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9 (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940 (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
inline void Enumerator__ctor_mD31FC34F5B2F7C643FBB91FB488FA6B20FBD7E40 (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *, const RuntimeMethod*))Enumerator__ctor_mD31FC34F5B2F7C643FBB91FB488FA6B20FBD7E40_gshared)(__this, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::Dispose()
inline void Enumerator_Dispose_m60DA385C6F3EE1BD61A8DD9FA00BCE221053FA7A (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *, const RuntimeMethod*))Enumerator_Dispose_m60DA385C6F3EE1BD61A8DD9FA00BCE221053FA7A_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::MoveNext()
inline bool Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7 (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *, const RuntimeMethod*))Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_gshared)(__this, method);
}
// TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::get_Current()
inline float Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_inline (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
return (( float (*) (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *, const RuntimeMethod*))Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0 (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05 (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_gshared)(__this, method);
}
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Int32 System.Array::GetLowerBound(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mADEE5FBCAD715C00E3A268DD78F013F8723D63AE_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_mADEE5FBCAD715C00E3A268DD78F013F8723D63AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer3;
if (L_0)
{
goto IL_000a;
}
}
IL_0003:
{
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_1 = (( Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer3 = (RuntimeObject*)L_1;
}
IL_000a:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_2 = ___keys0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
RuntimeObject* L_5 = ___comparer3;
RuntimeObject* L_6 = (RuntimeObject*)L_5;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_7 = (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_7, (RuntimeObject *)L_6, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_6, 0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_2, (int32_t)L_3, (int32_t)L_4, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0037;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0021;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_0021:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_8 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_8, /*hidden argument*/NULL);
goto IL_0037;
} // end catch (depth: 1)
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_9 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_10, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArraySortHelper_1_Sort_mADEE5FBCAD715C00E3A268DD78F013F8723D63AE_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_BinarySearch_mBC1D837D4E9F0E9FD14B1B5E3E96A8F7D12C29B4_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___index1, int32_t ___length2, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_BinarySearch_mBC1D837D4E9F0E9FD14B1B5E3E96A8F7D12C29B4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000b;
}
}
IL_0004:
{
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_1 = (( Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer4 = (RuntimeObject*)L_1;
}
IL_000b:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_2 = ___array0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_5 = ___value3;
RuntimeObject* L_6 = ___comparer4;
int32_t L_7 = (( int32_t (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_2, (int32_t)L_3, (int32_t)L_4, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_5, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
V_0 = (int32_t)L_7;
goto IL_0026;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.Exception)
V_1 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_8 = V_1;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, ArraySortHelper_1_BinarySearch_mBC1D837D4E9F0E9FD14B1B5E3E96A8F7D12C29B4_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0026:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m450BEF3CAA3C9C629B8A72559F7F183ABC870C05_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m450BEF3CAA3C9C629B8A72559F7F183ABC870C05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___keys0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_3 = ___comparer3;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_0, (int32_t)L_1, (int32_t)L_2, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0021;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0014;
throw e;
}
CATCH_000b:
{ // begin catch(System.IndexOutOfRangeException)
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_4 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_4, /*hidden argument*/NULL);
goto IL_0021;
} // end catch (depth: 1)
CATCH_0014:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_5 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_6, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ArraySortHelper_1_Sort_m450BEF3CAA3C9C629B8A72559F7F183ABC870C05_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_InternalBinarySearch_m966EE932EBB03833AABD349B863859ED250553F8_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___index1, int32_t ___length2, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___index1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
goto IL_0035;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
RuntimeObject* L_6 = ___comparer4;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_7 = ___array0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_11 = ___value3;
NullCheck((RuntimeObject*)L_6);
int32_t L_12 = InterfaceFuncInvoker2< int32_t, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_6, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_10, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_11);
V_3 = (int32_t)L_12;
int32_t L_13 = V_3;
if (L_13)
{
goto IL_0027;
}
}
{
int32_t L_14 = V_2;
return L_14;
}
IL_0027:
{
int32_t L_15 = V_3;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_16 = V_2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
goto IL_0035;
}
IL_0031:
{
int32_t L_17 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_0035:
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_000a;
}
}
{
int32_t L_20 = V_0;
return ((~L_20));
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_SwapIfGreater_m722761D90D137309A3E3019FC8E4CA35EE83B493_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer1, int32_t ___a2, int32_t ___b3, const RuntimeMethod* method)
{
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___a2;
int32_t L_1 = ___b3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0039;
}
}
{
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_2 = ___comparer1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_3 = ___keys0;
int32_t L_4 = ___a2;
NullCheck(L_3);
int32_t L_5 = L_4;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_7 = ___keys0;
int32_t L_8 = ___b3;
NullCheck(L_7);
int32_t L_9 = L_8;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_2);
int32_t L_11 = (( int32_t (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_2, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_6, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_12 = ___keys0;
int32_t L_13 = ___a2;
NullCheck(L_12);
int32_t L_14 = L_13;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_15;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_16 = ___keys0;
int32_t L_17 = ___a2;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_18 = ___keys0;
int32_t L_19 = ___b3;
NullCheck(L_18);
int32_t L_20 = L_19;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_21);
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_22 = ___keys0;
int32_t L_23 = ___b3;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_24);
}
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Swap(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Swap_mB1729B3FAC23C1C912FD3507371AB4082C648DD0_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___a0, int32_t ___i1, int32_t ___j2, const RuntimeMethod* method)
{
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___i1;
int32_t L_1 = ___j2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_2 = ___a0;
int32_t L_3 = ___i1;
NullCheck(L_2);
int32_t L_4 = L_3;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_5;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_6 = ___a0;
int32_t L_7 = ___i1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_8 = ___a0;
int32_t L_9 = ___j2;
NullCheck(L_8);
int32_t L_10 = L_9;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_11);
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_12 = ___a0;
int32_t L_13 = ___j2;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_14);
}
IL_0022:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m6B6E3D7F8BB361A002B7C0908B756A9827377C5B_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length2;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_1 = ___keys0;
int32_t L_2 = ___left1;
int32_t L_3 = ___length2;
int32_t L_4 = ___left1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_5 = ___keys0;
NullCheck(L_5);
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_7 = ___comparer3;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_1, (int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntroSort_mD0752E032AC3B1428CC7F9F2C9A7192FC95361E6_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___lo1, int32_t ___hi2, int32_t ___depthLimit3, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0086;
}
IL_0005:
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_0056;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_5 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_6 = ___comparer4;
int32_t L_7 = ___lo1;
int32_t L_8 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_5, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_0024:
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_004b;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_10 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_11 = ___comparer4;
int32_t L_12 = ___lo1;
int32_t L_13 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_10, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_14 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_15 = ___comparer4;
int32_t L_16 = ___lo1;
int32_t L_17 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_14, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_18 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_19 = ___comparer4;
int32_t L_20 = ___hi2;
int32_t L_21 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_18, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_004b:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_22 = ___keys0;
int32_t L_23 = ___lo1;
int32_t L_24 = ___hi2;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_25 = ___comparer4;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_22, (int32_t)L_23, (int32_t)L_24, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
return;
}
IL_0056:
{
int32_t L_26 = ___depthLimit3;
if (L_26)
{
goto IL_0064;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_27 = ___keys0;
int32_t L_28 = ___lo1;
int32_t L_29 = ___hi2;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_30 = ___comparer4;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_27, (int32_t)L_28, (int32_t)L_29, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return;
}
IL_0064:
{
int32_t L_31 = ___depthLimit3;
___depthLimit3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_32 = ___keys0;
int32_t L_33 = ___lo1;
int32_t L_34 = ___hi2;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_35 = ___comparer4;
int32_t L_36 = (( int32_t (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_32, (int32_t)L_33, (int32_t)L_34, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
V_1 = (int32_t)L_36;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_37 = ___keys0;
int32_t L_38 = V_1;
int32_t L_39 = ___hi2;
int32_t L_40 = ___depthLimit3;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_41 = ___comparer4;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_37, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39, (int32_t)L_40, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
int32_t L_42 = V_1;
___hi2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1));
}
IL_0086:
{
int32_t L_43 = ___hi2;
int32_t L_44 = ___lo1;
if ((((int32_t)L_43) > ((int32_t)L_44)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_PickPivotAndPartition_mE494121C05702CBD688322BAF8AFC3249CC35B6F_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo1;
int32_t L_1 = ___hi2;
int32_t L_2 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_3 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_4 = ___comparer3;
int32_t L_5 = ___lo1;
int32_t L_6 = V_0;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_3, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_7 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_8 = ___comparer3;
int32_t L_9 = ___lo1;
int32_t L_10 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_7, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_11 = ___keys0;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_12 = ___comparer3;
int32_t L_13 = V_0;
int32_t L_14 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_11, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_15 = ___keys0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = L_16;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_1 = (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_18;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_19 = ___keys0;
int32_t L_20 = V_0;
int32_t L_21 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_19, (int32_t)L_20, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_22 = ___lo1;
V_2 = (int32_t)L_22;
int32_t L_23 = ___hi2;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
goto IL_0073;
}
IL_003d:
{
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_24 = ___comparer3;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_25 = ___keys0;
int32_t L_26 = V_2;
int32_t L_27 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
V_2 = (int32_t)L_27;
NullCheck(L_25);
int32_t L_28 = L_27;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_29 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_30 = V_1;
NullCheck((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_24);
int32_t L_31 = (( int32_t (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_24, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_29, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0052:
{
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_32 = ___comparer3;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_33 = V_1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_34 = ___keys0;
int32_t L_35 = V_3;
int32_t L_36 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_3 = (int32_t)L_36;
NullCheck(L_34);
int32_t L_37 = L_36;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_38 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_32);
int32_t L_39 = (( int32_t (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_32, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_33, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_38, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_39) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_40 = V_2;
int32_t L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0077;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_42 = ___keys0;
int32_t L_43 = V_2;
int32_t L_44 = V_3;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_42, (int32_t)L_43, (int32_t)L_44, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
}
IL_0073:
{
int32_t L_45 = V_2;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_003d;
}
}
IL_0077:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_47 = ___keys0;
int32_t L_48 = V_2;
int32_t L_49 = ___hi2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_47, (int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_50 = V_2;
return L_50;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Heapsort_mCFC724DBE0DCCDFB5CDA9F42954AC7E5E61C25D1_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001a;
}
IL_000c:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_3 = ___keys0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
int32_t L_6 = ___lo1;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_7 = ___comparer3;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_3, (int32_t)L_4, (int32_t)L_5, (int32_t)L_6, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_001a:
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_10 = V_0;
V_2 = (int32_t)L_10;
goto IL_003e;
}
IL_0022:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_11 = ___keys0;
int32_t L_12 = ___lo1;
int32_t L_13 = ___lo1;
int32_t L_14 = V_2;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_15 = ___keys0;
int32_t L_16 = V_2;
int32_t L_17 = ___lo1;
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_18 = ___comparer3;
(( void (*) (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*, int32_t, int32_t, int32_t, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0*)L_15, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)), (int32_t)L_17, (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_19 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_003e:
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0022;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_DownHeap_mCE3DE84325423ECB34AFFB1001593A5214081B69_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___i1, int32_t ___n2, int32_t ___lo3, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer4, const RuntimeMethod* method)
{
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_0 = ___keys0;
int32_t L_1 = ___lo3;
int32_t L_2 = ___i1;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_4;
goto IL_0067;
}
IL_000e:
{
int32_t L_5 = ___i1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5));
int32_t L_6 = V_1;
int32_t L_7 = ___n2;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0038;
}
}
{
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_8 = ___comparer4;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_9 = ___keys0;
int32_t L_10 = ___lo3;
int32_t L_11 = V_1;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_14 = ___keys0;
int32_t L_15 = ___lo3;
int32_t L_16 = V_1;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_18 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_8);
int32_t L_19 = (( int32_t (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_8, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_13, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0038:
{
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_21 = ___comparer4;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_22 = V_0;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_23 = ___keys0;
int32_t L_24 = ___lo3;
int32_t L_25 = V_1;
NullCheck(L_23);
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (int32_t)1));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_21);
int32_t L_28 = (( int32_t (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_21, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_22, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_28) >= ((int32_t)0)))
{
goto IL_006d;
}
}
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_29 = ___keys0;
int32_t L_30 = ___lo3;
int32_t L_31 = ___i1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_32 = ___keys0;
int32_t L_33 = ___lo3;
int32_t L_34 = V_1;
NullCheck(L_32);
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)), (int32_t)1));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1))), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_36);
int32_t L_37 = V_1;
___i1 = (int32_t)L_37;
}
IL_0067:
{
int32_t L_38 = ___i1;
int32_t L_39 = ___n2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)((int32_t)L_39/(int32_t)2)))))
{
goto IL_000e;
}
}
IL_006d:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_40 = ___keys0;
int32_t L_41 = ___lo3;
int32_t L_42 = ___i1;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_43 = V_0;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)1))), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_43);
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_InsertionSort_mB23615451F6BE13E75978F28F34C62B8FA9497B8_gshared (WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___lo1;
V_0 = (int32_t)L_0;
goto IL_0049;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_5;
goto IL_0026;
}
IL_0012:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_6 = ___keys0;
int32_t L_7 = V_1;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_8 = ___keys0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_11);
int32_t L_12 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
}
IL_0026:
{
int32_t L_13 = V_1;
int32_t L_14 = ___lo1;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_003b;
}
}
{
Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 * L_15 = ___comparer3;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_16 = V_2;
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_17 = ___keys0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_15);
int32_t L_21 = (( int32_t (*) (Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t0B3C5B68BF37DDED8FD6A28A59AF2338826F4352 *)L_15, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_16, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0012;
}
}
IL_003b:
{
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_22 = ___keys0;
int32_t L_23 = V_1;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_24 = V_2;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )L_24);
int32_t L_25 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_0049:
{
int32_t L_26 = V_0;
int32_t L_27 = ___hi2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0004;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mB19B2789C2E22F686C4625BE148FA1042DA71935_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_mB19B2789C2E22F686C4625BE148FA1042DA71935_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer3;
if (L_0)
{
goto IL_000a;
}
}
IL_0003:
{
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_1 = (( Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer3 = (RuntimeObject*)L_1;
}
IL_000a:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_2 = ___keys0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
RuntimeObject* L_5 = ___comparer3;
RuntimeObject* L_6 = (RuntimeObject*)L_5;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_7 = (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_7, (RuntimeObject *)L_6, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_6, 0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_2, (int32_t)L_3, (int32_t)L_4, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0037;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0021;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_0021:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_8 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_8, /*hidden argument*/NULL);
goto IL_0037;
} // end catch (depth: 1)
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_9 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_10, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArraySortHelper_1_Sort_mB19B2789C2E22F686C4625BE148FA1042DA71935_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_BinarySearch_mAFDC6BE6CD24B04B18C2D2951AB6ADDC8F6F9647_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, int32_t ___index1, int32_t ___length2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_BinarySearch_mAFDC6BE6CD24B04B18C2D2951AB6ADDC8F6F9647_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000b;
}
}
IL_0004:
{
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_1 = (( Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer4 = (RuntimeObject*)L_1;
}
IL_000b:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_2 = ___array0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = ___value3;
RuntimeObject* L_6 = ___comparer4;
int32_t L_7 = (( int32_t (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_2, (int32_t)L_3, (int32_t)L_4, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_5, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
V_0 = (int32_t)L_7;
goto IL_0026;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.Exception)
V_1 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_8 = V_1;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, ArraySortHelper_1_BinarySearch_mAFDC6BE6CD24B04B18C2D2951AB6ADDC8F6F9647_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0026:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m1BF12B97FAEFBE2F06A5475A166183F820D492C7_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m1BF12B97FAEFBE2F06A5475A166183F820D492C7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_0 = ___keys0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_3 = ___comparer3;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_0, (int32_t)L_1, (int32_t)L_2, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0021;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0014;
throw e;
}
CATCH_000b:
{ // begin catch(System.IndexOutOfRangeException)
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_4 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_4, /*hidden argument*/NULL);
goto IL_0021;
} // end catch (depth: 1)
CATCH_0014:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_5 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_6, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ArraySortHelper_1_Sort_m1BF12B97FAEFBE2F06A5475A166183F820D492C7_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_InternalBinarySearch_mE457FE641F262901BF4A958A16F40C9A103E8F48_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, int32_t ___index1, int32_t ___length2, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___index1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
goto IL_0035;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
RuntimeObject* L_6 = ___comparer4;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_7 = ___array0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = ___value3;
NullCheck((RuntimeObject*)L_6);
int32_t L_12 = InterfaceFuncInvoker2< int32_t, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Vector2>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_6, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_10, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_11);
V_3 = (int32_t)L_12;
int32_t L_13 = V_3;
if (L_13)
{
goto IL_0027;
}
}
{
int32_t L_14 = V_2;
return L_14;
}
IL_0027:
{
int32_t L_15 = V_3;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_16 = V_2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
goto IL_0035;
}
IL_0031:
{
int32_t L_17 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_0035:
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_000a;
}
}
{
int32_t L_20 = V_0;
return ((~L_20));
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_SwapIfGreater_m08EA0F95D4CF5048C50659FE066C46B6A49BC5AC_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer1, int32_t ___a2, int32_t ___b3, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___a2;
int32_t L_1 = ___b3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0039;
}
}
{
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_2 = ___comparer1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_3 = ___keys0;
int32_t L_4 = ___a2;
NullCheck(L_3);
int32_t L_5 = L_4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_7 = ___keys0;
int32_t L_8 = ___b3;
NullCheck(L_7);
int32_t L_9 = L_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_2);
int32_t L_11 = (( int32_t (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_2, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_6, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_12 = ___keys0;
int32_t L_13 = ___a2;
NullCheck(L_12);
int32_t L_14 = L_13;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_15;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_16 = ___keys0;
int32_t L_17 = ___a2;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_18 = ___keys0;
int32_t L_19 = ___b3;
NullCheck(L_18);
int32_t L_20 = L_19;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_21);
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_22 = ___keys0;
int32_t L_23 = ___b3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_24);
}
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Swap(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Swap_m2879AAF0429E600366C8D13B76E05042AB5EB742_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___a0, int32_t ___i1, int32_t ___j2, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___i1;
int32_t L_1 = ___j2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_2 = ___a0;
int32_t L_3 = ___i1;
NullCheck(L_2);
int32_t L_4 = L_3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_5;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_6 = ___a0;
int32_t L_7 = ___i1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_8 = ___a0;
int32_t L_9 = ___j2;
NullCheck(L_8);
int32_t L_10 = L_9;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_11);
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_12 = ___a0;
int32_t L_13 = ___j2;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_14);
}
IL_0022:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m39326049CC7748641ED778B5D6AA7F52836DB3B7_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length2;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_1 = ___keys0;
int32_t L_2 = ___left1;
int32_t L_3 = ___length2;
int32_t L_4 = ___left1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_5 = ___keys0;
NullCheck(L_5);
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_7 = ___comparer3;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_1, (int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntroSort_m819A69E5F3D6BF32C477A1654E130C3A0615FEF8_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___lo1, int32_t ___hi2, int32_t ___depthLimit3, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0086;
}
IL_0005:
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_0056;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_5 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_6 = ___comparer4;
int32_t L_7 = ___lo1;
int32_t L_8 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_5, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_0024:
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_004b;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_10 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_11 = ___comparer4;
int32_t L_12 = ___lo1;
int32_t L_13 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_10, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_14 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_15 = ___comparer4;
int32_t L_16 = ___lo1;
int32_t L_17 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_14, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_18 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_19 = ___comparer4;
int32_t L_20 = ___hi2;
int32_t L_21 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_18, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_004b:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_22 = ___keys0;
int32_t L_23 = ___lo1;
int32_t L_24 = ___hi2;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_25 = ___comparer4;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_22, (int32_t)L_23, (int32_t)L_24, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
return;
}
IL_0056:
{
int32_t L_26 = ___depthLimit3;
if (L_26)
{
goto IL_0064;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_27 = ___keys0;
int32_t L_28 = ___lo1;
int32_t L_29 = ___hi2;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_30 = ___comparer4;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_27, (int32_t)L_28, (int32_t)L_29, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return;
}
IL_0064:
{
int32_t L_31 = ___depthLimit3;
___depthLimit3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_32 = ___keys0;
int32_t L_33 = ___lo1;
int32_t L_34 = ___hi2;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_35 = ___comparer4;
int32_t L_36 = (( int32_t (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_32, (int32_t)L_33, (int32_t)L_34, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
V_1 = (int32_t)L_36;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_37 = ___keys0;
int32_t L_38 = V_1;
int32_t L_39 = ___hi2;
int32_t L_40 = ___depthLimit3;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_41 = ___comparer4;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_37, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39, (int32_t)L_40, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
int32_t L_42 = V_1;
___hi2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1));
}
IL_0086:
{
int32_t L_43 = ___hi2;
int32_t L_44 = ___lo1;
if ((((int32_t)L_43) > ((int32_t)L_44)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_PickPivotAndPartition_m2580EA49BB68D980C3A6586BF851FE271124A15C_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo1;
int32_t L_1 = ___hi2;
int32_t L_2 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_3 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_4 = ___comparer3;
int32_t L_5 = ___lo1;
int32_t L_6 = V_0;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_3, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_7 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_8 = ___comparer3;
int32_t L_9 = ___lo1;
int32_t L_10 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_7, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_11 = ___keys0;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_12 = ___comparer3;
int32_t L_13 = V_0;
int32_t L_14 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_11, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_15 = ___keys0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = L_16;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_1 = (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_18;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_19 = ___keys0;
int32_t L_20 = V_0;
int32_t L_21 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_19, (int32_t)L_20, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_22 = ___lo1;
V_2 = (int32_t)L_22;
int32_t L_23 = ___hi2;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
goto IL_0073;
}
IL_003d:
{
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_24 = ___comparer3;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_25 = ___keys0;
int32_t L_26 = V_2;
int32_t L_27 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
V_2 = (int32_t)L_27;
NullCheck(L_25);
int32_t L_28 = L_27;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_29 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_30 = V_1;
NullCheck((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_24);
int32_t L_31 = (( int32_t (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_24, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_29, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0052:
{
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_32 = ___comparer3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_33 = V_1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_34 = ___keys0;
int32_t L_35 = V_3;
int32_t L_36 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_3 = (int32_t)L_36;
NullCheck(L_34);
int32_t L_37 = L_36;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_38 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_32);
int32_t L_39 = (( int32_t (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_32, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_33, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_38, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_39) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_40 = V_2;
int32_t L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0077;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_42 = ___keys0;
int32_t L_43 = V_2;
int32_t L_44 = V_3;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_42, (int32_t)L_43, (int32_t)L_44, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
}
IL_0073:
{
int32_t L_45 = V_2;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_003d;
}
}
IL_0077:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_47 = ___keys0;
int32_t L_48 = V_2;
int32_t L_49 = ___hi2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_47, (int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_50 = V_2;
return L_50;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Heapsort_m3CFA892B525816171E0D318753625ABFF10B1FBC_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001a;
}
IL_000c:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_3 = ___keys0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
int32_t L_6 = ___lo1;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_7 = ___comparer3;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_3, (int32_t)L_4, (int32_t)L_5, (int32_t)L_6, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_001a:
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_10 = V_0;
V_2 = (int32_t)L_10;
goto IL_003e;
}
IL_0022:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_11 = ___keys0;
int32_t L_12 = ___lo1;
int32_t L_13 = ___lo1;
int32_t L_14 = V_2;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_15 = ___keys0;
int32_t L_16 = V_2;
int32_t L_17 = ___lo1;
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_18 = ___comparer3;
(( void (*) (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*, int32_t, int32_t, int32_t, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6*)L_15, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)), (int32_t)L_17, (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_19 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_003e:
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0022;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_DownHeap_m67B39C23CC85DA3D0BE650624C1E910F9B8EFA04_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___i1, int32_t ___n2, int32_t ___lo3, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer4, const RuntimeMethod* method)
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_0 = ___keys0;
int32_t L_1 = ___lo3;
int32_t L_2 = ___i1;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_4;
goto IL_0067;
}
IL_000e:
{
int32_t L_5 = ___i1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5));
int32_t L_6 = V_1;
int32_t L_7 = ___n2;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0038;
}
}
{
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_8 = ___comparer4;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_9 = ___keys0;
int32_t L_10 = ___lo3;
int32_t L_11 = V_1;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_14 = ___keys0;
int32_t L_15 = ___lo3;
int32_t L_16 = V_1;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_18 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_8);
int32_t L_19 = (( int32_t (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_8, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_13, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0038:
{
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_21 = ___comparer4;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_22 = V_0;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_23 = ___keys0;
int32_t L_24 = ___lo3;
int32_t L_25 = V_1;
NullCheck(L_23);
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (int32_t)1));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_21);
int32_t L_28 = (( int32_t (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_21, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_22, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_28) >= ((int32_t)0)))
{
goto IL_006d;
}
}
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_29 = ___keys0;
int32_t L_30 = ___lo3;
int32_t L_31 = ___i1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_32 = ___keys0;
int32_t L_33 = ___lo3;
int32_t L_34 = V_1;
NullCheck(L_32);
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)), (int32_t)1));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1))), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_36);
int32_t L_37 = V_1;
___i1 = (int32_t)L_37;
}
IL_0067:
{
int32_t L_38 = ___i1;
int32_t L_39 = ___n2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)((int32_t)L_39/(int32_t)2)))))
{
goto IL_000e;
}
}
IL_006d:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_40 = ___keys0;
int32_t L_41 = ___lo3;
int32_t L_42 = ___i1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_43 = V_0;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)1))), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_43);
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_InsertionSort_m896D4F02EEAEAF87DFFAD32939471E7B11C79036_gshared (Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___lo1;
V_0 = (int32_t)L_0;
goto IL_0049;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_5;
goto IL_0026;
}
IL_0012:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_6 = ___keys0;
int32_t L_7 = V_1;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_8 = ___keys0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_11);
int32_t L_12 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
}
IL_0026:
{
int32_t L_13 = V_1;
int32_t L_14 = ___lo1;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_003b;
}
}
{
Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC * L_15 = ___comparer3;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_16 = V_2;
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_17 = ___keys0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_15);
int32_t L_21 = (( int32_t (*) (Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tDA38C053BAF9453EC3F5BE5542E5E3CA9658DBAC *)L_15, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_16, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0012;
}
}
IL_003b:
{
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_22 = ___keys0;
int32_t L_23 = V_1;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_24 = V_2;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )L_24);
int32_t L_25 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_0049:
{
int32_t L_26 = V_0;
int32_t L_27 = ___hi2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0004;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m1A7130392EE383B614830B46679DC48443DD1D27_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m1A7130392EE383B614830B46679DC48443DD1D27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer3;
if (L_0)
{
goto IL_000a;
}
}
IL_0003:
{
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_1 = (( Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer3 = (RuntimeObject*)L_1;
}
IL_000a:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_2 = ___keys0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
RuntimeObject* L_5 = ___comparer3;
RuntimeObject* L_6 = (RuntimeObject*)L_5;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_7 = (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_7, (RuntimeObject *)L_6, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_6, 0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_2, (int32_t)L_3, (int32_t)L_4, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0037;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0021;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_0021:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_8 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_8, /*hidden argument*/NULL);
goto IL_0037;
} // end catch (depth: 1)
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_9 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_10, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArraySortHelper_1_Sort_m1A7130392EE383B614830B46679DC48443DD1D27_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_BinarySearch_mCB24D2D0F36BE5C42952DF4E1A65966667330CB4_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, int32_t ___index1, int32_t ___length2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_BinarySearch_mCB24D2D0F36BE5C42952DF4E1A65966667330CB4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000b;
}
}
IL_0004:
{
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_1 = (( Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer4 = (RuntimeObject*)L_1;
}
IL_000b:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_2 = ___array0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_5 = ___value3;
RuntimeObject* L_6 = ___comparer4;
int32_t L_7 = (( int32_t (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_2, (int32_t)L_3, (int32_t)L_4, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_5, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
V_0 = (int32_t)L_7;
goto IL_0026;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.Exception)
V_1 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_8 = V_1;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, ArraySortHelper_1_BinarySearch_mCB24D2D0F36BE5C42952DF4E1A65966667330CB4_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0026:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m6B36A47612F2102125B3B576942122DF87FC735B_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m6B36A47612F2102125B3B576942122DF87FC735B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_0 = ___keys0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_3 = ___comparer3;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_0, (int32_t)L_1, (int32_t)L_2, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0021;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0014;
throw e;
}
CATCH_000b:
{ // begin catch(System.IndexOutOfRangeException)
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_4 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_4, /*hidden argument*/NULL);
goto IL_0021;
} // end catch (depth: 1)
CATCH_0014:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_5 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_6, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ArraySortHelper_1_Sort_m6B36A47612F2102125B3B576942122DF87FC735B_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_InternalBinarySearch_m1D19363ECB1993969D21C4CAA2D275510F104DA0_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, int32_t ___index1, int32_t ___length2, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___index1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
goto IL_0035;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
RuntimeObject* L_6 = ___comparer4;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_7 = ___array0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_11 = ___value3;
NullCheck((RuntimeObject*)L_6);
int32_t L_12 = InterfaceFuncInvoker2< int32_t, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Vector3>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_6, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_10, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_11);
V_3 = (int32_t)L_12;
int32_t L_13 = V_3;
if (L_13)
{
goto IL_0027;
}
}
{
int32_t L_14 = V_2;
return L_14;
}
IL_0027:
{
int32_t L_15 = V_3;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_16 = V_2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
goto IL_0035;
}
IL_0031:
{
int32_t L_17 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_0035:
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_000a;
}
}
{
int32_t L_20 = V_0;
return ((~L_20));
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_SwapIfGreater_m9EA170E8929035C15CBA0325E5C89FF3710848E4_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer1, int32_t ___a2, int32_t ___b3, const RuntimeMethod* method)
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___a2;
int32_t L_1 = ___b3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0039;
}
}
{
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_2 = ___comparer1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_3 = ___keys0;
int32_t L_4 = ___a2;
NullCheck(L_3);
int32_t L_5 = L_4;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_7 = ___keys0;
int32_t L_8 = ___b3;
NullCheck(L_7);
int32_t L_9 = L_8;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_2);
int32_t L_11 = (( int32_t (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_2, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_6, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_12 = ___keys0;
int32_t L_13 = ___a2;
NullCheck(L_12);
int32_t L_14 = L_13;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_15;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_16 = ___keys0;
int32_t L_17 = ___a2;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_18 = ___keys0;
int32_t L_19 = ___b3;
NullCheck(L_18);
int32_t L_20 = L_19;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_21);
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_22 = ___keys0;
int32_t L_23 = ___b3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_24);
}
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Swap(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Swap_m62F0BB019C0CB935BB2B205A2108CD6379D5C530_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___a0, int32_t ___i1, int32_t ___j2, const RuntimeMethod* method)
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___i1;
int32_t L_1 = ___j2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_2 = ___a0;
int32_t L_3 = ___i1;
NullCheck(L_2);
int32_t L_4 = L_3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_5;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_6 = ___a0;
int32_t L_7 = ___i1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_8 = ___a0;
int32_t L_9 = ___j2;
NullCheck(L_8);
int32_t L_10 = L_9;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_11);
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_12 = ___a0;
int32_t L_13 = ___j2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_14);
}
IL_0022:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m06189DFCF177FBD72AA99804D18AFDF5FE238003_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length2;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_1 = ___keys0;
int32_t L_2 = ___left1;
int32_t L_3 = ___length2;
int32_t L_4 = ___left1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_5 = ___keys0;
NullCheck(L_5);
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_7 = ___comparer3;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_1, (int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntroSort_m4AA8333275023633A7EAA0F538501EF814A286C2_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___lo1, int32_t ___hi2, int32_t ___depthLimit3, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0086;
}
IL_0005:
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_0056;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_5 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_6 = ___comparer4;
int32_t L_7 = ___lo1;
int32_t L_8 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_5, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_0024:
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_004b;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_10 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_11 = ___comparer4;
int32_t L_12 = ___lo1;
int32_t L_13 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_10, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_14 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_15 = ___comparer4;
int32_t L_16 = ___lo1;
int32_t L_17 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_14, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_18 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_19 = ___comparer4;
int32_t L_20 = ___hi2;
int32_t L_21 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_18, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_004b:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_22 = ___keys0;
int32_t L_23 = ___lo1;
int32_t L_24 = ___hi2;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_25 = ___comparer4;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_22, (int32_t)L_23, (int32_t)L_24, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
return;
}
IL_0056:
{
int32_t L_26 = ___depthLimit3;
if (L_26)
{
goto IL_0064;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_27 = ___keys0;
int32_t L_28 = ___lo1;
int32_t L_29 = ___hi2;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_30 = ___comparer4;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_27, (int32_t)L_28, (int32_t)L_29, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return;
}
IL_0064:
{
int32_t L_31 = ___depthLimit3;
___depthLimit3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_32 = ___keys0;
int32_t L_33 = ___lo1;
int32_t L_34 = ___hi2;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_35 = ___comparer4;
int32_t L_36 = (( int32_t (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_32, (int32_t)L_33, (int32_t)L_34, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
V_1 = (int32_t)L_36;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_37 = ___keys0;
int32_t L_38 = V_1;
int32_t L_39 = ___hi2;
int32_t L_40 = ___depthLimit3;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_41 = ___comparer4;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_37, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39, (int32_t)L_40, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
int32_t L_42 = V_1;
___hi2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1));
}
IL_0086:
{
int32_t L_43 = ___hi2;
int32_t L_44 = ___lo1;
if ((((int32_t)L_43) > ((int32_t)L_44)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_PickPivotAndPartition_m17736E436DA0F703DA28D9E49177793A9C5AB9D6_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo1;
int32_t L_1 = ___hi2;
int32_t L_2 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_3 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_4 = ___comparer3;
int32_t L_5 = ___lo1;
int32_t L_6 = V_0;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_3, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_7 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_8 = ___comparer3;
int32_t L_9 = ___lo1;
int32_t L_10 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_7, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_11 = ___keys0;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_12 = ___comparer3;
int32_t L_13 = V_0;
int32_t L_14 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_11, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_15 = ___keys0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = L_16;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_1 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_18;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_19 = ___keys0;
int32_t L_20 = V_0;
int32_t L_21 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_19, (int32_t)L_20, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_22 = ___lo1;
V_2 = (int32_t)L_22;
int32_t L_23 = ___hi2;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
goto IL_0073;
}
IL_003d:
{
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_24 = ___comparer3;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_25 = ___keys0;
int32_t L_26 = V_2;
int32_t L_27 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
V_2 = (int32_t)L_27;
NullCheck(L_25);
int32_t L_28 = L_27;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_29 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_30 = V_1;
NullCheck((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_24);
int32_t L_31 = (( int32_t (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_24, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_29, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0052:
{
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_32 = ___comparer3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_33 = V_1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_34 = ___keys0;
int32_t L_35 = V_3;
int32_t L_36 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_3 = (int32_t)L_36;
NullCheck(L_34);
int32_t L_37 = L_36;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_38 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_32);
int32_t L_39 = (( int32_t (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_32, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_33, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_38, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_39) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_40 = V_2;
int32_t L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0077;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_42 = ___keys0;
int32_t L_43 = V_2;
int32_t L_44 = V_3;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_42, (int32_t)L_43, (int32_t)L_44, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
}
IL_0073:
{
int32_t L_45 = V_2;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_003d;
}
}
IL_0077:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_47 = ___keys0;
int32_t L_48 = V_2;
int32_t L_49 = ___hi2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_47, (int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_50 = V_2;
return L_50;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Heapsort_mD6096E9760637A2DB9362DAFF7EC30E55CC3B32D_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001a;
}
IL_000c:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_3 = ___keys0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
int32_t L_6 = ___lo1;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_7 = ___comparer3;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_3, (int32_t)L_4, (int32_t)L_5, (int32_t)L_6, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_001a:
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_10 = V_0;
V_2 = (int32_t)L_10;
goto IL_003e;
}
IL_0022:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_11 = ___keys0;
int32_t L_12 = ___lo1;
int32_t L_13 = ___lo1;
int32_t L_14 = V_2;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_15 = ___keys0;
int32_t L_16 = V_2;
int32_t L_17 = ___lo1;
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_18 = ___comparer3;
(( void (*) (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*, int32_t, int32_t, int32_t, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28*)L_15, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)), (int32_t)L_17, (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_19 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_003e:
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0022;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_DownHeap_m60247F170280F9DA726F0D3600DF7834170DF64A_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___i1, int32_t ___n2, int32_t ___lo3, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer4, const RuntimeMethod* method)
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_0 = ___keys0;
int32_t L_1 = ___lo3;
int32_t L_2 = ___i1;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_4;
goto IL_0067;
}
IL_000e:
{
int32_t L_5 = ___i1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5));
int32_t L_6 = V_1;
int32_t L_7 = ___n2;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0038;
}
}
{
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_8 = ___comparer4;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_9 = ___keys0;
int32_t L_10 = ___lo3;
int32_t L_11 = V_1;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_14 = ___keys0;
int32_t L_15 = ___lo3;
int32_t L_16 = V_1;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_18 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_8);
int32_t L_19 = (( int32_t (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_8, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_13, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0038:
{
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_21 = ___comparer4;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_22 = V_0;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_23 = ___keys0;
int32_t L_24 = ___lo3;
int32_t L_25 = V_1;
NullCheck(L_23);
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (int32_t)1));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_21);
int32_t L_28 = (( int32_t (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_21, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_22, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_28) >= ((int32_t)0)))
{
goto IL_006d;
}
}
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_29 = ___keys0;
int32_t L_30 = ___lo3;
int32_t L_31 = ___i1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_32 = ___keys0;
int32_t L_33 = ___lo3;
int32_t L_34 = V_1;
NullCheck(L_32);
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)), (int32_t)1));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1))), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_36);
int32_t L_37 = V_1;
___i1 = (int32_t)L_37;
}
IL_0067:
{
int32_t L_38 = ___i1;
int32_t L_39 = ___n2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)((int32_t)L_39/(int32_t)2)))))
{
goto IL_000e;
}
}
IL_006d:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_40 = ___keys0;
int32_t L_41 = ___lo3;
int32_t L_42 = ___i1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_43 = V_0;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)1))), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_43);
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_InsertionSort_m2588951E1317C8D0A3FA708D57AA93108A824630_gshared (Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___lo1;
V_0 = (int32_t)L_0;
goto IL_0049;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_5;
goto IL_0026;
}
IL_0012:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_6 = ___keys0;
int32_t L_7 = V_1;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_8 = ___keys0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_11);
int32_t L_12 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
}
IL_0026:
{
int32_t L_13 = V_1;
int32_t L_14 = ___lo1;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_003b;
}
}
{
Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 * L_15 = ___comparer3;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_16 = V_2;
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_17 = ___keys0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_15);
int32_t L_21 = (( int32_t (*) (Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2610C89905912EB1EDFA27A459DB7E48850271A9 *)L_15, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_16, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0012;
}
}
IL_003b:
{
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_22 = ___keys0;
int32_t L_23 = V_1;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_24 = V_2;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_24);
int32_t L_25 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_0049:
{
int32_t L_26 = V_0;
int32_t L_27 = ___hi2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0004;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m2EDBEB7CCB015F07F54E95A321A0745AA443D5A1_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m2EDBEB7CCB015F07F54E95A321A0745AA443D5A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer3;
if (L_0)
{
goto IL_000a;
}
}
IL_0003:
{
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_1 = (( Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer3 = (RuntimeObject*)L_1;
}
IL_000a:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_2 = ___keys0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
RuntimeObject* L_5 = ___comparer3;
RuntimeObject* L_6 = (RuntimeObject*)L_5;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_7 = (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_7, (RuntimeObject *)L_6, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_6, 0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_2, (int32_t)L_3, (int32_t)L_4, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0037;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0021;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_0021:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_8 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_8, /*hidden argument*/NULL);
goto IL_0037;
} // end catch (depth: 1)
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_9 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_10, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArraySortHelper_1_Sort_m2EDBEB7CCB015F07F54E95A321A0745AA443D5A1_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_BinarySearch_m0B2F9D6EA76D97A87A36FF3F703176BA891689CE_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, int32_t ___index1, int32_t ___length2, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_BinarySearch_m0B2F9D6EA76D97A87A36FF3F703176BA891689CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000b;
}
}
IL_0004:
{
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_1 = (( Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer4 = (RuntimeObject*)L_1;
}
IL_000b:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_2 = ___array0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_5 = ___value3;
RuntimeObject* L_6 = ___comparer4;
int32_t L_7 = (( int32_t (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_2, (int32_t)L_3, (int32_t)L_4, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_5, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
V_0 = (int32_t)L_7;
goto IL_0026;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.Exception)
V_1 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_8 = V_1;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, ArraySortHelper_1_BinarySearch_m0B2F9D6EA76D97A87A36FF3F703176BA891689CE_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0026:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mEDEEC98ECFC836B58336F04CB3AE53E650E5FE8B_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_mEDEEC98ECFC836B58336F04CB3AE53E650E5FE8B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_0 = ___keys0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_3 = ___comparer3;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_0, (int32_t)L_1, (int32_t)L_2, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0021;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0014;
throw e;
}
CATCH_000b:
{ // begin catch(System.IndexOutOfRangeException)
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_4 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_4, /*hidden argument*/NULL);
goto IL_0021;
} // end catch (depth: 1)
CATCH_0014:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_5 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_6, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ArraySortHelper_1_Sort_mEDEEC98ECFC836B58336F04CB3AE53E650E5FE8B_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_InternalBinarySearch_m9F5DAEBAB783C543158C09EBFDC0863C09A5FDDF_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, int32_t ___index1, int32_t ___length2, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___index1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
goto IL_0035;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
RuntimeObject* L_6 = ___comparer4;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_7 = ___array0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_11 = ___value3;
NullCheck((RuntimeObject*)L_6);
int32_t L_12 = InterfaceFuncInvoker2< int32_t, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Vector4>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_6, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_10, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_11);
V_3 = (int32_t)L_12;
int32_t L_13 = V_3;
if (L_13)
{
goto IL_0027;
}
}
{
int32_t L_14 = V_2;
return L_14;
}
IL_0027:
{
int32_t L_15 = V_3;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_16 = V_2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
goto IL_0035;
}
IL_0031:
{
int32_t L_17 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_0035:
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_000a;
}
}
{
int32_t L_20 = V_0;
return ((~L_20));
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_SwapIfGreater_m8D10B0852D1BA0E825C37D431A570991FD6D67DF_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer1, int32_t ___a2, int32_t ___b3, const RuntimeMethod* method)
{
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___a2;
int32_t L_1 = ___b3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0039;
}
}
{
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_2 = ___comparer1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_3 = ___keys0;
int32_t L_4 = ___a2;
NullCheck(L_3);
int32_t L_5 = L_4;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_7 = ___keys0;
int32_t L_8 = ___b3;
NullCheck(L_7);
int32_t L_9 = L_8;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_2);
int32_t L_11 = (( int32_t (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_2, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_6, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_12 = ___keys0;
int32_t L_13 = ___a2;
NullCheck(L_12);
int32_t L_14 = L_13;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_15;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_16 = ___keys0;
int32_t L_17 = ___a2;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_18 = ___keys0;
int32_t L_19 = ___b3;
NullCheck(L_18);
int32_t L_20 = L_19;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_21);
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_22 = ___keys0;
int32_t L_23 = ___b3;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_24);
}
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Swap(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Swap_m24D1A44D961C214D9061457B816B3C9B0F10A6AA_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___a0, int32_t ___i1, int32_t ___j2, const RuntimeMethod* method)
{
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___i1;
int32_t L_1 = ___j2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_2 = ___a0;
int32_t L_3 = ___i1;
NullCheck(L_2);
int32_t L_4 = L_3;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_5;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_6 = ___a0;
int32_t L_7 = ___i1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_8 = ___a0;
int32_t L_9 = ___j2;
NullCheck(L_8);
int32_t L_10 = L_9;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_11);
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_12 = ___a0;
int32_t L_13 = ___j2;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_14);
}
IL_0022:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_mF832B622EE7325D0F5266F64D7380A7C84D87CF5_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length2;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_1 = ___keys0;
int32_t L_2 = ___left1;
int32_t L_3 = ___length2;
int32_t L_4 = ___left1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_5 = ___keys0;
NullCheck(L_5);
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_7 = ___comparer3;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_1, (int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntroSort_mD8A82E36E0A70FE16231C63E7473F90ED8CAC99F_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___lo1, int32_t ___hi2, int32_t ___depthLimit3, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0086;
}
IL_0005:
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_0056;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_5 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_6 = ___comparer4;
int32_t L_7 = ___lo1;
int32_t L_8 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_5, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_0024:
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_004b;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_10 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_11 = ___comparer4;
int32_t L_12 = ___lo1;
int32_t L_13 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_10, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_14 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_15 = ___comparer4;
int32_t L_16 = ___lo1;
int32_t L_17 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_14, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_18 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_19 = ___comparer4;
int32_t L_20 = ___hi2;
int32_t L_21 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_18, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_004b:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_22 = ___keys0;
int32_t L_23 = ___lo1;
int32_t L_24 = ___hi2;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_25 = ___comparer4;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_22, (int32_t)L_23, (int32_t)L_24, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
return;
}
IL_0056:
{
int32_t L_26 = ___depthLimit3;
if (L_26)
{
goto IL_0064;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_27 = ___keys0;
int32_t L_28 = ___lo1;
int32_t L_29 = ___hi2;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_30 = ___comparer4;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_27, (int32_t)L_28, (int32_t)L_29, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return;
}
IL_0064:
{
int32_t L_31 = ___depthLimit3;
___depthLimit3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_32 = ___keys0;
int32_t L_33 = ___lo1;
int32_t L_34 = ___hi2;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_35 = ___comparer4;
int32_t L_36 = (( int32_t (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_32, (int32_t)L_33, (int32_t)L_34, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
V_1 = (int32_t)L_36;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_37 = ___keys0;
int32_t L_38 = V_1;
int32_t L_39 = ___hi2;
int32_t L_40 = ___depthLimit3;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_41 = ___comparer4;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_37, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39, (int32_t)L_40, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
int32_t L_42 = V_1;
___hi2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1));
}
IL_0086:
{
int32_t L_43 = ___hi2;
int32_t L_44 = ___lo1;
if ((((int32_t)L_43) > ((int32_t)L_44)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_PickPivotAndPartition_mB485CF2D6CD940745A12CCA3E9F588C3E14656E2_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo1;
int32_t L_1 = ___hi2;
int32_t L_2 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_3 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_4 = ___comparer3;
int32_t L_5 = ___lo1;
int32_t L_6 = V_0;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_3, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_7 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_8 = ___comparer3;
int32_t L_9 = ___lo1;
int32_t L_10 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_7, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_11 = ___keys0;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_12 = ___comparer3;
int32_t L_13 = V_0;
int32_t L_14 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_11, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_15 = ___keys0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = L_16;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_1 = (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_18;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_19 = ___keys0;
int32_t L_20 = V_0;
int32_t L_21 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_19, (int32_t)L_20, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_22 = ___lo1;
V_2 = (int32_t)L_22;
int32_t L_23 = ___hi2;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
goto IL_0073;
}
IL_003d:
{
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_24 = ___comparer3;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_25 = ___keys0;
int32_t L_26 = V_2;
int32_t L_27 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
V_2 = (int32_t)L_27;
NullCheck(L_25);
int32_t L_28 = L_27;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_29 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_30 = V_1;
NullCheck((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_24);
int32_t L_31 = (( int32_t (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_24, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_29, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0052:
{
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_32 = ___comparer3;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_33 = V_1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_34 = ___keys0;
int32_t L_35 = V_3;
int32_t L_36 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_3 = (int32_t)L_36;
NullCheck(L_34);
int32_t L_37 = L_36;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_38 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_32);
int32_t L_39 = (( int32_t (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_32, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_33, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_38, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_39) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_40 = V_2;
int32_t L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0077;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_42 = ___keys0;
int32_t L_43 = V_2;
int32_t L_44 = V_3;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_42, (int32_t)L_43, (int32_t)L_44, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
}
IL_0073:
{
int32_t L_45 = V_2;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_003d;
}
}
IL_0077:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_47 = ___keys0;
int32_t L_48 = V_2;
int32_t L_49 = ___hi2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_47, (int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_50 = V_2;
return L_50;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Heapsort_m4BF148F82E0BFD28AA273DA1FF9CEF98EDE278CC_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001a;
}
IL_000c:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_3 = ___keys0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
int32_t L_6 = ___lo1;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_7 = ___comparer3;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_3, (int32_t)L_4, (int32_t)L_5, (int32_t)L_6, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_001a:
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_10 = V_0;
V_2 = (int32_t)L_10;
goto IL_003e;
}
IL_0022:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_11 = ___keys0;
int32_t L_12 = ___lo1;
int32_t L_13 = ___lo1;
int32_t L_14 = V_2;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_15 = ___keys0;
int32_t L_16 = V_2;
int32_t L_17 = ___lo1;
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_18 = ___comparer3;
(( void (*) (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*, int32_t, int32_t, int32_t, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66*)L_15, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)), (int32_t)L_17, (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_19 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_003e:
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0022;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_DownHeap_mDC953F5B4F13F22F72FCA50870E936AA9F39886E_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___i1, int32_t ___n2, int32_t ___lo3, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer4, const RuntimeMethod* method)
{
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_0 = ___keys0;
int32_t L_1 = ___lo3;
int32_t L_2 = ___i1;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_4;
goto IL_0067;
}
IL_000e:
{
int32_t L_5 = ___i1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5));
int32_t L_6 = V_1;
int32_t L_7 = ___n2;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0038;
}
}
{
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_8 = ___comparer4;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_9 = ___keys0;
int32_t L_10 = ___lo3;
int32_t L_11 = V_1;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_14 = ___keys0;
int32_t L_15 = ___lo3;
int32_t L_16 = V_1;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_18 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_8);
int32_t L_19 = (( int32_t (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_8, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_13, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0038:
{
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_21 = ___comparer4;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_22 = V_0;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_23 = ___keys0;
int32_t L_24 = ___lo3;
int32_t L_25 = V_1;
NullCheck(L_23);
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (int32_t)1));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_21);
int32_t L_28 = (( int32_t (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_21, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_22, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_28) >= ((int32_t)0)))
{
goto IL_006d;
}
}
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_29 = ___keys0;
int32_t L_30 = ___lo3;
int32_t L_31 = ___i1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_32 = ___keys0;
int32_t L_33 = ___lo3;
int32_t L_34 = V_1;
NullCheck(L_32);
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)), (int32_t)1));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1))), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_36);
int32_t L_37 = V_1;
___i1 = (int32_t)L_37;
}
IL_0067:
{
int32_t L_38 = ___i1;
int32_t L_39 = ___n2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)((int32_t)L_39/(int32_t)2)))))
{
goto IL_000e;
}
}
IL_006d:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_40 = ___keys0;
int32_t L_41 = ___lo3;
int32_t L_42 = ___i1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_43 = V_0;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)1))), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_43);
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_InsertionSort_mE335069B507E902410F0842F72E3ED3DD316847C_gshared (Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___lo1;
V_0 = (int32_t)L_0;
goto IL_0049;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_5;
goto IL_0026;
}
IL_0012:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_6 = ___keys0;
int32_t L_7 = V_1;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_8 = ___keys0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_11);
int32_t L_12 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
}
IL_0026:
{
int32_t L_13 = V_1;
int32_t L_14 = ___lo1;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_003b;
}
}
{
Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 * L_15 = ___comparer3;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_16 = V_2;
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_17 = ___keys0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_15);
int32_t L_21 = (( int32_t (*) (Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_tF9F70764A9056B13F73890AA8F374C203D2DC178 *)L_15, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_16, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0012;
}
}
IL_003b:
{
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_22 = ___keys0;
int32_t L_23 = V_1;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_24 = V_2;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )L_24);
int32_t L_25 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_0049:
{
int32_t L_26 = V_0;
int32_t L_27 = ___hi2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0004;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m7D0B63037D4CE7077F5656A8EE7C57CE626E07F2_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m7D0B63037D4CE7077F5656A8EE7C57CE626E07F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer3;
if (L_0)
{
goto IL_000a;
}
}
IL_0003:
{
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_1 = (( Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer3 = (RuntimeObject*)L_1;
}
IL_000a:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_2 = ___keys0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
RuntimeObject* L_5 = ___comparer3;
RuntimeObject* L_6 = (RuntimeObject*)L_5;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_7 = (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_7, (RuntimeObject *)L_6, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_6, 0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_2, (int32_t)L_3, (int32_t)L_4, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0037;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0021;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_0021:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_8 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_8, /*hidden argument*/NULL);
goto IL_0037;
} // end catch (depth: 1)
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_9 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_10, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArraySortHelper_1_Sort_m7D0B63037D4CE7077F5656A8EE7C57CE626E07F2_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_BinarySearch_mF56641C9B8DC52B271D9BC737243940591B7B5DF_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___array0, int32_t ___index1, int32_t ___length2, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_BinarySearch_mF56641C9B8DC52B271D9BC737243940591B7B5DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000b;
}
}
IL_0004:
{
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_1 = (( Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer4 = (RuntimeObject*)L_1;
}
IL_000b:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_2 = ___array0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_5 = ___value3;
RuntimeObject* L_6 = ___comparer4;
int32_t L_7 = (( int32_t (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_2, (int32_t)L_3, (int32_t)L_4, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_5, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
V_0 = (int32_t)L_7;
goto IL_0026;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.Exception)
V_1 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_8 = V_1;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, ArraySortHelper_1_BinarySearch_mF56641C9B8DC52B271D9BC737243940591B7B5DF_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0026:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_mC1043B732F0D449BC8989C1C051DCA9F379A4801_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_mC1043B732F0D449BC8989C1C051DCA9F379A4801_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_0 = ___keys0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_3 = ___comparer3;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_0, (int32_t)L_1, (int32_t)L_2, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0021;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0014;
throw e;
}
CATCH_000b:
{ // begin catch(System.IndexOutOfRangeException)
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_4 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_4, /*hidden argument*/NULL);
goto IL_0021;
} // end catch (depth: 1)
CATCH_0014:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_5 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_6, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ArraySortHelper_1_Sort_mC1043B732F0D449BC8989C1C051DCA9F379A4801_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_InternalBinarySearch_m43BFF287CB53400B75A21F49E6B02AFCAEB1347B_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___array0, int32_t ___index1, int32_t ___length2, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___index1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
goto IL_0035;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
RuntimeObject* L_6 = ___comparer4;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_7 = ___array0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_11 = ___value3;
NullCheck((RuntimeObject*)L_6);
int32_t L_12 = InterfaceFuncInvoker2< int32_t, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.XR.iOS.ARHitTestResult>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_6, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_10, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_11);
V_3 = (int32_t)L_12;
int32_t L_13 = V_3;
if (L_13)
{
goto IL_0027;
}
}
{
int32_t L_14 = V_2;
return L_14;
}
IL_0027:
{
int32_t L_15 = V_3;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_16 = V_2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
goto IL_0035;
}
IL_0031:
{
int32_t L_17 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_0035:
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_000a;
}
}
{
int32_t L_20 = V_0;
return ((~L_20));
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_SwapIfGreater_m3E98BEE95F7EF1B728CF2894AE0DF4F433BBA0EC_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer1, int32_t ___a2, int32_t ___b3, const RuntimeMethod* method)
{
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___a2;
int32_t L_1 = ___b3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0039;
}
}
{
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_2 = ___comparer1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_3 = ___keys0;
int32_t L_4 = ___a2;
NullCheck(L_3);
int32_t L_5 = L_4;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_7 = ___keys0;
int32_t L_8 = ___b3;
NullCheck(L_7);
int32_t L_9 = L_8;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_2);
int32_t L_11 = (( int32_t (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_2, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_6, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_12 = ___keys0;
int32_t L_13 = ___a2;
NullCheck(L_12);
int32_t L_14 = L_13;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_15;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_16 = ___keys0;
int32_t L_17 = ___a2;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_18 = ___keys0;
int32_t L_19 = ___b3;
NullCheck(L_18);
int32_t L_20 = L_19;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_21);
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_22 = ___keys0;
int32_t L_23 = ___b3;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_24);
}
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::Swap(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Swap_mE0B512F29660DA1596048FDEB00B12779AEAD3EF_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___a0, int32_t ___i1, int32_t ___j2, const RuntimeMethod* method)
{
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___i1;
int32_t L_1 = ___j2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_2 = ___a0;
int32_t L_3 = ___i1;
NullCheck(L_2);
int32_t L_4 = L_3;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_5;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_6 = ___a0;
int32_t L_7 = ___i1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_8 = ___a0;
int32_t L_9 = ___j2;
NullCheck(L_8);
int32_t L_10 = L_9;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_11);
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_12 = ___a0;
int32_t L_13 = ___j2;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_14);
}
IL_0022:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m3A87C9321B4D78047AC54A10FD3183A531BAD012_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length2;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_1 = ___keys0;
int32_t L_2 = ___left1;
int32_t L_3 = ___length2;
int32_t L_4 = ___left1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_5 = ___keys0;
NullCheck(L_5);
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_7 = ___comparer3;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_1, (int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntroSort_mBFDFE2D3AFFBC90619809F42C8057308F3A5C9DF_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___lo1, int32_t ___hi2, int32_t ___depthLimit3, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0086;
}
IL_0005:
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_0056;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_5 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_6 = ___comparer4;
int32_t L_7 = ___lo1;
int32_t L_8 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_5, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_0024:
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_004b;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_10 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_11 = ___comparer4;
int32_t L_12 = ___lo1;
int32_t L_13 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_10, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_14 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_15 = ___comparer4;
int32_t L_16 = ___lo1;
int32_t L_17 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_14, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_18 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_19 = ___comparer4;
int32_t L_20 = ___hi2;
int32_t L_21 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_18, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_004b:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_22 = ___keys0;
int32_t L_23 = ___lo1;
int32_t L_24 = ___hi2;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_25 = ___comparer4;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_22, (int32_t)L_23, (int32_t)L_24, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
return;
}
IL_0056:
{
int32_t L_26 = ___depthLimit3;
if (L_26)
{
goto IL_0064;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_27 = ___keys0;
int32_t L_28 = ___lo1;
int32_t L_29 = ___hi2;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_30 = ___comparer4;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_27, (int32_t)L_28, (int32_t)L_29, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return;
}
IL_0064:
{
int32_t L_31 = ___depthLimit3;
___depthLimit3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_32 = ___keys0;
int32_t L_33 = ___lo1;
int32_t L_34 = ___hi2;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_35 = ___comparer4;
int32_t L_36 = (( int32_t (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_32, (int32_t)L_33, (int32_t)L_34, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
V_1 = (int32_t)L_36;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_37 = ___keys0;
int32_t L_38 = V_1;
int32_t L_39 = ___hi2;
int32_t L_40 = ___depthLimit3;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_41 = ___comparer4;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_37, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39, (int32_t)L_40, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
int32_t L_42 = V_1;
___hi2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1));
}
IL_0086:
{
int32_t L_43 = ___hi2;
int32_t L_44 = ___lo1;
if ((((int32_t)L_43) > ((int32_t)L_44)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_PickPivotAndPartition_m2253DAC4428C1E0CECE8C9C80907F13F4C6F7B35_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo1;
int32_t L_1 = ___hi2;
int32_t L_2 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_3 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_4 = ___comparer3;
int32_t L_5 = ___lo1;
int32_t L_6 = V_0;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_3, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_7 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_8 = ___comparer3;
int32_t L_9 = ___lo1;
int32_t L_10 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_7, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_11 = ___keys0;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_12 = ___comparer3;
int32_t L_13 = V_0;
int32_t L_14 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_11, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_15 = ___keys0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = L_16;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_1 = (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_18;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_19 = ___keys0;
int32_t L_20 = V_0;
int32_t L_21 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_19, (int32_t)L_20, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_22 = ___lo1;
V_2 = (int32_t)L_22;
int32_t L_23 = ___hi2;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
goto IL_0073;
}
IL_003d:
{
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_24 = ___comparer3;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_25 = ___keys0;
int32_t L_26 = V_2;
int32_t L_27 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
V_2 = (int32_t)L_27;
NullCheck(L_25);
int32_t L_28 = L_27;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_29 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_30 = V_1;
NullCheck((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_24);
int32_t L_31 = (( int32_t (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_24, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_29, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0052:
{
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_32 = ___comparer3;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_33 = V_1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_34 = ___keys0;
int32_t L_35 = V_3;
int32_t L_36 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_3 = (int32_t)L_36;
NullCheck(L_34);
int32_t L_37 = L_36;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_38 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_32);
int32_t L_39 = (( int32_t (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_32, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_33, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_38, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_39) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_40 = V_2;
int32_t L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0077;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_42 = ___keys0;
int32_t L_43 = V_2;
int32_t L_44 = V_3;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_42, (int32_t)L_43, (int32_t)L_44, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
}
IL_0073:
{
int32_t L_45 = V_2;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_003d;
}
}
IL_0077:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_47 = ___keys0;
int32_t L_48 = V_2;
int32_t L_49 = ___hi2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_47, (int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_50 = V_2;
return L_50;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Heapsort_m905863BE494E5EF04B3F9486F1477FB82E598443_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001a;
}
IL_000c:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_3 = ___keys0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
int32_t L_6 = ___lo1;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_7 = ___comparer3;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_3, (int32_t)L_4, (int32_t)L_5, (int32_t)L_6, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_001a:
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_10 = V_0;
V_2 = (int32_t)L_10;
goto IL_003e;
}
IL_0022:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_11 = ___keys0;
int32_t L_12 = ___lo1;
int32_t L_13 = ___lo1;
int32_t L_14 = V_2;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_15 = ___keys0;
int32_t L_16 = V_2;
int32_t L_17 = ___lo1;
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_18 = ___comparer3;
(( void (*) (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*, int32_t, int32_t, int32_t, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588*)L_15, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)), (int32_t)L_17, (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_19 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_003e:
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0022;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_DownHeap_m578DA07E0DB8FA1978B057B6AF96B0C553FE7842_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___i1, int32_t ___n2, int32_t ___lo3, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer4, const RuntimeMethod* method)
{
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_0 = ___keys0;
int32_t L_1 = ___lo3;
int32_t L_2 = ___i1;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_4;
goto IL_0067;
}
IL_000e:
{
int32_t L_5 = ___i1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5));
int32_t L_6 = V_1;
int32_t L_7 = ___n2;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0038;
}
}
{
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_8 = ___comparer4;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_9 = ___keys0;
int32_t L_10 = ___lo3;
int32_t L_11 = V_1;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_14 = ___keys0;
int32_t L_15 = ___lo3;
int32_t L_16 = V_1;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_18 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_8);
int32_t L_19 = (( int32_t (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_8, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_13, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0038:
{
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_21 = ___comparer4;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_22 = V_0;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_23 = ___keys0;
int32_t L_24 = ___lo3;
int32_t L_25 = V_1;
NullCheck(L_23);
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (int32_t)1));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_21);
int32_t L_28 = (( int32_t (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_21, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_22, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_28) >= ((int32_t)0)))
{
goto IL_006d;
}
}
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_29 = ___keys0;
int32_t L_30 = ___lo3;
int32_t L_31 = ___i1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_32 = ___keys0;
int32_t L_33 = ___lo3;
int32_t L_34 = V_1;
NullCheck(L_32);
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)), (int32_t)1));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1))), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_36);
int32_t L_37 = V_1;
___i1 = (int32_t)L_37;
}
IL_0067:
{
int32_t L_38 = ___i1;
int32_t L_39 = ___n2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)((int32_t)L_39/(int32_t)2)))))
{
goto IL_000e;
}
}
IL_006d:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_40 = ___keys0;
int32_t L_41 = ___lo3;
int32_t L_42 = ___i1;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_43 = V_0;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)1))), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_43);
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.ARHitTestResult>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_InsertionSort_m3F4D16B59E75DD91110592BE54EE7865BA902777_gshared (ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___lo1;
V_0 = (int32_t)L_0;
goto IL_0049;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_5;
goto IL_0026;
}
IL_0012:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_6 = ___keys0;
int32_t L_7 = V_1;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_8 = ___keys0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_11);
int32_t L_12 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
}
IL_0026:
{
int32_t L_13 = V_1;
int32_t L_14 = ___lo1;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_003b;
}
}
{
Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 * L_15 = ___comparer3;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_16 = V_2;
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_17 = ___keys0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_15);
int32_t L_21 = (( int32_t (*) (Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t2D0CE9EA40A47596186CF3D4B4B9E42EEAF88592 *)L_15, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_16, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0012;
}
}
IL_003b:
{
ARHitTestResultU5BU5D_t1F41AB81509971EA02FE35CDE6F10612FF4CF588* L_22 = ___keys0;
int32_t L_23 = V_1;
ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E L_24 = V_2;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )L_24);
int32_t L_25 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_0049:
{
int32_t L_26 = V_0;
int32_t L_27 = ___hi2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0004;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m20AC4539CFE4FB2D2C74C07379BDC633C52D020D_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m20AC4539CFE4FB2D2C74C07379BDC633C52D020D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer3;
if (L_0)
{
goto IL_000a;
}
}
IL_0003:
{
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_1 = (( Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer3 = (RuntimeObject*)L_1;
}
IL_000a:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_2 = ___keys0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
RuntimeObject* L_5 = ___comparer3;
RuntimeObject* L_6 = (RuntimeObject*)L_5;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_7 = (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4));
(( void (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)->methodPointer)(L_7, (RuntimeObject *)L_6, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_6, 0, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_2, (int32_t)L_3, (int32_t)L_4, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0037;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0021;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_0021:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_8 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_8, /*hidden argument*/NULL);
goto IL_0037;
} // end catch (depth: 1)
CATCH_002a:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_9 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_10, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArraySortHelper_1_Sort_m20AC4539CFE4FB2D2C74C07379BDC633C52D020D_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0037:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_BinarySearch_mCA08144B82033D4C9FFC6E51E2226DC28E20BA9E_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___array0, int32_t ___index1, int32_t ___length2, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_BinarySearch_mCA08144B82033D4C9FFC6E51E2226DC28E20BA9E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000b;
}
}
IL_0004:
{
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_1 = (( Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
___comparer4 = (RuntimeObject*)L_1;
}
IL_000b:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_2 = ___array0;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_5 = ___value3;
RuntimeObject* L_6 = ___comparer4;
int32_t L_7 = (( int32_t (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_2, (int32_t)L_3, (int32_t)L_4, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_5, (RuntimeObject*)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
V_0 = (int32_t)L_7;
goto IL_0026;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.Exception)
V_1 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_8 = V_1;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, ArraySortHelper_1_BinarySearch_mCA08144B82033D4C9FFC6E51E2226DC28E20BA9E_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0026:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Sort_m0FBECB30D64BE2FFE97C762E9EB82D4EA8A9D259_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___index1, int32_t ___length2, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_1_Sort_m0FBECB30D64BE2FFE97C762E9EB82D4EA8A9D259_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_0 = ___keys0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_3 = ___comparer3;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_0, (int32_t)L_1, (int32_t)L_2, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
goto IL_0021;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0014;
throw e;
}
CATCH_000b:
{ // begin catch(System.IndexOutOfRangeException)
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_4 = ___comparer3;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_4, /*hidden argument*/NULL);
goto IL_0021;
} // end catch (depth: 1)
CATCH_0014:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_5 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_6, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, ArraySortHelper_1_Sort_m0FBECB30D64BE2FFE97C762E9EB82D4EA8A9D259_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0021:
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_InternalBinarySearch_m0BE95FEDDF16AB5A5CB7227246438706A381587C_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___array0, int32_t ___index1, int32_t ___length2, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___index1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
goto IL_0035;
}
IL_000a:
{
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
RuntimeObject* L_6 = ___comparer4;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_7 = ___array0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_11 = ___value3;
NullCheck((RuntimeObject*)L_6);
int32_t L_12 = InterfaceFuncInvoker2< int32_t, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), (RuntimeObject*)L_6, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_10, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_11);
V_3 = (int32_t)L_12;
int32_t L_13 = V_3;
if (L_13)
{
goto IL_0027;
}
}
{
int32_t L_14 = V_2;
return L_14;
}
IL_0027:
{
int32_t L_15 = V_3;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0031;
}
}
{
int32_t L_16 = V_2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
goto IL_0035;
}
IL_0031:
{
int32_t L_17 = V_2;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_0035:
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
if ((((int32_t)L_18) <= ((int32_t)L_19)))
{
goto IL_000a;
}
}
{
int32_t L_20 = V_0;
return ((~L_20));
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_SwapIfGreater_mAF0D908530BE8D849C722E65F91543C49A322CCB_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer1, int32_t ___a2, int32_t ___b3, const RuntimeMethod* method)
{
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___a2;
int32_t L_1 = ___b3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0039;
}
}
{
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_2 = ___comparer1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_3 = ___keys0;
int32_t L_4 = ___a2;
NullCheck(L_3);
int32_t L_5 = L_4;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_7 = ___keys0;
int32_t L_8 = ___b3;
NullCheck(L_7);
int32_t L_9 = L_8;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_2);
int32_t L_11 = (( int32_t (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_2, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_6, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_12 = ___keys0;
int32_t L_13 = ___a2;
NullCheck(L_12);
int32_t L_14 = L_13;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_15;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_16 = ___keys0;
int32_t L_17 = ___a2;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_18 = ___keys0;
int32_t L_19 = ___b3;
NullCheck(L_18);
int32_t L_20 = L_19;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_21);
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_22 = ___keys0;
int32_t L_23 = ___b3;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_24);
}
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::Swap(T[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Swap_mF4A950F9FAF3B2C973C5C94A54E2C4CAE46BDC01_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___a0, int32_t ___i1, int32_t ___j2, const RuntimeMethod* method)
{
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___i1;
int32_t L_1 = ___j2;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0022;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_2 = ___a0;
int32_t L_3 = ___i1;
NullCheck(L_2);
int32_t L_4 = L_3;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_5;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_6 = ___a0;
int32_t L_7 = ___i1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_8 = ___a0;
int32_t L_9 = ___j2;
NullCheck(L_8);
int32_t L_10 = L_9;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_11);
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_12 = ___a0;
int32_t L_13 = ___j2;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_14);
}
IL_0022:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m32E0F083021A609CDE43E39B397BDF6A7BBB9DD5_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length2;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_1 = ___keys0;
int32_t L_2 = ___left1;
int32_t L_3 = ___length2;
int32_t L_4 = ___left1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_5 = ___keys0;
NullCheck(L_5);
int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/NULL);
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_7 = ___comparer3;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_1, (int32_t)L_2, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntroSort_mDFE6F14F342A8870F7FA26279DBFC087C052EEAD_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___lo1, int32_t ___hi2, int32_t ___depthLimit3, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0086;
}
IL_0005:
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_0056;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0024;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_5 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_6 = ___comparer4;
int32_t L_7 = ___lo1;
int32_t L_8 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_5, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_0024:
{
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)3))))
{
goto IL_004b;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_10 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_11 = ___comparer4;
int32_t L_12 = ___lo1;
int32_t L_13 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_10, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_14 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_15 = ___comparer4;
int32_t L_16 = ___lo1;
int32_t L_17 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_14, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_18 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_19 = ___comparer4;
int32_t L_20 = ___hi2;
int32_t L_21 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_18, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_19, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), (int32_t)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_004b:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_22 = ___keys0;
int32_t L_23 = ___lo1;
int32_t L_24 = ___hi2;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_25 = ___comparer4;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_22, (int32_t)L_23, (int32_t)L_24, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
return;
}
IL_0056:
{
int32_t L_26 = ___depthLimit3;
if (L_26)
{
goto IL_0064;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_27 = ___keys0;
int32_t L_28 = ___lo1;
int32_t L_29 = ___hi2;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_30 = ___comparer4;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_27, (int32_t)L_28, (int32_t)L_29, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
return;
}
IL_0064:
{
int32_t L_31 = ___depthLimit3;
___depthLimit3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_32 = ___keys0;
int32_t L_33 = ___lo1;
int32_t L_34 = ___hi2;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_35 = ___comparer4;
int32_t L_36 = (( int32_t (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_32, (int32_t)L_33, (int32_t)L_34, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_35, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
V_1 = (int32_t)L_36;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_37 = ___keys0;
int32_t L_38 = V_1;
int32_t L_39 = ___hi2;
int32_t L_40 = ___depthLimit3;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_41 = ___comparer4;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_37, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39, (int32_t)L_40, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
int32_t L_42 = V_1;
___hi2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1));
}
IL_0086:
{
int32_t L_43 = ___hi2;
int32_t L_44 = ___lo1;
if ((((int32_t)L_43) > ((int32_t)L_44)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_1_PickPivotAndPartition_m77514C8CFE3065647BE0AE8ACB187BA34661E732_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo1;
int32_t L_1 = ___hi2;
int32_t L_2 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_3 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_4 = ___comparer3;
int32_t L_5 = ___lo1;
int32_t L_6 = V_0;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_3, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_4, (int32_t)L_5, (int32_t)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_7 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_8 = ___comparer3;
int32_t L_9 = ___lo1;
int32_t L_10 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_7, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_8, (int32_t)L_9, (int32_t)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_11 = ___keys0;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_12 = ___comparer3;
int32_t L_13 = V_0;
int32_t L_14 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_11, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_12, (int32_t)L_13, (int32_t)L_14, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_15 = ___keys0;
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = L_16;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
V_1 = (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_18;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_19 = ___keys0;
int32_t L_20 = V_0;
int32_t L_21 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_19, (int32_t)L_20, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_22 = ___lo1;
V_2 = (int32_t)L_22;
int32_t L_23 = ___hi2;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
goto IL_0073;
}
IL_003d:
{
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_24 = ___comparer3;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_25 = ___keys0;
int32_t L_26 = V_2;
int32_t L_27 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
V_2 = (int32_t)L_27;
NullCheck(L_25);
int32_t L_28 = L_27;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_29 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_30 = V_1;
NullCheck((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_24);
int32_t L_31 = (( int32_t (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_24, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_29, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_31) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0052:
{
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_32 = ___comparer3;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_33 = V_1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_34 = ___keys0;
int32_t L_35 = V_3;
int32_t L_36 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
V_3 = (int32_t)L_36;
NullCheck(L_34);
int32_t L_37 = L_36;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_38 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_32);
int32_t L_39 = (( int32_t (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_32, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_33, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_38, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_39) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_40 = V_2;
int32_t L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0077;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_42 = ___keys0;
int32_t L_43 = V_2;
int32_t L_44 = V_3;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_42, (int32_t)L_43, (int32_t)L_44, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
}
IL_0073:
{
int32_t L_45 = V_2;
int32_t L_46 = V_3;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_003d;
}
}
IL_0077:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_47 = ___keys0;
int32_t L_48 = V_2;
int32_t L_49 = ___hi2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_47, (int32_t)L_48, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
int32_t L_50 = V_2;
return L_50;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_Heapsort_m85894FD127EF2A5ED47707B36F6C0305E9566F74_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi2;
int32_t L_1 = ___lo1;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001a;
}
IL_000c:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_3 = ___keys0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
int32_t L_6 = ___lo1;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_7 = ___comparer3;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_3, (int32_t)L_4, (int32_t)L_5, (int32_t)L_6, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
}
IL_001a:
{
int32_t L_9 = V_1;
if ((((int32_t)L_9) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_10 = V_0;
V_2 = (int32_t)L_10;
goto IL_003e;
}
IL_0022:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_11 = ___keys0;
int32_t L_12 = ___lo1;
int32_t L_13 = ___lo1;
int32_t L_14 = V_2;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_11, (int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 15));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_15 = ___keys0;
int32_t L_16 = V_2;
int32_t L_17 = ___lo1;
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_18 = ___comparer3;
(( void (*) (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*, int32_t, int32_t, int32_t, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)->methodPointer)((UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED*)L_15, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)), (int32_t)L_17, (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16));
int32_t L_19 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_003e:
{
int32_t L_20 = V_2;
if ((((int32_t)L_20) > ((int32_t)1)))
{
goto IL_0022;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_DownHeap_mCF09F7CF95079BFD40DFC96EAF78F36BE55BE644_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___i1, int32_t ___n2, int32_t ___lo3, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer4, const RuntimeMethod* method)
{
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_0 = ___keys0;
int32_t L_1 = ___lo3;
int32_t L_2 = ___i1;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_4;
goto IL_0067;
}
IL_000e:
{
int32_t L_5 = ___i1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5));
int32_t L_6 = V_1;
int32_t L_7 = ___n2;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_0038;
}
}
{
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_8 = ___comparer4;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_9 = ___keys0;
int32_t L_10 = ___lo3;
int32_t L_11 = V_1;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_14 = ___keys0;
int32_t L_15 = ___lo3;
int32_t L_16 = V_1;
NullCheck(L_14);
int32_t L_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_18 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_8);
int32_t L_19 = (( int32_t (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_8, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_13, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_0038;
}
}
{
int32_t L_20 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0038:
{
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_21 = ___comparer4;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_22 = V_0;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_23 = ___keys0;
int32_t L_24 = ___lo3;
int32_t L_25 = V_1;
NullCheck(L_23);
int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), (int32_t)1));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_27 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_21);
int32_t L_28 = (( int32_t (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_21, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_22, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_27, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_28) >= ((int32_t)0)))
{
goto IL_006d;
}
}
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_29 = ___keys0;
int32_t L_30 = ___lo3;
int32_t L_31 = ___i1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_32 = ___keys0;
int32_t L_33 = ___lo3;
int32_t L_34 = V_1;
NullCheck(L_32);
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)), (int32_t)1));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_36 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_29);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1))), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_36);
int32_t L_37 = V_1;
___i1 = (int32_t)L_37;
}
IL_0067:
{
int32_t L_38 = ___i1;
int32_t L_39 = ___n2;
if ((((int32_t)L_38) <= ((int32_t)((int32_t)((int32_t)L_39/(int32_t)2)))))
{
goto IL_000e;
}
}
IL_006d:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_40 = ___keys0;
int32_t L_41 = ___lo3;
int32_t L_42 = ___i1;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_43 = V_0;
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)1))), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_43);
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.XR.iOS.UnityARVideoFormat>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_InsertionSort_mD7486F13237B2CEE9BAC7D3445C50569A814C4D0_gshared (UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* ___keys0, int32_t ___lo1, int32_t ___hi2, Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * ___comparer3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___lo1;
V_0 = (int32_t)L_0;
goto IL_0049;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_5;
goto IL_0026;
}
IL_0012:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_6 = ___keys0;
int32_t L_7 = V_1;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_8 = ___keys0;
int32_t L_9 = V_1;
NullCheck(L_8);
int32_t L_10 = L_9;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_11);
int32_t L_12 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
}
IL_0026:
{
int32_t L_13 = V_1;
int32_t L_14 = ___lo1;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_003b;
}
}
{
Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 * L_15 = ___comparer3;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_16 = V_2;
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_17 = ___keys0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
NullCheck((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_15);
int32_t L_21 = (( int32_t (*) (Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((Comparison_1_t77A2B0DE3896A0A9EAD29626663AE8D441C110E8 *)L_15, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_16, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0012;
}
}
IL_003b:
{
UnityARVideoFormatU5BU5D_t9BD2BED5536D57391846494DD876F3904E42EEED* L_22 = ___keys0;
int32_t L_23 = V_1;
UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 L_24 = V_2;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )L_24);
int32_t L_25 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_0049:
{
int32_t L_26 = V_0;
int32_t L_27 = ___hi2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0004;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * ArraySortHelper_2_get_Default_m1E45A9F6D553A4FB8A182D0E0E6B87FD976B1DA5_gshared (const RuntimeMethod* method)
{
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * V_0 = NULL;
{
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * L_0 = ((ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_defaultArraySortHelper_0();
il2cpp_codegen_memory_barrier();
V_0 = (ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F *)L_0;
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * L_1 = V_0;
if (L_1)
{
goto IL_0011;
}
}
{
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * L_2 = (( ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F *)L_2;
}
IL_0011:
{
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * L_3 = V_0;
return L_3;
}
}
// System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::CreateArraySortHelper()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * ArraySortHelper_2_CreateArraySortHelper_mB6AC9A02393AE22420B9BAD99E266F88C8A5E650_gshared (const RuntimeMethod* method)
{
{
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * L_0 = (ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
il2cpp_codegen_memory_barrier();
((ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_defaultArraySortHelper_0(L_0);
ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * L_1 = ((ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_defaultArraySortHelper_0();
il2cpp_codegen_memory_barrier();
return L_1;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_Sort_m54990056CBDEC54715AFEF54BF5698F41F0E82DE_gshared (ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_2_Sort_m54990056CBDEC54715AFEF54BF5698F41F0E82DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (!L_0)
{
goto IL_000d;
}
}
IL_0004:
{
RuntimeObject* L_1 = ___comparer4;
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_2 = (( Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if ((!(((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)L_2))))
{
goto IL_0014;
}
}
IL_000d:
{
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_3 = (( Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
___comparer4 = (RuntimeObject*)L_3;
}
IL_0014:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___values1;
int32_t L_6 = ___index2;
int32_t L_7 = ___length3;
RuntimeObject* L_8 = ___comparer4;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
goto IL_0039;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0022;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002c;
throw e;
}
CATCH_0022:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_9 = ___comparer4;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_9, /*hidden argument*/NULL);
goto IL_0039;
} // end catch (depth: 1)
CATCH_002c:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_10 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_11 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_11, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, ArraySortHelper_2_Sort_m54990056CBDEC54715AFEF54BF5698F41F0E82DE_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_SwapIfGreaterWithItems_m88846390E19006567946254C1AAE33BEAADE6C31_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, RuntimeObject* ___comparer2, int32_t ___a3, int32_t ___b4, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = ___a3;
int32_t L_1 = ___b4;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0060;
}
}
{
RuntimeObject* L_2 = ___comparer2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___keys0;
int32_t L_4 = ___a3;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ___keys0;
int32_t L_8 = ___b4;
NullCheck(L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((RuntimeObject*)L_2);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_2, (RuntimeObject *)L_6, (RuntimeObject *)L_10);
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0060;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___keys0;
int32_t L_13 = ___a3;
NullCheck(L_12);
int32_t L_14 = L_13;
RuntimeObject * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (RuntimeObject *)L_15;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___keys0;
int32_t L_17 = ___a3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___keys0;
int32_t L_19 = ___b4;
NullCheck(L_18);
int32_t L_20 = L_19;
RuntimeObject * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject *)L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = ___keys0;
int32_t L_23 = ___b4;
RuntimeObject * L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_24);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = ___values1;
if (!L_25)
{
goto IL_0060;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___values1;
int32_t L_27 = ___a3;
NullCheck(L_26);
int32_t L_28 = L_27;
RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
V_1 = (RuntimeObject *)L_29;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = ___values1;
int32_t L_31 = ___a3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = ___values1;
int32_t L_33 = ___b4;
NullCheck(L_32);
int32_t L_34 = L_33;
RuntimeObject * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (RuntimeObject *)L_35);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = ___values1;
int32_t L_37 = ___b4;
RuntimeObject * L_38 = V_1;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (RuntimeObject *)L_38);
}
IL_0060:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Swap(TKey[],TValue[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_Swap_m7EFA8F89637E090682D004EDF965BC7BDD13CA6F_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___i2, int32_t ___j3, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = ___i2;
int32_t L_1 = ___j3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0043;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___keys0;
int32_t L_3 = ___i2;
NullCheck(L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (RuntimeObject *)L_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___keys0;
int32_t L_7 = ___i2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___keys0;
int32_t L_9 = ___j3;
NullCheck(L_8);
int32_t L_10 = L_9;
RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_11);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___keys0;
int32_t L_13 = ___j3;
RuntimeObject * L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RuntimeObject *)L_14);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = ___values1;
if (!L_15)
{
goto IL_0043;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___values1;
int32_t L_17 = ___i2;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_1 = (RuntimeObject *)L_19;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ___values1;
int32_t L_21 = ___i2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = ___values1;
int32_t L_23 = ___j3;
NullCheck(L_22);
int32_t L_24 = L_23;
RuntimeObject * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)L_25);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___values1;
int32_t L_27 = ___j3;
RuntimeObject * L_28 = V_1;
NullCheck(L_26);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (RuntimeObject *)L_28);
}
IL_0043:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_IntrospectiveSort_m8E8E1DA828CC8456055B1B8EFA48969FE6E457D2_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___left2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length3;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___values1;
int32_t L_3 = ___left2;
int32_t L_4 = ___length3;
int32_t L_5 = ___left2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___keys0;
NullCheck(L_6);
int32_t L_7 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), /*hidden argument*/NULL);
RuntimeObject* L_8 = ___comparer4;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_7)), (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_IntroSort_m304317DA8DFD25E60FCCA3E882B3D8B4E79E17CF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, int32_t ___depthLimit4, RuntimeObject* ___comparer5, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0091;
}
IL_0005:
{
int32_t L_0 = ___hi3;
int32_t L_1 = ___lo2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_005b;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0025;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___values1;
RuntimeObject* L_7 = ___comparer5;
int32_t L_8 = ___lo2;
int32_t L_9 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_5, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_6, (RuntimeObject*)L_7, (int32_t)L_8, (int32_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
return;
}
IL_0025:
{
int32_t L_10 = V_0;
if ((!(((uint32_t)L_10) == ((uint32_t)3))))
{
goto IL_004f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___values1;
RuntimeObject* L_13 = ___comparer5;
int32_t L_14 = ___lo2;
int32_t L_15 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_11, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_12, (RuntimeObject*)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = ___values1;
RuntimeObject* L_18 = ___comparer5;
int32_t L_19 = ___lo2;
int32_t L_20 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_16, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_17, (RuntimeObject*)L_18, (int32_t)L_19, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = ___values1;
RuntimeObject* L_23 = ___comparer5;
int32_t L_24 = ___hi3;
int32_t L_25 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_21, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_22, (RuntimeObject*)L_23, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)), (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
return;
}
IL_004f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = ___values1;
int32_t L_28 = ___lo2;
int32_t L_29 = ___hi3;
RuntimeObject* L_30 = ___comparer5;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_26, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_27, (int32_t)L_28, (int32_t)L_29, (RuntimeObject*)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
IL_005b:
{
int32_t L_31 = ___depthLimit4;
if (L_31)
{
goto IL_006b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = ___values1;
int32_t L_34 = ___lo2;
int32_t L_35 = ___hi3;
RuntimeObject* L_36 = ___comparer5;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_32, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_33, (int32_t)L_34, (int32_t)L_35, (RuntimeObject*)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_006b:
{
int32_t L_37 = ___depthLimit4;
___depthLimit4 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = ___values1;
int32_t L_40 = ___lo2;
int32_t L_41 = ___hi3;
RuntimeObject* L_42 = ___comparer5;
int32_t L_43 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_38, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_39, (int32_t)L_40, (int32_t)L_41, (RuntimeObject*)L_42, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
V_1 = (int32_t)L_43;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = ___values1;
int32_t L_46 = V_1;
int32_t L_47 = ___hi3;
int32_t L_48 = ___depthLimit4;
RuntimeObject* L_49 = ___comparer5;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_44, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_45, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)), (int32_t)L_47, (int32_t)L_48, (RuntimeObject*)L_49, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
int32_t L_50 = V_1;
___hi3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)1));
}
IL_0091:
{
int32_t L_51 = ___hi3;
int32_t L_52 = ___lo2;
if ((((int32_t)L_51) > ((int32_t)L_52)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_2_PickPivotAndPartition_mF21CF46043EF15D4FF1AA079DB1814E5C47080B6_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo2;
int32_t L_1 = ___hi3;
int32_t L_2 = ___lo2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values1;
RuntimeObject* L_5 = ___comparer4;
int32_t L_6 = ___lo2;
int32_t L_7 = V_0;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4, (RuntimeObject*)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___values1;
RuntimeObject* L_10 = ___comparer4;
int32_t L_11 = ___lo2;
int32_t L_12 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_8, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_9, (RuntimeObject*)L_10, (int32_t)L_11, (int32_t)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = ___values1;
RuntimeObject* L_15 = ___comparer4;
int32_t L_16 = V_0;
int32_t L_17 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_13, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_14, (RuntimeObject*)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___keys0;
int32_t L_19 = V_0;
NullCheck(L_18);
int32_t L_20 = L_19;
RuntimeObject * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
V_1 = (RuntimeObject *)L_21;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = ___values1;
int32_t L_24 = V_0;
int32_t L_25 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_22, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_23, (int32_t)L_24, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
int32_t L_26 = ___lo2;
V_2 = (int32_t)L_26;
int32_t L_27 = ___hi3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
goto IL_007d;
}
IL_0044:
{
RuntimeObject* L_28 = ___comparer4;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = ___keys0;
int32_t L_30 = V_2;
int32_t L_31 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
V_2 = (int32_t)L_31;
NullCheck(L_29);
int32_t L_32 = L_31;
RuntimeObject * L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
RuntimeObject * L_34 = V_1;
NullCheck((RuntimeObject*)L_28);
int32_t L_35 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_28, (RuntimeObject *)L_33, (RuntimeObject *)L_34);
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_0044;
}
}
IL_005a:
{
RuntimeObject* L_36 = ___comparer4;
RuntimeObject * L_37 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = ___keys0;
int32_t L_39 = V_3;
int32_t L_40 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)1));
V_3 = (int32_t)L_40;
NullCheck(L_38);
int32_t L_41 = L_40;
RuntimeObject * L_42 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
NullCheck((RuntimeObject*)L_36);
int32_t L_43 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_36, (RuntimeObject *)L_37, (RuntimeObject *)L_42);
if ((((int32_t)L_43) < ((int32_t)0)))
{
goto IL_005a;
}
}
{
int32_t L_44 = V_2;
int32_t L_45 = V_3;
if ((((int32_t)L_44) >= ((int32_t)L_45)))
{
goto IL_0081;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_46 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = ___values1;
int32_t L_48 = V_2;
int32_t L_49 = V_3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_46, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_47, (int32_t)L_48, (int32_t)L_49, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
}
IL_007d:
{
int32_t L_50 = V_2;
int32_t L_51 = V_3;
if ((((int32_t)L_50) < ((int32_t)L_51)))
{
goto IL_0044;
}
}
IL_0081:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_52 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_53 = ___values1;
int32_t L_54 = V_2;
int32_t L_55 = ___hi3;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_52, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_53, (int32_t)L_54, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
int32_t L_56 = V_2;
return L_56;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_Heapsort_mB5B9DD9E73A0AA09587359AE488402CD8A694F79_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi3;
int32_t L_1 = ___lo2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001c;
}
IL_000c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values1;
int32_t L_5 = V_1;
int32_t L_6 = V_0;
int32_t L_7 = ___lo2;
RuntimeObject* L_8 = ___comparer4;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_001c:
{
int32_t L_10 = V_1;
if ((((int32_t)L_10) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_11 = V_0;
V_2 = (int32_t)L_11;
goto IL_0043;
}
IL_0024:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = ___values1;
int32_t L_14 = ___lo2;
int32_t L_15 = ___lo2;
int32_t L_16 = V_2;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_12, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___values1;
int32_t L_19 = V_2;
int32_t L_20 = ___lo2;
RuntimeObject* L_21 = ___comparer4;
(( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_17, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_18, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)), (int32_t)L_20, (RuntimeObject*)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
int32_t L_22 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1));
}
IL_0043:
{
int32_t L_23 = V_2;
if ((((int32_t)L_23) > ((int32_t)1)))
{
goto IL_0024;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_DownHeap_mB43388FC433B4682B429B44BFCF4B9F6BF81A167_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___i2, int32_t ___n3, int32_t ___lo4, RuntimeObject* ___comparer5, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
RuntimeObject * G_B3_0 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___keys0;
int32_t L_1 = ___lo4;
int32_t L_2 = ___i2;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
RuntimeObject * L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (RuntimeObject *)L_4;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___values1;
if (L_5)
{
goto IL_001b;
}
}
{
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *));
RuntimeObject * L_6 = V_3;
G_B3_0 = L_6;
goto IL_0027;
}
IL_001b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ___values1;
int32_t L_8 = ___lo4;
int32_t L_9 = ___i2;
NullCheck(L_7);
int32_t L_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), (int32_t)1));
RuntimeObject * L_11 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
G_B3_0 = L_11;
}
IL_0027:
{
V_1 = (RuntimeObject *)G_B3_0;
goto IL_00a3;
}
IL_002a:
{
int32_t L_12 = ___i2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_12));
int32_t L_13 = V_2;
int32_t L_14 = ___n3;
if ((((int32_t)L_13) >= ((int32_t)L_14)))
{
goto IL_0056;
}
}
{
RuntimeObject* L_15 = ___comparer5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___keys0;
int32_t L_17 = ___lo4;
int32_t L_18 = V_2;
NullCheck(L_16);
int32_t L_19 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)), (int32_t)1));
RuntimeObject * L_20 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ___keys0;
int32_t L_22 = ___lo4;
int32_t L_23 = V_2;
NullCheck(L_21);
int32_t L_24 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23));
RuntimeObject * L_25 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck((RuntimeObject*)L_15);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_15, (RuntimeObject *)L_20, (RuntimeObject *)L_25);
if ((((int32_t)L_26) >= ((int32_t)0)))
{
goto IL_0056;
}
}
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0056:
{
RuntimeObject* L_28 = ___comparer5;
RuntimeObject * L_29 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = ___keys0;
int32_t L_31 = ___lo4;
int32_t L_32 = V_2;
NullCheck(L_30);
int32_t L_33 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32)), (int32_t)1));
RuntimeObject * L_34 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
NullCheck((RuntimeObject*)L_28);
int32_t L_35 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_28, (RuntimeObject *)L_29, (RuntimeObject *)L_34);
if ((((int32_t)L_35) >= ((int32_t)0)))
{
goto IL_00a9;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = ___keys0;
int32_t L_37 = ___lo4;
int32_t L_38 = ___i2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = ___keys0;
int32_t L_40 = ___lo4;
int32_t L_41 = V_2;
NullCheck(L_39);
int32_t L_42 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41)), (int32_t)1));
RuntimeObject * L_43 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)L_38)), (int32_t)1))), (RuntimeObject *)L_43);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = ___values1;
if (!L_44)
{
goto IL_00a0;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = ___values1;
int32_t L_46 = ___lo4;
int32_t L_47 = ___i2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = ___values1;
int32_t L_49 = ___lo4;
int32_t L_50 = V_2;
NullCheck(L_48);
int32_t L_51 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)L_50)), (int32_t)1));
RuntimeObject * L_52 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_47)), (int32_t)1))), (RuntimeObject *)L_52);
}
IL_00a0:
{
int32_t L_53 = V_2;
___i2 = (int32_t)L_53;
}
IL_00a3:
{
int32_t L_54 = ___i2;
int32_t L_55 = ___n3;
if ((((int32_t)L_54) <= ((int32_t)((int32_t)((int32_t)L_55/(int32_t)2)))))
{
goto IL_002a;
}
}
IL_00a9:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_56 = ___keys0;
int32_t L_57 = ___lo4;
int32_t L_58 = ___i2;
RuntimeObject * L_59 = V_0;
NullCheck(L_56);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)L_58)), (int32_t)1))), (RuntimeObject *)L_59);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = ___values1;
if (!L_60)
{
goto IL_00c6;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_61 = ___values1;
int32_t L_62 = ___lo4;
int32_t L_63 = ___i2;
RuntimeObject * L_64 = V_1;
NullCheck(L_61);
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)L_63)), (int32_t)1))), (RuntimeObject *)L_64);
}
IL_00c6:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_InsertionSort_m67BA93D12861EB60A80921045CAD7A77A4644102_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
RuntimeObject * G_B4_0 = NULL;
{
int32_t L_0 = ___lo2;
V_0 = (int32_t)L_0;
goto IL_0083;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (RuntimeObject *)L_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___values1;
if (L_6)
{
goto IL_001f;
}
}
{
il2cpp_codegen_initobj((&V_4), sizeof(RuntimeObject *));
RuntimeObject * L_7 = V_4;
G_B4_0 = L_7;
goto IL_0028;
}
IL_001f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___values1;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
G_B4_0 = L_11;
}
IL_0028:
{
V_3 = (RuntimeObject *)G_B4_0;
goto IL_0052;
}
IL_002b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___keys0;
int32_t L_13 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = ___keys0;
int32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = L_15;
RuntimeObject * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___values1;
if (!L_18)
{
goto IL_004e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = ___values1;
int32_t L_20 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ___values1;
int32_t L_22 = V_1;
NullCheck(L_21);
int32_t L_23 = L_22;
RuntimeObject * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))), (RuntimeObject *)L_24);
}
IL_004e:
{
int32_t L_25 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0052:
{
int32_t L_26 = V_1;
int32_t L_27 = ___lo2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0068;
}
}
{
RuntimeObject* L_28 = ___comparer4;
RuntimeObject * L_29 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = ___keys0;
int32_t L_31 = V_1;
NullCheck(L_30);
int32_t L_32 = L_31;
RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
NullCheck((RuntimeObject*)L_28);
int32_t L_34 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_28, (RuntimeObject *)L_29, (RuntimeObject *)L_33);
if ((((int32_t)L_34) < ((int32_t)0)))
{
goto IL_002b;
}
}
IL_0068:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = ___keys0;
int32_t L_36 = V_1;
RuntimeObject * L_37 = V_2;
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1))), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = ___values1;
if (!L_38)
{
goto IL_007f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = ___values1;
int32_t L_40 = V_1;
RuntimeObject * L_41 = V_3;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1))), (RuntimeObject *)L_41);
}
IL_007f:
{
int32_t L_42 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
}
IL_0083:
{
int32_t L_43 = V_0;
int32_t L_44 = ___hi3;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2__ctor_m37787914EA8948EF7D8E517765FB094C573F42BA_gshared (ArraySortHelper_2_tC7587DA2B97E46D9E26E78C6864D7A2460A57E7F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * ArraySortHelper_2_get_Default_mE4C3DBC2059057243F96305B29B5F6D255CC2D03_gshared (const RuntimeMethod* method)
{
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * V_0 = NULL;
{
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * L_0 = ((ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_defaultArraySortHelper_0();
il2cpp_codegen_memory_barrier();
V_0 = (ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 *)L_0;
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * L_1 = V_0;
if (L_1)
{
goto IL_0011;
}
}
{
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * L_2 = (( ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 *)L_2;
}
IL_0011:
{
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * L_3 = V_0;
return L_3;
}
}
// System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::CreateArraySortHelper()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * ArraySortHelper_2_CreateArraySortHelper_mCC60A0374A351E49016AD86D1B61A15C9C23A252_gshared (const RuntimeMethod* method)
{
{
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * L_0 = (ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
il2cpp_codegen_memory_barrier();
((ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_s_defaultArraySortHelper_0(L_0);
ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * L_1 = ((ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_s_defaultArraySortHelper_0();
il2cpp_codegen_memory_barrier();
return L_1;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_Sort_mB1F0BA2E8984A2AB76EF0E14F5209EF253AFDAC5_gshared (ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArraySortHelper_2_Sort_mB1F0BA2E8984A2AB76EF0E14F5209EF253AFDAC5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject* L_0 = ___comparer4;
if (!L_0)
{
goto IL_000d;
}
}
IL_0004:
{
RuntimeObject* L_1 = ___comparer4;
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_2 = (( Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
if ((!(((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)L_2))))
{
goto IL_0014;
}
}
IL_000d:
{
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_3 = (( Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4));
___comparer4 = (RuntimeObject*)L_3;
}
IL_0014:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_4 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___values1;
int32_t L_6 = ___index2;
int32_t L_7 = ___length3;
RuntimeObject* L_8 = ___comparer4;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_4, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6));
goto IL_0039;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0022;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002c;
throw e;
}
CATCH_0022:
{ // begin catch(System.IndexOutOfRangeException)
RuntimeObject* L_9 = ___comparer4;
IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A((RuntimeObject *)L_9, /*hidden argument*/NULL);
goto IL_0039;
} // end catch (depth: 1)
CATCH_002c:
{ // begin catch(System.Exception)
V_0 = (Exception_t *)((Exception_t *)__exception_local);
Exception_t * L_10 = V_0;
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_11 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_11, (String_t*)_stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, (Exception_t *)L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, ArraySortHelper_2_Sort_mB1F0BA2E8984A2AB76EF0E14F5209EF253AFDAC5_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0039:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_SwapIfGreaterWithItems_m8AB09BF04642B90622A236C05FD484F17CAC5636_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, RuntimeObject* ___comparer2, int32_t ___a3, int32_t ___b4, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = ___a3;
int32_t L_1 = ___b4;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0060;
}
}
{
RuntimeObject* L_2 = ___comparer2;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_3 = ___keys0;
int32_t L_4 = ___a3;
NullCheck(L_3);
int32_t L_5 = L_4;
uint64_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_7 = ___keys0;
int32_t L_8 = ___b4;
NullCheck(L_7);
int32_t L_9 = L_8;
uint64_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck((RuntimeObject*)L_2);
int32_t L_11 = InterfaceFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt64>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_2, (uint64_t)L_6, (uint64_t)L_10);
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0060;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_12 = ___keys0;
int32_t L_13 = ___a3;
NullCheck(L_12);
int32_t L_14 = L_13;
uint64_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_0 = (uint64_t)L_15;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_16 = ___keys0;
int32_t L_17 = ___a3;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_18 = ___keys0;
int32_t L_19 = ___b4;
NullCheck(L_18);
int32_t L_20 = L_19;
uint64_t L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (uint64_t)L_21);
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_22 = ___keys0;
int32_t L_23 = ___b4;
uint64_t L_24 = V_0;
NullCheck(L_22);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (uint64_t)L_24);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = ___values1;
if (!L_25)
{
goto IL_0060;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___values1;
int32_t L_27 = ___a3;
NullCheck(L_26);
int32_t L_28 = L_27;
RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
V_1 = (RuntimeObject *)L_29;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = ___values1;
int32_t L_31 = ___a3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = ___values1;
int32_t L_33 = ___b4;
NullCheck(L_32);
int32_t L_34 = L_33;
RuntimeObject * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (RuntimeObject *)L_35);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = ___values1;
int32_t L_37 = ___b4;
RuntimeObject * L_38 = V_1;
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (RuntimeObject *)L_38);
}
IL_0060:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Swap(TKey[],TValue[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_Swap_mBB4D5F363E32B049069A7313F5EC9D6C7F7426E3_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___i2, int32_t ___j3, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
int32_t L_0 = ___i2;
int32_t L_1 = ___j3;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_0043;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = ___keys0;
int32_t L_3 = ___i2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint64_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = (uint64_t)L_5;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_6 = ___keys0;
int32_t L_7 = ___i2;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_8 = ___keys0;
int32_t L_9 = ___j3;
NullCheck(L_8);
int32_t L_10 = L_9;
uint64_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint64_t)L_11);
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_12 = ___keys0;
int32_t L_13 = ___j3;
uint64_t L_14 = V_0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint64_t)L_14);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = ___values1;
if (!L_15)
{
goto IL_0043;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___values1;
int32_t L_17 = ___i2;
NullCheck(L_16);
int32_t L_18 = L_17;
RuntimeObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_1 = (RuntimeObject *)L_19;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ___values1;
int32_t L_21 = ___i2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = ___values1;
int32_t L_23 = ___j3;
NullCheck(L_22);
int32_t L_24 = L_23;
RuntimeObject * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)L_25);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = ___values1;
int32_t L_27 = ___j3;
RuntimeObject * L_28 = V_1;
NullCheck(L_26);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (RuntimeObject *)L_28);
}
IL_0043:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_IntrospectiveSort_m02E315CC3C3DF55D8CF1D2F7638716937FB34595_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___left2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
{
int32_t L_0 = ___length3;
if ((((int32_t)L_0) >= ((int32_t)2)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___values1;
int32_t L_3 = ___left2;
int32_t L_4 = ___length3;
int32_t L_5 = ___left2;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_6 = ___keys0;
NullCheck(L_6);
int32_t L_7 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), /*hidden argument*/NULL);
RuntimeObject* L_8 = ___comparer4;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)1)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_7)), (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_IntroSort_m3638E5B135BC668A8ADA62DA1FACE3796CCB52AF_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, int32_t ___depthLimit4, RuntimeObject* ___comparer5, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
goto IL_0091;
}
IL_0005:
{
int32_t L_0 = ___hi3;
int32_t L_1 = ___lo2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)16))))
{
goto IL_005b;
}
}
{
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
{
goto IL_0015;
}
}
{
return;
}
IL_0015:
{
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
{
goto IL_0025;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_5 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___values1;
RuntimeObject* L_7 = ___comparer5;
int32_t L_8 = ___lo2;
int32_t L_9 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_5, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_6, (RuntimeObject*)L_7, (int32_t)L_8, (int32_t)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
return;
}
IL_0025:
{
int32_t L_10 = V_0;
if ((!(((uint32_t)L_10) == ((uint32_t)3))))
{
goto IL_004f;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___values1;
RuntimeObject* L_13 = ___comparer5;
int32_t L_14 = ___lo2;
int32_t L_15 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_11, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_12, (RuntimeObject*)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_16 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = ___values1;
RuntimeObject* L_18 = ___comparer5;
int32_t L_19 = ___lo2;
int32_t L_20 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_16, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_17, (RuntimeObject*)L_18, (int32_t)L_19, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_21 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = ___values1;
RuntimeObject* L_23 = ___comparer5;
int32_t L_24 = ___hi3;
int32_t L_25 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_21, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_22, (RuntimeObject*)L_23, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)), (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
return;
}
IL_004f:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_26 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = ___values1;
int32_t L_28 = ___lo2;
int32_t L_29 = ___hi3;
RuntimeObject* L_30 = ___comparer5;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_26, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_27, (int32_t)L_28, (int32_t)L_29, (RuntimeObject*)L_30, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10));
return;
}
IL_005b:
{
int32_t L_31 = ___depthLimit4;
if (L_31)
{
goto IL_006b;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_32 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = ___values1;
int32_t L_34 = ___lo2;
int32_t L_35 = ___hi3;
RuntimeObject* L_36 = ___comparer5;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_32, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_33, (int32_t)L_34, (int32_t)L_35, (RuntimeObject*)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 11));
return;
}
IL_006b:
{
int32_t L_37 = ___depthLimit4;
___depthLimit4 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_38 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = ___values1;
int32_t L_40 = ___lo2;
int32_t L_41 = ___hi3;
RuntimeObject* L_42 = ___comparer5;
int32_t L_43 = (( int32_t (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_38, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_39, (int32_t)L_40, (int32_t)L_41, (RuntimeObject*)L_42, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12));
V_1 = (int32_t)L_43;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_44 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = ___values1;
int32_t L_46 = V_1;
int32_t L_47 = ___hi3;
int32_t L_48 = ___depthLimit4;
RuntimeObject* L_49 = ___comparer5;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_44, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_45, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)), (int32_t)L_47, (int32_t)L_48, (RuntimeObject*)L_49, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 8));
int32_t L_50 = V_1;
___hi3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)1));
}
IL_0091:
{
int32_t L_51 = ___hi3;
int32_t L_52 = ___lo2;
if ((((int32_t)L_51) > ((int32_t)L_52)))
{
goto IL_0005;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArraySortHelper_2_PickPivotAndPartition_m89893DAD60487DDD5062F521ED2A714C8A00384F_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
uint64_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___lo2;
int32_t L_1 = ___hi3;
int32_t L_2 = ___lo2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2))));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_3 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values1;
RuntimeObject* L_5 = ___comparer4;
int32_t L_6 = ___lo2;
int32_t L_7 = V_0;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_3, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4, (RuntimeObject*)L_5, (int32_t)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_8 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___values1;
RuntimeObject* L_10 = ___comparer4;
int32_t L_11 = ___lo2;
int32_t L_12 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_8, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_9, (RuntimeObject*)L_10, (int32_t)L_11, (int32_t)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_13 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = ___values1;
RuntimeObject* L_15 = ___comparer4;
int32_t L_16 = V_0;
int32_t L_17 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_13, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_14, (RuntimeObject*)L_15, (int32_t)L_16, (int32_t)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 9));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_18 = ___keys0;
int32_t L_19 = V_0;
NullCheck(L_18);
int32_t L_20 = L_19;
uint64_t L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
V_1 = (uint64_t)L_21;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_22 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = ___values1;
int32_t L_24 = V_0;
int32_t L_25 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_22, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_23, (int32_t)L_24, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
int32_t L_26 = ___lo2;
V_2 = (int32_t)L_26;
int32_t L_27 = ___hi3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
goto IL_007d;
}
IL_0044:
{
RuntimeObject* L_28 = ___comparer4;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_29 = ___keys0;
int32_t L_30 = V_2;
int32_t L_31 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
V_2 = (int32_t)L_31;
NullCheck(L_29);
int32_t L_32 = L_31;
uint64_t L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
uint64_t L_34 = V_1;
NullCheck((RuntimeObject*)L_28);
int32_t L_35 = InterfaceFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt64>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_28, (uint64_t)L_33, (uint64_t)L_34);
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_0044;
}
}
IL_005a:
{
RuntimeObject* L_36 = ___comparer4;
uint64_t L_37 = V_1;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_38 = ___keys0;
int32_t L_39 = V_3;
int32_t L_40 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)1));
V_3 = (int32_t)L_40;
NullCheck(L_38);
int32_t L_41 = L_40;
uint64_t L_42 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
NullCheck((RuntimeObject*)L_36);
int32_t L_43 = InterfaceFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt64>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_36, (uint64_t)L_37, (uint64_t)L_42);
if ((((int32_t)L_43) < ((int32_t)0)))
{
goto IL_005a;
}
}
{
int32_t L_44 = V_2;
int32_t L_45 = V_3;
if ((((int32_t)L_44) >= ((int32_t)L_45)))
{
goto IL_0081;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_46 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = ___values1;
int32_t L_48 = V_2;
int32_t L_49 = V_3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_46, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_47, (int32_t)L_48, (int32_t)L_49, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
}
IL_007d:
{
int32_t L_50 = V_2;
int32_t L_51 = V_3;
if ((((int32_t)L_50) < ((int32_t)L_51)))
{
goto IL_0044;
}
}
IL_0081:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_52 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_53 = ___values1;
int32_t L_54 = V_2;
int32_t L_55 = ___hi3;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_52, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_53, (int32_t)L_54, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
int32_t L_56 = V_2;
return L_56;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_Heapsort_m472A960EAD726E5047424D9F69C0F2F0D422F0D9_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___hi3;
int32_t L_1 = ___lo2;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = V_0;
V_1 = (int32_t)((int32_t)((int32_t)L_2/(int32_t)2));
goto IL_001c;
}
IL_000c:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_3 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___values1;
int32_t L_5 = V_1;
int32_t L_6 = V_0;
int32_t L_7 = ___lo2;
RuntimeObject* L_8 = ___comparer4;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_3, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4, (int32_t)L_5, (int32_t)L_6, (int32_t)L_7, (RuntimeObject*)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
int32_t L_9 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_001c:
{
int32_t L_10 = V_1;
if ((((int32_t)L_10) >= ((int32_t)1)))
{
goto IL_000c;
}
}
{
int32_t L_11 = V_0;
V_2 = (int32_t)L_11;
goto IL_0043;
}
IL_0024:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_12 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = ___values1;
int32_t L_14 = ___lo2;
int32_t L_15 = ___lo2;
int32_t L_16 = V_2;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_12, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_13, (int32_t)L_14, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_17 = ___keys0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___values1;
int32_t L_19 = V_2;
int32_t L_20 = ___lo2;
RuntimeObject* L_21 = ___comparer4;
(( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14)->methodPointer)((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)L_17, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_18, (int32_t)1, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)), (int32_t)L_20, (RuntimeObject*)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 14));
int32_t L_22 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1));
}
IL_0043:
{
int32_t L_23 = V_2;
if ((((int32_t)L_23) > ((int32_t)1)))
{
goto IL_0024;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_DownHeap_m7E54D9DEEB48429158ECC108E4C385B5609B5DE2_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___i2, int32_t ___n3, int32_t ___lo4, RuntimeObject* ___comparer5, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
RuntimeObject * V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
RuntimeObject * G_B3_0 = NULL;
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___keys0;
int32_t L_1 = ___lo4;
int32_t L_2 = ___i2;
NullCheck(L_0);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1));
uint64_t L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_0 = (uint64_t)L_4;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___values1;
if (L_5)
{
goto IL_001b;
}
}
{
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *));
RuntimeObject * L_6 = V_3;
G_B3_0 = L_6;
goto IL_0027;
}
IL_001b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ___values1;
int32_t L_8 = ___lo4;
int32_t L_9 = ___i2;
NullCheck(L_7);
int32_t L_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), (int32_t)1));
RuntimeObject * L_11 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
G_B3_0 = L_11;
}
IL_0027:
{
V_1 = (RuntimeObject *)G_B3_0;
goto IL_00a3;
}
IL_002a:
{
int32_t L_12 = ___i2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_12));
int32_t L_13 = V_2;
int32_t L_14 = ___n3;
if ((((int32_t)L_13) >= ((int32_t)L_14)))
{
goto IL_0056;
}
}
{
RuntimeObject* L_15 = ___comparer5;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_16 = ___keys0;
int32_t L_17 = ___lo4;
int32_t L_18 = V_2;
NullCheck(L_16);
int32_t L_19 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)), (int32_t)1));
uint64_t L_20 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_21 = ___keys0;
int32_t L_22 = ___lo4;
int32_t L_23 = V_2;
NullCheck(L_21);
int32_t L_24 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23));
uint64_t L_25 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck((RuntimeObject*)L_15);
int32_t L_26 = InterfaceFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt64>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_15, (uint64_t)L_20, (uint64_t)L_25);
if ((((int32_t)L_26) >= ((int32_t)0)))
{
goto IL_0056;
}
}
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0056:
{
RuntimeObject* L_28 = ___comparer5;
uint64_t L_29 = V_0;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_30 = ___keys0;
int32_t L_31 = ___lo4;
int32_t L_32 = V_2;
NullCheck(L_30);
int32_t L_33 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32)), (int32_t)1));
uint64_t L_34 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
NullCheck((RuntimeObject*)L_28);
int32_t L_35 = InterfaceFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt64>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_28, (uint64_t)L_29, (uint64_t)L_34);
if ((((int32_t)L_35) >= ((int32_t)0)))
{
goto IL_00a9;
}
}
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_36 = ___keys0;
int32_t L_37 = ___lo4;
int32_t L_38 = ___i2;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_39 = ___keys0;
int32_t L_40 = ___lo4;
int32_t L_41 = V_2;
NullCheck(L_39);
int32_t L_42 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41)), (int32_t)1));
uint64_t L_43 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)L_38)), (int32_t)1))), (uint64_t)L_43);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = ___values1;
if (!L_44)
{
goto IL_00a0;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_45 = ___values1;
int32_t L_46 = ___lo4;
int32_t L_47 = ___i2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = ___values1;
int32_t L_49 = ___lo4;
int32_t L_50 = V_2;
NullCheck(L_48);
int32_t L_51 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)L_50)), (int32_t)1));
RuntimeObject * L_52 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_47)), (int32_t)1))), (RuntimeObject *)L_52);
}
IL_00a0:
{
int32_t L_53 = V_2;
___i2 = (int32_t)L_53;
}
IL_00a3:
{
int32_t L_54 = ___i2;
int32_t L_55 = ___n3;
if ((((int32_t)L_54) <= ((int32_t)((int32_t)((int32_t)L_55/(int32_t)2)))))
{
goto IL_002a;
}
}
IL_00a9:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_56 = ___keys0;
int32_t L_57 = ___lo4;
int32_t L_58 = ___i2;
uint64_t L_59 = V_0;
NullCheck(L_56);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)L_58)), (int32_t)1))), (uint64_t)L_59);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = ___values1;
if (!L_60)
{
goto IL_00c6;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_61 = ___values1;
int32_t L_62 = ___lo4;
int32_t L_63 = ___i2;
RuntimeObject * L_64 = V_1;
NullCheck(L_61);
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)L_63)), (int32_t)1))), (RuntimeObject *)L_64);
}
IL_00c6:
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2_InsertionSort_mB4CCEC9183F182D8C4FF5582215675E15F5DBEC0_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, int32_t ___lo2, int32_t ___hi3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
uint64_t V_2 = 0;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
RuntimeObject * G_B4_0 = NULL;
{
int32_t L_0 = ___lo2;
V_0 = (int32_t)L_0;
goto IL_0083;
}
IL_0004:
{
int32_t L_1 = V_0;
V_1 = (int32_t)L_1;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = ___keys0;
int32_t L_3 = V_0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
uint64_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = (uint64_t)L_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___values1;
if (L_6)
{
goto IL_001f;
}
}
{
il2cpp_codegen_initobj((&V_4), sizeof(RuntimeObject *));
RuntimeObject * L_7 = V_4;
G_B4_0 = L_7;
goto IL_0028;
}
IL_001f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___values1;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
G_B4_0 = L_11;
}
IL_0028:
{
V_3 = (RuntimeObject *)G_B4_0;
goto IL_0052;
}
IL_002b:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_12 = ___keys0;
int32_t L_13 = V_1;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_14 = ___keys0;
int32_t L_15 = V_1;
NullCheck(L_14);
int32_t L_16 = L_15;
uint64_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))), (uint64_t)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___values1;
if (!L_18)
{
goto IL_004e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = ___values1;
int32_t L_20 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ___values1;
int32_t L_22 = V_1;
NullCheck(L_21);
int32_t L_23 = L_22;
RuntimeObject * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))), (RuntimeObject *)L_24);
}
IL_004e:
{
int32_t L_25 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_0052:
{
int32_t L_26 = V_1;
int32_t L_27 = ___lo2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0068;
}
}
{
RuntimeObject* L_28 = ___comparer4;
uint64_t L_29 = V_2;
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_30 = ___keys0;
int32_t L_31 = V_1;
NullCheck(L_30);
int32_t L_32 = L_31;
uint64_t L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
NullCheck((RuntimeObject*)L_28);
int32_t L_34 = InterfaceFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt64>::Compare(T,T) */, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 7), (RuntimeObject*)L_28, (uint64_t)L_29, (uint64_t)L_33);
if ((((int32_t)L_34) < ((int32_t)0)))
{
goto IL_002b;
}
}
IL_0068:
{
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_35 = ___keys0;
int32_t L_36 = V_1;
uint64_t L_37 = V_2;
NullCheck(L_35);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1))), (uint64_t)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = ___values1;
if (!L_38)
{
goto IL_007f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = ___values1;
int32_t L_40 = V_1;
RuntimeObject * L_41 = V_3;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1))), (RuntimeObject *)L_41);
}
IL_007f:
{
int32_t L_42 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
}
IL_0083:
{
int32_t L_43 = V_0;
int32_t L_44 = ___hi3;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_2__ctor_mA5F88748AB26F4B61F361F955F5A1B605E1C9516_gshared (ArraySortHelper_2_t2FF12471052A6F38EFFD02AD4037EB23260332A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * Comparer_1_get_Default_mEC522A564F33A39FC01D9AD3BDAB08EC9AA95BF5_gshared (const RuntimeMethod* method)
{
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * V_0 = NULL;
{
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * L_0 = ((Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 *)L_0;
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * L_2 = (( Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 *)L_2;
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * Comparer_1_CreateComparer_mF3F0F28977DF64F7FB115EC00BBDEAE25B47D9E4_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mF3F0F28977DF64F7FB115EC00BBDEAE25B47D9E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t241F11EE09349836A486AE5584C3545C5320AACD * L_33 = (ObjectComparer_1_t241F11EE09349836A486AE5584C3545C5320AACD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t241F11EE09349836A486AE5584C3545C5320AACD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mD291E8D89A322C1E90D33F73B407BA389CC2868B_gshared (Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Compare(T,T) */, (Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 *)__this, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )((*(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B )((*(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)((KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m71DF9B8AFE309F6502BA170E9B0553B5FADAE27F_gshared (Comparer_1_t1A5B5BCA5B2D7893652C1EB1F21216F3E32C6332 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * Comparer_1_get_Default_m1368B89D774A69F6788B9F844A300D8C56561145_gshared (const RuntimeMethod* method)
{
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * V_0 = NULL;
{
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * L_0 = ((Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 *)L_0;
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * L_2 = (( Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 *)L_2;
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * Comparer_1_CreateComparer_mB54FA5E6B35FE9B57D04C888F464BCBE366E4F61_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mB54FA5E6B35FE9B57D04C888F464BCBE366E4F61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tEBA28E3A1AE038D6A58CB6873FC979BB80FFBEA2 * L_33 = (ObjectComparer_1_tEBA28E3A1AE038D6A58CB6873FC979BB80FFBEA2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tEBA28E3A1AE038D6A58CB6873FC979BB80FFBEA2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mF53471E2202E83B095FB9E5F27B7286A8C940987_gshared (Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, (Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m77C573938DC27FF2D2401B605E63FCCFCB82B13F_gshared (Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32Enum>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * Comparer_1_get_Default_m536BB979A9D3ED32FD9C960C794557BC9C2781E4_gshared (const RuntimeMethod* method)
{
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * V_0 = NULL;
{
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * L_0 = ((Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC *)L_0;
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * L_2 = (( Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC *)L_2;
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32Enum>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * Comparer_1_CreateComparer_mFF22DD81E3F312F716EF363ED21C8F67B7D7EAEC_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mFF22DD81E3F312F716EF363ED21C8F67B7D7EAEC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tDF627A8F22F64D7B4D4EFAD5E47265D79507E0B6 * L_33 = (ObjectComparer_1_tDF627A8F22F64D7B4D4EFAD5E47265D79507E0B6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tDF627A8F22F64D7B4D4EFAD5E47265D79507E0B6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<System.Int32Enum>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m57EF05C0DED85FCF43CD64FB3EF1452B082A5FA4_gshared (Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32Enum>::Compare(T,T) */, (Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC *)__this, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_mBA06B5888734EB066B63EFC010F9E6B44924B961_gshared (Comparer_1_t2C327EC42817778AB0F5342E234B7564173E1EBC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared (const RuntimeMethod* method)
{
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * V_0 = NULL;
{
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_0 = ((Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)L_0;
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_2 = (( Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)L_2;
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * Comparer_1_CreateComparer_m26298799E544D9EE595C576C45AA43266EBB2AE1_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m26298799E544D9EE595C576C45AA43266EBB2AE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t04746A2EA0CA9E51D13794A9FCF86A3F32B9593F * L_33 = (ObjectComparer_1_t04746A2EA0CA9E51D13794A9FCF86A3F32B9593F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t04746A2EA0CA9E51D13794A9FCF86A3F32B9593F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<System.Object>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m280AC57C21B95CC704FF686574950679148ACA45_gshared (Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, (Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 *)__this, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m0E3F26F1AA66D2BE8378FB4025A8A71BCB19CA05_gshared (Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_gshared (const RuntimeMethod* method)
{
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * V_0 = NULL;
{
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_0 = ((Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)L_0;
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_2 = (( Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)L_2;
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * Comparer_1_CreateComparer_mB02598C6B5A9E306A8D2B3D6A04A4506848EC53D_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mB02598C6B5A9E306A8D2B3D6A04A4506848EC53D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t8DE6ED6D4ECCA05BA297A3E48C4E9264CEE1B12F * L_33 = (ObjectComparer_1_t8DE6ED6D4ECCA05BA297A3E48C4E9264CEE1B12F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t8DE6ED6D4ECCA05BA297A3E48C4E9264CEE1B12F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<System.UInt64>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mB980D5F129EBE6C0D37EF0752B78A8BAC2A47674_gshared (Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, uint64_t, uint64_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.UInt64>::Compare(T,T) */, (Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC *)__this, (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<System.UInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m7577B725ECFCE05DB1BF14DFF9C6F4FF1BAF662F_gshared (Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * Comparer_1_get_Default_m6553462C65EDDDA41EB3345C830DC176A2343F36_gshared (const RuntimeMethod* method)
{
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * V_0 = NULL;
{
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * L_0 = ((Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 *)L_0;
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * L_2 = (( Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 *)L_2;
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * Comparer_1_CreateComparer_mA8227022D1B3D587884CF44EB1208B4D4548EA55_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mA8227022D1B3D587884CF44EB1208B4D4548EA55_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t4F8251E93F42978CFBA3B375A452B0009BB8D3CD * L_33 = (ObjectComparer_1_t4F8251E93F42978CFBA3B375A452B0009BB8D3CD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t4F8251E93F42978CFBA3B375A452B0009BB8D3CD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m41A8369DDD57BD7AE1933D22422A3DB58C009D8D_gshared (Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Compare(T,T) */, (Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 *)__this, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )((*(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 )((*(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)((OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper_OrderBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_mDF7F89F9EBF824B7F7351B485DC520456A15C2BB_gshared (Comparer_1_t2F1CE09A6A5D0FF9DB184B06E2A0F5FECA8FC2F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Color32>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * Comparer_1_get_Default_m3B368E0A3D7C5C46657A00A69889051568A5467E_gshared (const RuntimeMethod* method)
{
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * V_0 = NULL;
{
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * L_0 = ((Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC *)L_0;
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * L_2 = (( Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC *)L_2;
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Color32>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * Comparer_1_CreateComparer_m353C887DC5F3B65AE0D85C08133AFEBA424104E0_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m353C887DC5F3B65AE0D85C08133AFEBA424104E0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tE95CC9ACE80C71EBB3B17D945DDECFB523140CBB * L_33 = (ObjectComparer_1_tE95CC9ACE80C71EBB3B17D945DDECFB523140CBB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tE95CC9ACE80C71EBB3B17D945DDECFB523140CBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Color32>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mBBA490AED7EB436551ED0F7334F3FA6E9BEE7DDB_gshared (Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Color32>::Compare(T,T) */, (Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC *)__this, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 )((*(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 )((*(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)((Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.Color32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m35A85A1A739455EB2836E76B40DD5BD7A3E0E833_gshared (Comparer_1_t63F20A4164F5EC7AC4B8FE207F4542FF2AC8D1CC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * Comparer_1_get_Default_mED4378802CDB5207DFC3FB0525D26617E0FA0E84_gshared (const RuntimeMethod* method)
{
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * V_0 = NULL;
{
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * L_0 = ((Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 *)L_0;
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * L_2 = (( Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 *)L_2;
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * Comparer_1_CreateComparer_m4D23405F354814416B853C0435F25E41015BFC7D_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m4D23405F354814416B853C0435F25E41015BFC7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tD8D2D480AE111DC49D618CA8C123B52247EE0206 * L_33 = (ObjectComparer_1_tD8D2D480AE111DC49D618CA8C123B52247EE0206 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tD8D2D480AE111DC49D618CA8C123B52247EE0206 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m637673CFD10E4E76CAE6F24775C3D064B083D69D_gshared (Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::Compare(T,T) */, (Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 *)__this, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 )((*(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 )((*(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)((RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m47A6BB18CED85A12C82E18A0B2B578E70F397EE5_gshared (Comparer_1_tB06EB3A1F3CFEBDECA2B31855B530BF54E3419C7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * Comparer_1_get_Default_m8F2300F1A35E56C115265FBF8314DFBDB4EA627F_gshared (const RuntimeMethod* method)
{
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * V_0 = NULL;
{
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * L_0 = ((Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 *)L_0;
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * L_2 = (( Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 *)L_2;
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * Comparer_1_CreateComparer_mA4EDBC3EC0A558AAC4789F4C4DE4AFA62F9ABDF2_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mA4EDBC3EC0A558AAC4789F4C4DE4AFA62F9ABDF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t2467AE1E52D7C1AFACEDE591CA9ACD714D71184C * L_33 = (ObjectComparer_1_t2467AE1E52D7C1AFACEDE591CA9ACD714D71184C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t2467AE1E52D7C1AFACEDE591CA9ACD714D71184C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mDDFB0398B09CBFB39D7742157E59DC87070603C9_gshared (Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 , ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>::Compare(T,T) */, (Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 *)__this, (ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 )((*(ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 *)((ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 )((*(ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 *)((ParticleCollisionEvent_t7F4D7D5ACF8521671549D9328D4E2DDE480D8D47 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.ParticleCollisionEvent>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m10CBC03B0FE506FC5819E3E5FCAA8045FB4B542C_gshared (Comparer_1_t29FD1B376C34A64175634D0D4EFDD209A2E82957 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * Comparer_1_get_Default_m01F042D04AD386B5B6A68475150EABC9C9367DCC_gshared (const RuntimeMethod* method)
{
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * V_0 = NULL;
{
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * L_0 = ((Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA *)L_0;
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * L_2 = (( Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA *)L_2;
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * Comparer_1_CreateComparer_m459C575628E47F5D7EAEFCB509217DD5D7B00217_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m459C575628E47F5D7EAEFCB509217DD5D7B00217_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tEC0B15CD69A60D9D8F9D4440807E329CB06DCF9E * L_33 = (ObjectComparer_1_tEC0B15CD69A60D9D8F9D4440807E329CB06DCF9E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tEC0B15CD69A60D9D8F9D4440807E329CB06DCF9E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m7C690510C516E0157116A6AD14F20C276C509658_gshared (Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>::Compare(T,T) */, (Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA *)__this, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE )((*(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE )((*(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)((RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m340FC59FA4FB0DBA9AE1AF9E1E103EB13B0E815D_gshared (Comparer_1_t80A957B78FAFFFD1DDDAA272634E954C1B1A5EEA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * Comparer_1_get_Default_m306622695CDE7DCD700047C0ABB1145F979EB01A_gshared (const RuntimeMethod* method)
{
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * V_0 = NULL;
{
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * L_0 = ((Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 *)L_0;
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * L_2 = (( Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 *)L_2;
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * Comparer_1_CreateComparer_mD4B73E502CC5A01C9D7D13942911DDFE92310344_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mD4B73E502CC5A01C9D7D13942911DDFE92310344_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tEC617C7BD65BA5F090F4D9841865A86B19B10976 * L_33 = (ObjectComparer_1_tEC617C7BD65BA5F090F4D9841865A86B19B10976 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tEC617C7BD65BA5F090F4D9841865A86B19B10976 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m1D0CA7A9D760E1AFFD93100B95C97DA7679EDB44_gshared (Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 , RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::Compare(T,T) */, (Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 *)__this, (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 )((*(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 )((*(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)((RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_mBB4EA8DA8D3F3D42A191BAD290CE5D7D4FC7AE3E_gshared (Comparer_1_tD7C4AADA458CE664E87522EA44A9DAD8AD0E7647 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * Comparer_1_get_Default_m019864FD5FD121334DDE09EAEA032AB6D68CCB39_gshared (const RuntimeMethod* method)
{
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * V_0 = NULL;
{
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * L_0 = ((Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD *)L_0;
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * L_2 = (( Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD *)L_2;
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * Comparer_1_CreateComparer_mCE652C0BA2B90B68B6B05326371085D9FC0908DF_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mCE652C0BA2B90B68B6B05326371085D9FC0908DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t9E9FDEF7EA33D20332EAB8B38EF6F56BD94A3731 * L_33 = (ObjectComparer_1_t9E9FDEF7EA33D20332EAB8B38EF6F56BD94A3731 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t9E9FDEF7EA33D20332EAB8B38EF6F56BD94A3731 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mEDD22985CC6B286E001D2635C73F4B0AF6E77A26_gshared (Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::Compare(T,T) */, (Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD *)__this, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A )((*(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A )((*(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)((UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m5944BBC9790217A07A19C76C9B448CF4002A3E42_gshared (Comparer_1_t24EDB25ECB9BEA7F3BE6CC01A025F176B6DF47DD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * Comparer_1_get_Default_m985C248CDAFA6722D4049B302CF7072D7833EC94_gshared (const RuntimeMethod* method)
{
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * V_0 = NULL;
{
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * L_0 = ((Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 *)L_0;
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * L_2 = (( Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 *)L_2;
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * Comparer_1_CreateComparer_m0981F31B27E0D6D3CDE93A934CB2DC06AB51AB99_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m0981F31B27E0D6D3CDE93A934CB2DC06AB51AB99_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t3543B300051BD71124C457A06DD31F44D78089A8 * L_33 = (ObjectComparer_1_t3543B300051BD71124C457A06DD31F44D78089A8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t3543B300051BD71124C457A06DD31F44D78089A8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mB5389E84502DF8F315A45AE58780924C9A98F9C7_gshared (Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::Compare(T,T) */, (Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 *)__this, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 )((*(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 )((*(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)((UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m7BC1C3493EED06512E9F7AAAEC4885675299DF73_gshared (Comparer_1_t026764F9E0854AF76F28EA3A15BECC9412788126 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * Comparer_1_get_Default_mEEBA06405F9EC58EA0D2ABA83954B47F83995176_gshared (const RuntimeMethod* method)
{
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * V_0 = NULL;
{
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * L_0 = ((Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 *)L_0;
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * L_2 = (( Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 *)L_2;
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * Comparer_1_CreateComparer_m4EAA1F6847DBC63EB76C0EA6643D0D501F908F37_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m4EAA1F6847DBC63EB76C0EA6643D0D501F908F37_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tCC08AB6AC52F7B4595B6E7F769467BE538F79087 * L_33 = (ObjectComparer_1_tCC08AB6AC52F7B4595B6E7F769467BE538F79087 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tCC08AB6AC52F7B4595B6E7F769467BE538F79087 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mDC42F86C66DCC83AFD55D426232CCDBF5E02246B_gshared (Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::Compare(T,T) */, (Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 *)__this, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 )((*(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 )((*(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)((UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_mC75688F9CA3A9473FECE80C8D57FEFF56A7E24A9_gshared (Comparer_1_tBD9070C3AF98C49D4EB2FEE1E43E845FC14A9EC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * Comparer_1_get_Default_m15FF06311B280CB6DF200790036E19EB9D71A0CC_gshared (const RuntimeMethod* method)
{
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * V_0 = NULL;
{
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_0 = ((Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B *)L_0;
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_2 = (( Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B *)L_2;
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * Comparer_1_CreateComparer_mA54B74916770EF33EB14F698F93559506476FFC7_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mA54B74916770EF33EB14F698F93559506476FFC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t86EB6885AD1EE49322D7BE8DF7B6DDC9CBB47067 * L_33 = (ObjectComparer_1_t86EB6885AD1EE49322D7BE8DF7B6DDC9CBB47067 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t86EB6885AD1EE49322D7BE8DF7B6DDC9CBB47067 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m5184AF97AF16DD665A7457464F599EA718AFCE5C_gshared (Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Compare(T,T) */, (Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B *)__this, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )((*(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 )((*(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)((WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m95B26C97FC5493564F214B8048FD7B729460D91B_gshared (Comparer_1_tE47259BC1CE77BD0F5BEA8A6F9FD64494298235B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * Comparer_1_get_Default_mBACABDACB4F8B2C2A192602783B9379B5C4993DA_gshared (const RuntimeMethod* method)
{
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * V_0 = NULL;
{
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_0 = ((Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F *)L_0;
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_2 = (( Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F *)L_2;
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * Comparer_1_CreateComparer_mC1A37E6DF1F157F836AEC75EDEAB79A70A06017D_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_mC1A37E6DF1F157F836AEC75EDEAB79A70A06017D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t8F555FC86CB04301E85633E74C5B22E2D325B58F * L_33 = (ObjectComparer_1_t8F555FC86CB04301E85633E74C5B22E2D325B58F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t8F555FC86CB04301E85633E74C5B22E2D325B58F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m9218A36955BA08FEC99CDB101CA284F5489043E8_gshared (Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::Compare(T,T) */, (Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F *)__this, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )((*(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D )((*(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m1F015B5C3F6530DDC5BDA5F06C1F57C3C00AC566_gshared (Comparer_1_t07045E3EA026A4CB2DFE2E702A90CFFBB0F2738F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * Comparer_1_get_Default_m7A4B76DE8E3DFEF450B2C367745F7CC8A06E173F_gshared (const RuntimeMethod* method)
{
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * V_0 = NULL;
{
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_0 = ((Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D *)L_0;
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_2 = (( Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D *)L_2;
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * Comparer_1_CreateComparer_m61F0FF73BEA955B76532DCD396B49D177FA6A59D_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m61F0FF73BEA955B76532DCD396B49D177FA6A59D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t03CC2728544D9820FBEA8B536F84F721595867F6 * L_33 = (ObjectComparer_1_t03CC2728544D9820FBEA8B536F84F721595867F6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t03CC2728544D9820FBEA8B536F84F721595867F6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mE0FA22F0CAE94DA40A4885F0BFE9DD33B40771B8_gshared (Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::Compare(T,T) */, (Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D *)__this, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )((*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )((*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_mD468DF8A9AB6BB1BC312D6D043D570E38320CE6C_gshared (Comparer_1_t80313E8B88FFC9A1EAAE95386C06BA765D44A74D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * Comparer_1_get_Default_mEED6DED28437DFD09871697EBFEAE4CDC43D5DBE_gshared (const RuntimeMethod* method)
{
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * V_0 = NULL;
{
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_0 = ((Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 *)L_0;
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_2 = (( Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 *)L_2;
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * Comparer_1_CreateComparer_m6C161D2E7ED7B604A2A7440A27AF3EFDE37FEE07_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m6C161D2E7ED7B604A2A7440A27AF3EFDE37FEE07_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t8040366DB3E6C337A74B80E9A4EC261DC686FCF4 * L_33 = (ObjectComparer_1_t8040366DB3E6C337A74B80E9A4EC261DC686FCF4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t8040366DB3E6C337A74B80E9A4EC261DC686FCF4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_mE9791A4F5193EF598746C95811C3787FA7CC7649_gshared (Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::Compare(T,T) */, (Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 *)__this, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )((*(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E )((*(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m4A36E7FC6C6C3F742E21321F7B73A1AA564EA45D_gshared (Comparer_1_t571E9BA1CF0AAFA2CB1FE5988D541343B9135CA6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * Comparer_1_get_Default_m887BD684FFECA51F112C3A823F092D90DC171177_gshared (const RuntimeMethod* method)
{
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * V_0 = NULL;
{
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_0 = ((Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF *)L_0;
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_2 = (( Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF *)L_2;
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * Comparer_1_CreateComparer_m52E5550AD296A1AEB71FA4300DF1CE3623BB6850_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m52E5550AD296A1AEB71FA4300DF1CE3623BB6850_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_t2564C245C442157BBAC40699D195FF0F0F33297C * L_33 = (ObjectComparer_1_t2564C245C442157BBAC40699D195FF0F0F33297C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_t2564C245C442157BBAC40699D195FF0F0F33297C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m75C40BEC45A69CEDC9F1274C0BEF4C6841601D76_gshared (Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E , ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>::Compare(T,T) */, (Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF *)__this, (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )((*(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E *)((ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E )((*(ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E *)((ARHitTestResult_t6D839CA592EDD681A7EA5C081F652A15865EDD8E *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.ARHitTestResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_m3598CC0004377B33E2EBAA8CA293A0234C60F61C_gshared (Comparer_1_tC22B5467B9BED310100A41490839DD14178315BF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * Comparer_1_get_Default_m75A8C10349DEA5FC907044F9088B8F255D1C63D2_gshared (const RuntimeMethod* method)
{
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * V_0 = NULL;
{
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_0 = ((Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_defaultComparer_0();
il2cpp_codegen_memory_barrier();
V_0 = (Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 *)L_0;
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_1 = V_0;
if (L_1)
{
goto IL_0019;
}
}
{
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_2 = (( Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
V_0 = (Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 *)L_2;
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_3 = V_0;
il2cpp_codegen_memory_barrier();
((Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->set_defaultComparer_0(L_3);
}
IL_0019:
{
Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * L_4 = V_0;
return L_4;
}
}
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>::CreateComparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * Comparer_1_CreateComparer_m0971B717CA3EA4879CB21FC78AAE149609D1658B_gshared (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_1_CreateComparer_m0971B717CA3EA4879CB21FC78AAE149609D1658B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_1 = NULL;
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 2)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 3)) };
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_2, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0;
NullCheck((Type_t *)L_3);
bool L_5 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_3, (Type_t *)L_4);
if (!L_5)
{
goto IL_0038;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (GenericComparer_1_t9436077F0C33F5A6062F56461CE41BECC1540420_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_6, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_9 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_7, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_8, /*hidden argument*/NULL);
return ((Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_0038:
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_10 = V_0;
NullCheck((Type_t *)L_10);
bool L_11 = VirtFuncInvoker0< bool >::Invoke(69 /* System.Boolean System.Type::get_IsGenericType() */, (Type_t *)L_10);
if (!L_11)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_12 = V_0;
NullCheck((Type_t *)L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(94 /* System.Type System.Type::GetGenericTypeDefinition() */, (Type_t *)L_12);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Nullable_1_t220FFA40D2CEE2CB28F8C04DB1216024A0BC75C3_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_009c;
}
}
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_17 = V_0;
NullCheck((Type_t *)L_17);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(93 /* System.Type[] System.Type::GetGenericArguments() */, (Type_t *)L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t * L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_1 = (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)Castclass((RuntimeObject*)L_20, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (IComparable_1_t29F8B9CDCF64F99D79F5C00CB354CBA8CA55B315_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_21, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_23;
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_25 = V_1;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_25);
NullCheck((Type_t *)L_22);
Type_t * L_26 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(89 /* System.Type System.Type::MakeGenericType(System.Type[]) */, (Type_t *)L_22, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)L_24);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_27 = V_1;
NullCheck((Type_t *)L_26);
bool L_28 = VirtFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_26, (Type_t *)L_27);
if (!L_28)
{
goto IL_009c;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (NullableComparer_1_t159D2EA197F37845DD72BDBE7E2881089EA822BD_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL);
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_31 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RuntimeType_CreateInstanceForAnotherGenericParameter_mFAF735890E821AF021168FCBAC1AA6BFA49586F4((Type_t *)L_30, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)L_31, /*hidden argument*/NULL);
return ((Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 *)Castclass((RuntimeObject*)L_32, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)));
}
IL_009c:
{
ObjectComparer_1_tF4C6CF35D9C3C3D24E64A3FDA39D38E5B87C14B8 * L_33 = (ObjectComparer_1_tF4C6CF35D9C3C3D24E64A3FDA39D38E5B87C14B8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5));
(( void (*) (ObjectComparer_1_tF4C6CF35D9C3C3D24E64A3FDA39D38E5B87C14B8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)(L_33, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6));
return L_33;
}
}
// System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>::System.Collections.IComparer.Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_1_System_Collections_IComparer_Compare_m92D26A214B843D96DCB7044E8885A4F48F475EDC_gshared (Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___x0;
if (L_0)
{
goto IL_000a;
}
}
{
RuntimeObject * L_1 = ___y1;
if (!L_1)
{
goto IL_0008;
}
}
{
return (-1);
}
IL_0008:
{
return 0;
}
IL_000a:
{
RuntimeObject * L_2 = ___y1;
if (L_2)
{
goto IL_000f;
}
}
{
return 1;
}
IL_000f:
{
RuntimeObject * L_3 = ___x0;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_4 = ___y1;
if (!((RuntimeObject *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))
{
goto IL_0032;
}
}
{
RuntimeObject * L_5 = ___x0;
RuntimeObject * L_6 = ___y1;
NullCheck((Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 *)__this);
int32_t L_7 = VirtFuncInvoker2< int32_t, UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 , UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>::Compare(T,T) */, (Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 *)__this, (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )((*(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 *)((UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 *)UnBox(L_5, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))), (UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 )((*(UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 *)((UnityARVideoFormat_tB838BB6F342C0F1A4201980B03B869BA2E9E2E95 *)UnBox(L_6, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7))))));
return L_7;
}
IL_0032:
{
ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84((int32_t)2, /*hidden argument*/NULL);
return 0;
}
}
// System.Void System.Collections.Generic.Comparer`1<UnityEngine.XR.iOS.UnityARVideoFormat>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_1__ctor_mA03643DDA47CA09A5691A9DAE9D5F3B097F1CAB9_gshared (Comparer_1_t08EFE3253044A4FD525E5E8D8A87294B3F35B012 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_4 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
Enumerator__ctor_mB688A5999DC16A8DF99AA954CB6DD9DD3246942E(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_1 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_4 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_5 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_8 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_9 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_12 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_13 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078((&L_16), (int32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_20 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_22 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_24 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
return Enumerator_MoveNext_mB386E7259BB364D109750B49CD9572D0B7EE28A8(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_0 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
return Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
Enumerator_Dispose_m81ED3FDA0AA1BEEA5A2C8E108347EF4D03752310(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_2 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_6 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
int32_t L_7 = KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8);
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_10 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
RuntimeObject * L_11 = KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = L_12;
RuntimeObject * L_14 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_005c:
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_15 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
int32_t L_16 = KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_17 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
RuntimeObject * L_18 = KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_19;
memset((&L_19), 0, sizeof(L_19));
KeyValuePair_2__ctor_m0E2B8624D7996D6A5BA2A81383EE983F4A9DC078((&L_19), (int32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20);
return L_21;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_mDD1720EB86BB95C237BEB35CF144024060442F1A(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_1 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_4 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_mBE1203F2ED60C28F81C6064240BDDC2FEA96D73E(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_2 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_5 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
int32_t L_6 = KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7);
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_9 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
RuntimeObject * L_10 = KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11;
memset((&L_11), 0, sizeof(L_11));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL);
return L_11;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m87AF42607B317900A4B90D5A655874B1643BA429(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_2 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_5 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
int32_t L_6 = KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7);
return L_8;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9C55CEEACDDA1E031285A52B96F08A42F2CB6019(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_gshared (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_2 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * L_5 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_inline((KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)(KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * _thisAdjusted = reinterpret_cast<Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mC82CB4C395951062832C507565D0DCC73B08C719(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m05045FF6D3652A888C6366211B91CD17A9A5D169_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_4 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m05045FF6D3652A888C6366211B91CD17A9A5D169_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
Enumerator__ctor_m05045FF6D3652A888C6366211B91CD17A9A5D169(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_1 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_4 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_5 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_8 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_9 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_12 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_13 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_15 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_mFBD7175CE8F07AE2829E868F97B9D383FE8B704D((&L_16), (RuntimeObject *)L_11, (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_20 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_22 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_24 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
return Enumerator_MoveNext_m647656A3C7DE29E6DC6CB82364DAAB2F8D452EDF(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 L_0 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
return Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA75DCBA7C39757EA4961A04F22201C4D4658F4F3_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mA75DCBA7C39757EA4961A04F22201C4D4658F4F3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
Enumerator_Dispose_mA75DCBA7C39757EA4961A04F22201C4D4658F4F3(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_2 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_6 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
RuntimeObject * L_7 = KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_8 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_9 = KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = L_12;
RuntimeObject * L_14 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_005c:
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_15 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
RuntimeObject * L_16 = KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_17 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_18 = KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 L_19;
memset((&L_19), 0, sizeof(L_19));
KeyValuePair_2__ctor_mFBD7175CE8F07AE2829E868F97B9D383FE8B704D((&L_19), (RuntimeObject *)L_16, (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20);
return L_21;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m7072D7098A14669894EC0F4AB6832D915CEA270D(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_1 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_4 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_mF8C2E2BACD934A3797C9C4709F4509376834C73C(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_2 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_5 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_7 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_8 = KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11;
memset((&L_11), 0, sizeof(L_11));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL);
return L_11;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m486E2C6BBDA625561C8668F2BDD640EB930EF61C(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_2 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_5 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m3CF26C3142525A2276C12064B83DAF51174B2DBA(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_gshared (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_2 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * L_5 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)__this->get_address_of_current_3();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_6 = KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_inline((KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)(KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7);
return L_8;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * _thisAdjusted = reinterpret_cast<Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7A43C3F16AAC9D2F50C947489643B924F2A38435(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9915E3D2866A44FC00315C0609A376475C10F520_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_4 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m9915E3D2866A44FC00315C0609A376475C10F520_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
Enumerator__ctor_m9915E3D2866A44FC00315C0609A376475C10F520(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_1 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_4 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_5 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_8 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_9 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_12 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_13 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
bool L_15 = (bool)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_m495D844F78DE88E97C84C76CEF1ED54272F1EB6F((&L_16), (RuntimeObject *)L_11, (bool)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_20 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_22 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_24 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
return Enumerator_MoveNext_mF8BA4D208BC55E51C2CB3CAD74712F0FCF169866(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 L_0 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
return Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m285AC739AADDFFAADDB0447469307045D05430AB_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m285AC739AADDFFAADDB0447469307045D05430AB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
Enumerator_Dispose_m285AC739AADDFFAADDB0447469307045D05430AB(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_2 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_6 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
RuntimeObject * L_7 = KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_8 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
bool L_9 = KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
bool L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = L_12;
RuntimeObject * L_14 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_005c:
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_15 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
RuntimeObject * L_16 = KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_17 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
bool L_18 = KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 L_19;
memset((&L_19), 0, sizeof(L_19));
KeyValuePair_2__ctor_m495D844F78DE88E97C84C76CEF1ED54272F1EB6F((&L_19), (RuntimeObject *)L_16, (bool)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20);
return L_21;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m98028C14F5D58D52592F4F0B70EA0F9DC0F46B32(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_1 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_4 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_mB6FDC30A70ECB137ABA940C88C8FA6C5693D068F(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_2 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_5 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_7 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
bool L_8 = KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
bool L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11;
memset((&L_11), 0, sizeof(L_11));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL);
return L_11;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m16A04B012854AA88D524871517C9E08CDCD0FAA8(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_2 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_5 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m37BD2C05AC8F64ED8FA780C77AB1595D48EA83D1(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_gshared (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_2 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * L_5 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)__this->get_address_of_current_3();
bool L_6 = KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_inline((KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)(KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
bool L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7);
return L_8;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * _thisAdjusted = reinterpret_cast<Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2098529072610980B62237A443D35736D95778AE(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_4 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
Enumerator__ctor_m6CDFD6E23B852DAFE3CFDCD8C705B8C4C31ABE03(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_1 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_4 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_5 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_8 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_9 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_12 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_13 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D((&L_16), (RuntimeObject *)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_20 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_22 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_24 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
return Enumerator_MoveNext_mFA3AE5237C9C6316F62BCE3FFD7B8DA5478CB1C2(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_0 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
return Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA50DBA0C24DBBC85BC9F1DDE011645D185FED3D3_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mA50DBA0C24DBBC85BC9F1DDE011645D185FED3D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
Enumerator_Dispose_mA50DBA0C24DBBC85BC9F1DDE011645D185FED3D3(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_2 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_6 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
RuntimeObject * L_7 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_8 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
int32_t L_9 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = L_12;
RuntimeObject * L_14 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_005c:
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_15 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
RuntimeObject * L_16 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_17 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
int32_t L_18 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_19;
memset((&L_19), 0, sizeof(L_19));
KeyValuePair_2__ctor_m463A67E5B6E5EC73FA4BFA6FE08C52EA7F7B418D((&L_19), (RuntimeObject *)L_16, (int32_t)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20);
return L_21;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m3723476A6C63A851DE85C95E708F39868890514F(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_1 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_4 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_mBD2C086C45CE559D1BDED36516C8FBC16E241CFF(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_2 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_5 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_7 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
int32_t L_8 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11;
memset((&L_11), 0, sizeof(L_11));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL);
return L_11;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m682A273596BA03765004C3381A51F825AD49731A(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_2 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_5 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2098F5BF7A9F95D096D4E8B30E9084699F76F574(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_gshared (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_2 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * L_5 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)__this->get_address_of_current_3();
int32_t L_6 = KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_inline((KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7);
return L_8;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * _thisAdjusted = reinterpret_cast<Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m75FD6DAB65126F15A5BAC60171185F3901F1F824(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_4 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
Enumerator__ctor_m3FD84B57A809FF88FC26B86687686E3949F9CBC8(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_1 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_4 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_5 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_8 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_9 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_12 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_13 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3((&L_16), (RuntimeObject *)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_20 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_22 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_24 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
return Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_0 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
return Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_2 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_6 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_7 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_8 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_9 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10;
memset((&L_10), 0, sizeof(L_10));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_10), (RuntimeObject *)L_7, (RuntimeObject *)L_9, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11 = L_10;
RuntimeObject * L_12 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_11);
return L_12;
}
IL_005c:
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_13 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_14 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_15 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_16 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_17;
memset((&L_17), 0, sizeof(L_17));
KeyValuePair_2__ctor_m783A0935E40FCB80D5940E8CCF0EFEFE41D7C7D3((&L_17), (RuntimeObject *)L_14, (RuntimeObject *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_18 = L_17;
RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_18);
return L_19;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_mA3DD8DB97C0911357EC6202E55D022204E40CE27(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_1 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_4 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m174BA5BD53E5423D759837949810427669CEEF61(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_2 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_5 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_7 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_8 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9;
memset((&L_9), 0, sizeof(L_9));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_9), (RuntimeObject *)L_6, (RuntimeObject *)L_8, /*hidden argument*/NULL);
return L_9;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1729E1271BC4284B63F61BDF1E96A0B7AA8A33C4(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_2 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_5 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m56086D9072B61D57FAA2511E650C59DC60D5B72E(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_2 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * L_5 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_inline((KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * _thisAdjusted = reinterpret_cast<Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mCD255195CA2ED878D5A4B9C85F3DE5C85DA5ADD5(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_4 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
Enumerator__ctor_mC05BB4833CCCF3518A99F2B27BEB5973D1E7AC32(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_1 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_4 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_5 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_8 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_9 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_12 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_13 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_15 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0((&L_16), (RuntimeObject *)L_11, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_20 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_22 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_24 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
return Enumerator_MoveNext_m1D2A4E08CE28285423EF0BF778D9AF9812019118(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_0 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
return Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1F28ED5670EA987543E0FBEBD88CF7D7738A0EDD_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m1F28ED5670EA987543E0FBEBD88CF7D7738A0EDD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
Enumerator_Dispose_m1F28ED5670EA987543E0FBEBD88CF7D7738A0EDD(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_2 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_6 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
RuntimeObject * L_7 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_8 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_9 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = L_12;
RuntimeObject * L_14 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_005c:
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_15 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
RuntimeObject * L_16 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_17 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_18 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_19;
memset((&L_19), 0, sizeof(L_19));
KeyValuePair_2__ctor_m036B07A37CD133C33431E3A1AD0C3A57DBC521F0((&L_19), (RuntimeObject *)L_16, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20);
return L_21;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_mAB7BA88596C5E06949EB61A4F3E05902B1FCD89E(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_1 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_4 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m9512D509DA733C1B12B0A55E7E4665809BD84A97(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_2 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_5 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_7 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_8 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11;
memset((&L_11), 0, sizeof(L_11));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL);
return L_11;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m18529A2BD5CA78524DECDFB2845835D4D3F64790(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_2 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_5 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m90D489F6C9B2595FC9DEE030E2DC589330ACCB1A(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_gshared (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_2 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * L_5 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)__this->get_address_of_current_3();
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_inline((KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7);
return L_8;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * _thisAdjusted = reinterpret_cast<Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m693EA9B73A8ABA3C75A2B1CCE7D9C4D023FC6AB4(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF141BC4E0D14D5D3A5A8AFCC6110CD0BC71D26CB_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_1(L_2);
__this->set_index_2(0);
int32_t L_3 = ___getEnumeratorRetType1;
__this->set_getEnumeratorRetType_4(L_3);
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_4 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mF141BC4E0D14D5D3A5A8AFCC6110CD0BC71D26CB_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
Enumerator__ctor_mF141BC4E0D14D5D3A5A8AFCC6110CD0BC71D26CB(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_1 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_009e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_RuntimeMethod_var);
}
IL_0021:
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_4 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* L_5 = (EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_2();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0090;
}
}
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_8 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* L_9 = (EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_2();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_12 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_12);
EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* L_13 = (EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639*)L_12->get_entries_1();
int32_t L_14 = (int32_t)__this->get_index_2();
NullCheck(L_13);
float L_15 = (float)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3();
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 L_16;
memset((&L_16), 0, sizeof(L_16));
KeyValuePair_2__ctor_mBDDCE6A0B0329EACED11818AE33B703481AECFAB((&L_16), (RuntimeObject *)L_11, (float)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
__this->set_current_3(L_16);
int32_t L_17 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)));
return (bool)1;
}
IL_0090:
{
int32_t L_18 = (int32_t)__this->get_index_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
}
IL_009e:
{
int32_t L_19 = (int32_t)__this->get_index_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_20 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_20);
int32_t L_21 = (int32_t)L_20->get_count_2();
if ((!(((uint32_t)L_19) >= ((uint32_t)L_21))))
{
goto IL_0021;
}
}
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_22 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_22);
int32_t L_23 = (int32_t)L_22->get_count_2();
__this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)));
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_24 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
return Enumerator_MoveNext_m745DA9A9D8B0505B19CE5796E9690A52290C9A84(_thisAdjusted, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 L_0 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
return Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_inline(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5973A27A68C8CCA4B76BC05178664D19CCE6E36A_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m5973A27A68C8CCA4B76BC05178664D19CCE6E36A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
Enumerator_Dispose_m5973A27A68C8CCA4B76BC05178664D19CCE6E36A(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_2 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4();
if ((!(((uint32_t)L_5) == ((uint32_t)1))))
{
goto IL_005c;
}
}
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_6 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
RuntimeObject * L_7 = KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_8 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
float L_9 = KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
float L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_12;
memset((&L_12), 0, sizeof(L_12));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = L_12;
RuntimeObject * L_14 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_005c:
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_15 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
RuntimeObject * L_16 = KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_17 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
float L_18 = KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 L_19;
memset((&L_19), 0, sizeof(L_19));
KeyValuePair_2__ctor_mBDDCE6A0B0329EACED11818AE33B703481AECFAB((&L_19), (RuntimeObject *)L_16, (float)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 L_20 = L_19;
RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20);
return L_21;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_mF37FB242333D942C3C0A168E907697C558D5C8EA(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_1();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_1 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_2(0);
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_4 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m9335EB0268FFFD9736FE0620C8346A162F3C6B31(_thisAdjusted, method);
}
// System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_2 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_5 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_7 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
float L_8 = KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
float L_9 = L_8;
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_11;
memset((&L_11), 0, sizeof(L_11));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL);
return L_11;
}
}
IL2CPP_EXTERN_C DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m8B52E84789AEFBB341CD90A963BE850C88E790FF(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_2 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_5 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
RuntimeObject * L_6 = KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
return L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9804616C0EC15AF90C551FE61AED89344201E2CA(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Single>::System.Collections.IDictionaryEnumerator.get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_gshared (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_2();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_2 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_RuntimeMethod_var);
}
IL_0028:
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * L_5 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)__this->get_address_of_current_3();
float L_6 = KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_inline((KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)(KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
float L_7 = L_6;
RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7);
return L_8;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * _thisAdjusted = reinterpret_cast<Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 *>(__this + 1);
return Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25781508121CC46F3F02323E42F15209B47FE42E(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * _thisAdjusted = reinterpret_cast<Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *>(__this + 1);
Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * _thisAdjusted = reinterpret_cast<Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *>(__this + 1);
Enumerator_Dispose_mB0A9FE8FC5264460EA74FDA394BA5952C00D5E5D(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_1 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_4 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_5 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_8 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_9 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_15 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_17 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * _thisAdjusted = reinterpret_cast<Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *>(__this + 1);
return Enumerator_MoveNext_mEC2938FD01311789888F82425F685083D1171E32(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * _thisAdjusted = reinterpret_cast<Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *>(__this + 1);
return Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_2 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_RuntimeMethod_var);
}
IL_0028:
{
RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3();
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * _thisAdjusted = reinterpret_cast<Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m7009981C43DD0B21AE9B77F9330D0EA4CCD7C7A9(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_gshared (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_1 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * _thisAdjusted = reinterpret_cast<Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m8EF9A37D012ACF36C9EE833E1D495413C555C2B9(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * L_3 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A *)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * _thisAdjusted = reinterpret_cast<Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *>(__this + 1);
Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC7E854BB00050D9FE0B71830FF8B78F151E5F119_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mC7E854BB00050D9FE0B71830FF8B78F151E5F119_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * _thisAdjusted = reinterpret_cast<Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *>(__this + 1);
Enumerator_Dispose_mC7E854BB00050D9FE0B71830FF8B78F151E5F119(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_1 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_4 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_5 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_8 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_9 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_11 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_15 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_17 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * L_19 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A *)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * _thisAdjusted = reinterpret_cast<Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *>(__this + 1);
return Enumerator_MoveNext_mA81A31BD7AD9A9E15BA8C339D0953A1211E4BA02(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
{
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_0 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * _thisAdjusted = reinterpret_cast<Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *>(__this + 1);
return Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_2 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_RuntimeMethod_var);
}
IL_0028:
{
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_5 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )__this->get_currentValue_3();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6);
return L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * _thisAdjusted = reinterpret_cast<Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m8FAD09AD9D0C3A62C3A660C43BD5504032FCA53F(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_gshared (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_1 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A * L_4 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A *)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * _thisAdjusted = reinterpret_cast<Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m672411BBAB59D6180D7A972A559D15924C8CA07D(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
bool* L_3 = (bool*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(bool));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * _thisAdjusted = reinterpret_cast<Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *>(__this + 1);
Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2315640164C8D921A4E137896D5C8799509FB2D0_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m2315640164C8D921A4E137896D5C8799509FB2D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * _thisAdjusted = reinterpret_cast<Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *>(__this + 1);
Enumerator_Dispose_m2315640164C8D921A4E137896D5C8799509FB2D0(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_1 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_4 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_5 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_8 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_9 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_15 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_17 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
bool* L_19 = (bool*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(bool));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * _thisAdjusted = reinterpret_cast<Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *>(__this + 1);
return Enumerator_MoveNext_m5BF189F4E22B9318919EB585744B36674166D285(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C bool Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * _thisAdjusted = reinterpret_cast<Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *>(__this + 1);
return Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_2 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_RuntimeMethod_var);
}
IL_0028:
{
bool L_5 = (bool)__this->get_currentValue_3();
bool L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6);
return L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * _thisAdjusted = reinterpret_cast<Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_mEC84007F512116B68632689AE8904BC46084CDA4(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_gshared (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_1 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
bool* L_4 = (bool*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(bool));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * _thisAdjusted = reinterpret_cast<Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m37C124B2778F0A0A6F3F0860E33F218953CB651C(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * _thisAdjusted = reinterpret_cast<Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *>(__this + 1);
Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE3ABD29CF11410EA48CE979AE985B812EFD4C128_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mE3ABD29CF11410EA48CE979AE985B812EFD4C128_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * _thisAdjusted = reinterpret_cast<Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *>(__this + 1);
Enumerator_Dispose_mE3ABD29CF11410EA48CE979AE985B812EFD4C128(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_1 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_4 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_5 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_8 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_9 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_15 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_17 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(int32_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * _thisAdjusted = reinterpret_cast<Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *>(__this + 1);
return Enumerator_MoveNext_m907258FFA47715D3AA9766589ED760CECE3B499F(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * _thisAdjusted = reinterpret_cast<Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *>(__this + 1);
return Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_2 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = (int32_t)__this->get_currentValue_3();
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6);
return L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * _thisAdjusted = reinterpret_cast<Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_mBB0EBDE433D457C174443FCF34FA01C79B614CDC(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_gshared (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_1 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * _thisAdjusted = reinterpret_cast<Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_mDB138628206CAE8BC257AA355E617AEB3878BCA0(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * _thisAdjusted = reinterpret_cast<Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *>(__this + 1);
Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * _thisAdjusted = reinterpret_cast<Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *>(__this + 1);
Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_1 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_4 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_5 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_8 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_9 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_15 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_17 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * _thisAdjusted = reinterpret_cast<Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *>(__this + 1);
return Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * _thisAdjusted = reinterpret_cast<Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *>(__this + 1);
return Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_2 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_RuntimeMethod_var);
}
IL_0028:
{
RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3();
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * _thisAdjusted = reinterpret_cast<Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m7B753A35B7159A09E453F7929641F842C5B2CA18(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_gshared (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_1 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * _thisAdjusted = reinterpret_cast<Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m96C6FA015D719E8EE4B90EE55B5EA444216C2F5B(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m700CF1F2AC79A11D8834D162E8CB21E004F3FEEF_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_3 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m700CF1F2AC79A11D8834D162E8CB21E004F3FEEF_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * _thisAdjusted = reinterpret_cast<Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *>(__this + 1);
Enumerator__ctor_m700CF1F2AC79A11D8834D162E8CB21E004F3FEEF(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m207BA103FFA0F3405F1568102DC82DD3A76B2FB1_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m207BA103FFA0F3405F1568102DC82DD3A76B2FB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * _thisAdjusted = reinterpret_cast<Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *>(__this + 1);
Enumerator_Dispose_m207BA103FFA0F3405F1568102DC82DD3A76B2FB1(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_1 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_4 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_5 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_8 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_9 = (EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_11 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_15 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_17 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_19 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * _thisAdjusted = reinterpret_cast<Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *>(__this + 1);
return Enumerator_MoveNext_mB87F253F7CD8B52FC2C3880CDF55356FD6A52BB2(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
{
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_0 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * _thisAdjusted = reinterpret_cast<Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *>(__this + 1);
return Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_2 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_RuntimeMethod_var);
}
IL_0028:
{
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_5 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )__this->get_currentValue_3();
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6);
return L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * _thisAdjusted = reinterpret_cast<Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m1F1CFAE0EA6BBF17D0450A13763CF13477914DB9(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_gshared (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 * L_1 = (Dictionary_2_tA93B4F31972FED6744B82EC3C419078E966BD3C6 *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * L_4 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * _thisAdjusted = reinterpret_cast<Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_m5A1FA9307552226F74E8220F43FE89AB52ABF940(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD31FC34F5B2F7C643FBB91FB488FA6B20FBD7E40_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, const RuntimeMethod* method)
{
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_0 = ___dictionary0;
__this->set_dictionary_0(L_0);
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_1 = ___dictionary0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
__this->set_version_2(L_2);
__this->set_index_1(0);
float* L_3 = (float*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_3, sizeof(float));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mD31FC34F5B2F7C643FBB91FB488FA6B20FBD7E40_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * ___dictionary0, const RuntimeMethod* method)
{
Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * _thisAdjusted = reinterpret_cast<Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *>(__this + 1);
Enumerator__ctor_mD31FC34F5B2F7C643FBB91FB488FA6B20FBD7E40(_thisAdjusted, ___dictionary0, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m60DA385C6F3EE1BD61A8DD9FA00BCE221053FA7A_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m60DA385C6F3EE1BD61A8DD9FA00BCE221053FA7A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * _thisAdjusted = reinterpret_cast<Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *>(__this + 1);
Enumerator_Dispose_m60DA385C6F3EE1BD61A8DD9FA00BCE221053FA7A(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_1 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_RuntimeMethod_var);
}
IL_001e:
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_4 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_4);
EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* L_5 = (EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639*)L_4->get_entries_1();
int32_t L_6 = (int32_t)__this->get_index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_8 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_8);
EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639* L_9 = (EntryU5BU5D_t85A18EDD64A390DCACCB4C30A9DBF343D517D639*)L_8->get_entries_1();
int32_t L_10 = (int32_t)__this->get_index_1();
NullCheck(L_9);
float L_11 = (float)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3();
__this->set_currentValue_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get_index_1();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_15 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get_count_2();
if ((!(((uint32_t)L_14) >= ((uint32_t)L_16))))
{
goto IL_001e;
}
}
{
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_17 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get_count_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
float* L_19 = (float*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_19, sizeof(float));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * _thisAdjusted = reinterpret_cast<Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *>(__this + 1);
return Enumerator_MoveNext_m9A98A413BE1AAD6090CDF8D789F7DF88C19B55D7(_thisAdjusted, method);
}
// TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
{
float L_0 = (float)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C float Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * _thisAdjusted = reinterpret_cast<Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *>(__this + 1);
return Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_inline(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_2 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, (String_t*)_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_RuntimeMethod_var);
}
IL_0028:
{
float L_5 = (float)__this->get_currentValue_3();
float L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6);
return L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * _thisAdjusted = reinterpret_cast<Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *>(__this + 1);
return Enumerator_System_Collections_IEnumerator_get_Current_m94A02993C6DD3C7C328B301693D8F86700B806C0(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Single>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_gshared (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = (int32_t)__this->get_version_2();
Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C * L_1 = (Dictionary_2_t7ED33C50131CAB8897963C9BCD19DF15A695E42C *)__this->get_dictionary_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, (String_t*)_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_RuntimeMethod_var);
}
IL_001e:
{
__this->set_index_1(0);
float* L_4 = (float*)__this->get_address_of_currentValue_3();
il2cpp_codegen_initobj(L_4, sizeof(float));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * _thisAdjusted = reinterpret_cast<Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 *>(__this + 1);
Enumerator_System_Collections_IEnumerator_Reset_mCA9B26E64FA6041A4BBD05ADC4DBCDB153202A05(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mFE12A7A21ECF0C78EC9E7C1AA9048327D5E42207_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * ___dictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection__ctor_mFE12A7A21ECF0C78EC9E7C1AA9048327D5E42207_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = ___dictionary0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_mFE12A7A21ECF0C78EC9E7C1AA9048327D5E42207_RuntimeMethod_var);
}
IL_0014:
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_2 = ___dictionary0;
__this->set_dictionary_0(L_2);
return;
}
}
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 ValueCollection_GetEnumerator_mE3FC38B611CBB8E3B330812AB32E6A9B58300C79_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6((&L_1), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::CopyTo(TValue[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* V_1 = NULL;
int32_t V_2 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___index1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002e;
}
}
IL_0018:
{
int32_t L_5 = ___index1;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_RuntimeMethod_var);
}
IL_002e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___index1;
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_11 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_11);
int32_t L_12 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12)))
{
goto IL_004b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, ValueCollection_CopyTo_m13A5F0DD8C3AC11A55856EE5F648BE1265EB0A38_RuntimeMethod_var);
}
IL_004b:
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_14 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_14);
int32_t L_15 = (int32_t)L_14->get_count_2();
V_0 = (int32_t)L_15;
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_16 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_16);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_17 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_16->get_entries_1();
V_1 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_17;
V_2 = (int32_t)0;
goto IL_0092;
}
IL_0067:
{
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_18 = V_1;
int32_t L_19 = V_2;
NullCheck(L_18);
int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0();
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_008e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ___array0;
int32_t L_22 = ___index1;
int32_t L_23 = (int32_t)L_22;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_24 = V_1;
int32_t L_25 = V_2;
NullCheck(L_24);
RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3();
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26);
}
IL_008e:
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0092:
{
int32_t L_28 = V_2;
int32_t L_29 = V_0;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0067;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mAB30441E70019FF4CD8359E806E2261FCD995738_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0);
int32_t L_1 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m0ABBC8D08817BAC17B9D13C4E8B37E9B9BE3FCD5_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m356D5D2DB51CF06720A0672A46E2F5AFB7ACA766_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m356D5D2DB51CF06720A0672A46E2F5AFB7ACA766_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m356D5D2DB51CF06720A0672A46E2F5AFB7ACA766_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA1709A1BBF9863255F7CA4E87DD443CF8A24259F_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA1709A1BBF9863255F7CA4E87DD443CF8A24259F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mA1709A1BBF9863255F7CA4E87DD443CF8A24259F_RuntimeMethod_var);
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5971032670683B699DFB6F56C420554D7096B392_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5971032670683B699DFB6F56C420554D7096B392_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m5971032670683B699DFB6F56C420554D7096B392_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_mA2F3B28405E09F670A25A1EE939F9865B47C6945_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
RuntimeObject * L_1 = ___item0;
NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m5C937B116C23A214AB99F45CFF6AF962BECD8E9F_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6((&L_1), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mE0015744C1CFB758CA1592B3A8B615B995A8DBBA_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_0 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_mE76FAFFC809D2B8BBD96FF58580A2A2EE6E8BBC6((&L_1), (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_gshared (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* V_3 = NULL;
int32_t V_4 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
}
IL_0027:
{
RuntimeArray * L_5 = ___array0;
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
}
IL_0040:
{
int32_t L_8 = ___index1;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_9 = ___index1;
RuntimeArray * L_10 = ___array0;
NullCheck((RuntimeArray *)L_10);
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) <= ((int32_t)L_11)))
{
goto IL_0063;
}
}
IL_004d:
{
int32_t L_12 = ___index1;
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
}
IL_0063:
{
RuntimeArray * L_16 = ___array0;
NullCheck((RuntimeArray *)L_16);
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL);
int32_t L_18 = ___index1;
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_19 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_19);
int32_t L_20 = (( int32_t (*) (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20)))
{
goto IL_0083;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
}
IL_0083:
{
RuntimeArray * L_22 = ___array0;
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
if (!L_23)
{
goto IL_0096;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_0;
int32_t L_25 = ___index1;
NullCheck((ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 *)__this);
(( void (*) (ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t19C23201FD11AE373C15EE2277543E87C2A30913 *)__this, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return;
}
IL_0096:
{
RuntimeArray * L_26 = ___array0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1;
if (L_27)
{
goto IL_00b0;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_28, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
}
IL_00b0:
{
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_29 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_29);
int32_t L_30 = (int32_t)L_29->get_count_2();
V_2 = (int32_t)L_30;
Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * L_31 = (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 *)__this->get_dictionary_0();
NullCheck(L_31);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_32 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_31->get_entries_1();
V_3 = (EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285*)L_32;
}
IL_00c8:
try
{ // begin try (depth: 1)
{
V_4 = (int32_t)0;
goto IL_00fd;
}
IL_00cd:
{
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0();
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_00f7;
}
}
IL_00dd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1;
int32_t L_37 = ___index1;
int32_t L_38 = (int32_t)L_37;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_39 = V_3;
int32_t L_40 = V_4;
NullCheck(L_39);
RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3();
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_41);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41);
}
IL_00f7:
{
int32_t L_42 = V_4;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
}
IL_00fd:
{
int32_t L_43 = V_4;
int32_t L_44 = V_2;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_00cd;
}
}
IL_0102:
{
goto IL_0115;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0104;
throw e;
}
CATCH_0104:
{ // begin catch(System.ArrayTypeMismatchException)
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_45 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_45, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mAAA44CBB8837C8E2BBB8CE0F3D2412EA8503A016_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0115:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m136DAA7D2947B79A3D74F1FD48FF7E08AAF28582_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * ___dictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection__ctor_m136DAA7D2947B79A3D74F1FD48FF7E08AAF28582_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = ___dictionary0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m136DAA7D2947B79A3D74F1FD48FF7E08AAF28582_RuntimeMethod_var);
}
IL_0014:
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_2 = ___dictionary0;
__this->set_dictionary_0(L_2);
return;
}
}
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC ValueCollection_GetEnumerator_mE4E5FACA7426252613D7F9721788A9CF16A6AE76_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973((&L_1), (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::CopyTo(TValue[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* V_1 = NULL;
int32_t V_2 = 0;
{
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___index1;
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002e;
}
}
IL_0018:
{
int32_t L_5 = ___index1;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_RuntimeMethod_var);
}
IL_002e:
{
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___index1;
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_11 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_11);
int32_t L_12 = (( int32_t (*) (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12)))
{
goto IL_004b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, ValueCollection_CopyTo_m9DDE8F44767E7FCA3635425E13F7064F68BE149B_RuntimeMethod_var);
}
IL_004b:
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_14 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_14);
int32_t L_15 = (int32_t)L_14->get_count_2();
V_0 = (int32_t)L_15;
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_16 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_16);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_17 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_16->get_entries_1();
V_1 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_17;
V_2 = (int32_t)0;
goto IL_0092;
}
IL_0067:
{
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_18 = V_1;
int32_t L_19 = V_2;
NullCheck(L_18);
int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0();
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_008e;
}
}
{
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* L_21 = ___array0;
int32_t L_22 = ___index1;
int32_t L_23 = (int32_t)L_22;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_24 = V_1;
int32_t L_25 = V_2;
NullCheck(L_24);
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_26 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3();
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )L_26);
}
IL_008e:
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0092:
{
int32_t L_28 = V_2;
int32_t L_29 = V_0;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0067;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_mAA61FD5A5AD5C3DCD4B9C004EAFC20FD5F04436F_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0);
int32_t L_1 = (( int32_t (*) (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m663D6DA0E4D726F8C08893EF88CE73C907A5D4FA_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.Generic.ICollection<TValue>.Add(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m011399A990F1B60614792C55FA517C8C5C348621_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m011399A990F1B60614792C55FA517C8C5C348621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m011399A990F1B60614792C55FA517C8C5C348621_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.Generic.ICollection<TValue>.Remove(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m170E98680AF4B51125414A6CA83E0AE1839D4836_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m170E98680AF4B51125414A6CA83E0AE1839D4836_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m170E98680AF4B51125414A6CA83E0AE1839D4836_RuntimeMethod_var);
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.Generic.ICollection<TValue>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7C39842B1F0FD7FDF2F4B444D5068D3EE577F52D_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7C39842B1F0FD7FDF2F4B444D5068D3EE577F52D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m7C39842B1F0FD7FDF2F4B444D5068D3EE577F52D_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.Generic.ICollection<TValue>.Contains(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m9A0F4BB0D8C55D7923FEE2F203EC0AB114850F59_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A ___item0, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_1 = ___item0;
NullCheck((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *, LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0, (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mA8FBF81EAEA9AA85E5BBCA47102E6927102490A9_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973((&L_1), (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m01CF33A4DB17955717D9E40FC3A4553BD7CB98A3_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_0 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m8CBF62ACC684174CEE92CD696C694A602021F973((&L_1), (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,Collections.Hybrid.Generic.LinkedListDictionary`2_LLEntry<System.Object,System.Object>>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_gshared (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* V_3 = NULL;
int32_t V_4 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
}
IL_0027:
{
RuntimeArray * L_5 = ___array0;
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
}
IL_0040:
{
int32_t L_8 = ___index1;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_9 = ___index1;
RuntimeArray * L_10 = ___array0;
NullCheck((RuntimeArray *)L_10);
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) <= ((int32_t)L_11)))
{
goto IL_0063;
}
}
IL_004d:
{
int32_t L_12 = ___index1;
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
}
IL_0063:
{
RuntimeArray * L_16 = ___array0;
NullCheck((RuntimeArray *)L_16);
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL);
int32_t L_18 = ___index1;
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_19 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_19);
int32_t L_20 = (( int32_t (*) (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20)))
{
goto IL_0083;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
}
IL_0083:
{
RuntimeArray * L_22 = ___array0;
V_0 = (LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735*)((LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* L_23 = V_0;
if (!L_23)
{
goto IL_0096;
}
}
{
LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735* L_24 = V_0;
int32_t L_25 = ___index1;
NullCheck((ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 *)__this);
(( void (*) (ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 *, LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tF535A2363ED6B86A304A599ED7B5A457DC51D676 *)__this, (LLEntryU5BU5D_t3D84D6A0DA0038E3904B3108FA08B5F1E84E1735*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return;
}
IL_0096:
{
RuntimeArray * L_26 = ___array0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1;
if (L_27)
{
goto IL_00b0;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_28, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
}
IL_00b0:
{
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_29 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_29);
int32_t L_30 = (int32_t)L_29->get_count_2();
V_2 = (int32_t)L_30;
Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B * L_31 = (Dictionary_2_t8953CBA0503E1F093B2EA0F704B1AA1098C3861B *)__this->get_dictionary_0();
NullCheck(L_31);
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_32 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_31->get_entries_1();
V_3 = (EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12*)L_32;
}
IL_00c8:
try
{ // begin try (depth: 1)
{
V_4 = (int32_t)0;
goto IL_00fd;
}
IL_00cd:
{
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0();
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_00f7;
}
}
IL_00dd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1;
int32_t L_37 = ___index1;
int32_t L_38 = (int32_t)L_37;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
EntryU5BU5D_t275F531BB73D521ECE0082D543EBF18137F36E12* L_39 = V_3;
int32_t L_40 = V_4;
NullCheck(L_39);
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_41 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3();
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_42 = L_41;
RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42);
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_43);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43);
}
IL_00f7:
{
int32_t L_44 = V_4;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00fd:
{
int32_t L_45 = V_4;
int32_t L_46 = V_2;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_00cd;
}
}
IL_0102:
{
goto IL_0115;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0104;
throw e;
}
CATCH_0104:
{ // begin catch(System.ArrayTypeMismatchException)
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_47 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_47, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB13C4E33A694BCE4C7E9BD499337CDDDD8773869_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0115:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m96B63C4B04F318F6D271E8EFACF092C9E48FC11E_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * ___dictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection__ctor_m96B63C4B04F318F6D271E8EFACF092C9E48FC11E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = ___dictionary0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m96B63C4B04F318F6D271E8EFACF092C9E48FC11E_RuntimeMethod_var);
}
IL_0014:
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_2 = ___dictionary0;
__this->set_dictionary_0(L_2);
return;
}
}
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 ValueCollection_GetEnumerator_m445F58DD457B786AAB03FE21426257D70CDFAAD5_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9((&L_1), (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::CopyTo(TValue[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* V_1 = NULL;
int32_t V_2 = 0;
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___index1;
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002e;
}
}
IL_0018:
{
int32_t L_5 = ___index1;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_RuntimeMethod_var);
}
IL_002e:
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___index1;
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_11 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_11);
int32_t L_12 = (( int32_t (*) (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12)))
{
goto IL_004b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, ValueCollection_CopyTo_m4D2C0278015E4FB6F0CBA38D72CAE0F48D32169F_RuntimeMethod_var);
}
IL_004b:
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_14 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_14);
int32_t L_15 = (int32_t)L_14->get_count_2();
V_0 = (int32_t)L_15;
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_16 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_16);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_17 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_16->get_entries_1();
V_1 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_17;
V_2 = (int32_t)0;
goto IL_0092;
}
IL_0067:
{
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_18 = V_1;
int32_t L_19 = V_2;
NullCheck(L_18);
int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0();
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_008e;
}
}
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_21 = ___array0;
int32_t L_22 = ___index1;
int32_t L_23 = (int32_t)L_22;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_24 = V_1;
int32_t L_25 = V_2;
NullCheck(L_24);
bool L_26 = (bool)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3();
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (bool)L_26);
}
IL_008e:
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0092:
{
int32_t L_28 = V_2;
int32_t L_29 = V_0;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0067;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m60563A7ADA08C2799A50A283255AD6BDD1DFDCB3_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0);
int32_t L_1 = (( int32_t (*) (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m874900D5F8B19E076FE058EA8C6DDF5D2F83BC68_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Add(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EF13B62B1B96235F45F77ECD55E9C3FEB74C721_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, bool ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EF13B62B1B96235F45F77ECD55E9C3FEB74C721_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m5EF13B62B1B96235F45F77ECD55E9C3FEB74C721_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Remove(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mE46B00F19F8002836D0393A72B25D229BDF2D723_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, bool ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mE46B00F19F8002836D0393A72B25D229BDF2D723_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mE46B00F19F8002836D0393A72B25D229BDF2D723_RuntimeMethod_var);
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m238A8E4DEC276B807DA996D7517D8DA3689738AC_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m238A8E4DEC276B807DA996D7517D8DA3689738AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m238A8E4DEC276B807DA996D7517D8DA3689738AC_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.ICollection<TValue>.Contains(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m396EB4159D08B4797E093E07E7289261748005C7_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, bool ___item0, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
bool L_1 = ___item0;
NullCheck((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_mE05FACC471837F8167E5753541065CBA729A2D86_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9((&L_1), (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mAD9AFBABBB6AD5A4106D9D5EE5C750ECAEB8C611_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_0 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_mD9BEC9EAFE773E18AC55253F1C1F1E6A3EFCA6D9((&L_1), (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Boolean>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_gshared (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* V_3 = NULL;
int32_t V_4 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
}
IL_0027:
{
RuntimeArray * L_5 = ___array0;
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
}
IL_0040:
{
int32_t L_8 = ___index1;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_9 = ___index1;
RuntimeArray * L_10 = ___array0;
NullCheck((RuntimeArray *)L_10);
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) <= ((int32_t)L_11)))
{
goto IL_0063;
}
}
IL_004d:
{
int32_t L_12 = ___index1;
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
}
IL_0063:
{
RuntimeArray * L_16 = ___array0;
NullCheck((RuntimeArray *)L_16);
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL);
int32_t L_18 = ___index1;
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_19 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_19);
int32_t L_20 = (( int32_t (*) (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20)))
{
goto IL_0083;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
}
IL_0083:
{
RuntimeArray * L_22 = ___array0;
V_0 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)((BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_23 = V_0;
if (!L_23)
{
goto IL_0096;
}
}
{
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_24 = V_0;
int32_t L_25 = ___index1;
NullCheck((ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 *)__this);
(( void (*) (ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 *, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tB7DC4CE97AA490916CE3EC1F155E53F4FDB99FB5 *)__this, (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return;
}
IL_0096:
{
RuntimeArray * L_26 = ___array0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1;
if (L_27)
{
goto IL_00b0;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_28, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
}
IL_00b0:
{
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_29 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_29);
int32_t L_30 = (int32_t)L_29->get_count_2();
V_2 = (int32_t)L_30;
Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B * L_31 = (Dictionary_2_t23E3DD7F836452F041EACAE06F208CB22837308B *)__this->get_dictionary_0();
NullCheck(L_31);
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_32 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_31->get_entries_1();
V_3 = (EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F*)L_32;
}
IL_00c8:
try
{ // begin try (depth: 1)
{
V_4 = (int32_t)0;
goto IL_00fd;
}
IL_00cd:
{
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0();
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_00f7;
}
}
IL_00dd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1;
int32_t L_37 = ___index1;
int32_t L_38 = (int32_t)L_37;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
EntryU5BU5D_tACF93F3DC43BCCD8239721BF16DEFE88491FC55F* L_39 = V_3;
int32_t L_40 = V_4;
NullCheck(L_39);
bool L_41 = (bool)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3();
bool L_42 = L_41;
RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42);
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_43);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43);
}
IL_00f7:
{
int32_t L_44 = V_4;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00fd:
{
int32_t L_45 = V_4;
int32_t L_46 = V_2;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_00cd;
}
}
IL_0102:
{
goto IL_0115;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0104;
throw e;
}
CATCH_0104:
{ // begin catch(System.ArrayTypeMismatchException)
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_47 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_47, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, NULL, ValueCollection_System_Collections_ICollection_CopyTo_m6B32A45D934819A0E4F80A8DE535DE9AAF564964_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0115:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_mDFE89FD8E5C0BFCECE10B34B4A1E8E730AB75E09_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * ___dictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection__ctor_mDFE89FD8E5C0BFCECE10B34B4A1E8E730AB75E09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = ___dictionary0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_mDFE89FD8E5C0BFCECE10B34B4A1E8E730AB75E09_RuntimeMethod_var);
}
IL_0014:
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_2 = ___dictionary0;
__this->set_dictionary_0(L_2);
return;
}
}
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A ValueCollection_GetEnumerator_m8013D42160B8941C901F95A209F71F6641A5BCC3_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D((&L_1), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::CopyTo(TValue[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* V_1 = NULL;
int32_t V_2 = 0;
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___index1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002e;
}
}
IL_0018:
{
int32_t L_5 = ___index1;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_RuntimeMethod_var);
}
IL_002e:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___index1;
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_11 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_11);
int32_t L_12 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12)))
{
goto IL_004b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, ValueCollection_CopyTo_mCDEF1BCEA7F628E18E2565D0C7E234BB9126DC5A_RuntimeMethod_var);
}
IL_004b:
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_14 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_14);
int32_t L_15 = (int32_t)L_14->get_count_2();
V_0 = (int32_t)L_15;
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_16 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_16);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_17 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_16->get_entries_1();
V_1 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_17;
V_2 = (int32_t)0;
goto IL_0092;
}
IL_0067:
{
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_18 = V_1;
int32_t L_19 = V_2;
NullCheck(L_18);
int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0();
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_008e;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_21 = ___array0;
int32_t L_22 = ___index1;
int32_t L_23 = (int32_t)L_22;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_24 = V_1;
int32_t L_25 = V_2;
NullCheck(L_24);
int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3();
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)L_26);
}
IL_008e:
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0092:
{
int32_t L_28 = V_2;
int32_t L_29 = V_0;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0067;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m83A63178D075B93C6BC74C39E7B078FA2C0A247A_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0);
int32_t L_1 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_mD89954D7F7AB6DD79B83CEFA0A47154BF5D71BF7_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBB30355EF8489BC568DD0615FE5227D8CF62E03F_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, int32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBB30355EF8489BC568DD0615FE5227D8CF62E03F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mBB30355EF8489BC568DD0615FE5227D8CF62E03F_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mB6A5CA12D9CD0101F276E58857685346F5160F39_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, int32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mB6A5CA12D9CD0101F276E58857685346F5160F39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_mB6A5CA12D9CD0101F276E58857685346F5160F39_RuntimeMethod_var);
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFC3934EF50E09E6F21286FEC2381DE7E0F43F609_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFC3934EF50E09E6F21286FEC2381DE7E0F43F609_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_mFC3934EF50E09E6F21286FEC2381DE7E0F43F609_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_mE43490EF7ADD3714B02BAA5F5AEC7FF82E103C90_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, int32_t ___item0, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
int32_t L_1 = ___item0;
NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m0A85243A65670D9195F91D36F50F86F96614D90B_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D((&L_1), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_mF236C9F575B9136E706DF44C85E174021256966D_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_0 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m644B509204718565E22B89CF95FECF0867408C3D((&L_1), (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_gshared (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* V_3 = NULL;
int32_t V_4 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
}
IL_0027:
{
RuntimeArray * L_5 = ___array0;
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
}
IL_0040:
{
int32_t L_8 = ___index1;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_9 = ___index1;
RuntimeArray * L_10 = ___array0;
NullCheck((RuntimeArray *)L_10);
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) <= ((int32_t)L_11)))
{
goto IL_0063;
}
}
IL_004d:
{
int32_t L_12 = ___index1;
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
}
IL_0063:
{
RuntimeArray * L_16 = ___array0;
NullCheck((RuntimeArray *)L_16);
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL);
int32_t L_18 = ___index1;
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_19 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_19);
int32_t L_20 = (( int32_t (*) (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20)))
{
goto IL_0083;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
}
IL_0083:
{
RuntimeArray * L_22 = ___array0;
V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = V_0;
if (!L_23)
{
goto IL_0096;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = V_0;
int32_t L_25 = ___index1;
NullCheck((ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *)__this);
(( void (*) (ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_t7B108E5949AABED7EBC85ED1016365781619DAB7 *)__this, (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return;
}
IL_0096:
{
RuntimeArray * L_26 = ___array0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1;
if (L_27)
{
goto IL_00b0;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_28, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
}
IL_00b0:
{
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_29 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_29);
int32_t L_30 = (int32_t)L_29->get_count_2();
V_2 = (int32_t)L_30;
Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A * L_31 = (Dictionary_2_t81923CE2A312318AE13F58085CCF7FA8D879B77A *)__this->get_dictionary_0();
NullCheck(L_31);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_32 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_31->get_entries_1();
V_3 = (EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9*)L_32;
}
IL_00c8:
try
{ // begin try (depth: 1)
{
V_4 = (int32_t)0;
goto IL_00fd;
}
IL_00cd:
{
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0();
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_00f7;
}
}
IL_00dd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1;
int32_t L_37 = ___index1;
int32_t L_38 = (int32_t)L_37;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_39 = V_3;
int32_t L_40 = V_4;
NullCheck(L_39);
int32_t L_41 = (int32_t)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3();
int32_t L_42 = L_41;
RuntimeObject * L_43 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), &L_42);
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_43);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_43);
}
IL_00f7:
{
int32_t L_44 = V_4;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
}
IL_00fd:
{
int32_t L_45 = V_4;
int32_t L_46 = V_2;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_00cd;
}
}
IL_0102:
{
goto IL_0115;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0104;
throw e;
}
CATCH_0104:
{ // begin catch(System.ArrayTypeMismatchException)
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_47 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_47, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mBDD7CF2E8F7F1E58449706E934E01B5A9E1D3EDB_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0115:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m537360965E59036350F5F2181D5D655D6C9A6C14_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection__ctor_m537360965E59036350F5F2181D5D655D6C9A6C14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL);
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = ___dictionary0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection__ctor_m537360965E59036350F5F2181D5D655D6C9A6C14_RuntimeMethod_var);
}
IL_0014:
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_2 = ___dictionary0;
__this->set_dictionary_0(L_2);
return;
}
}
// System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F ValueCollection_GetEnumerator_m6AA58C894265BF1E8514350C4B51CB7811D24674_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B((&L_1), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return L_1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::CopyTo(TValue[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* V_1 = NULL;
int32_t V_2 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___index1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002e;
}
}
IL_0018:
{
int32_t L_5 = ___index1;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_8, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_7, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_RuntimeMethod_var);
}
IL_002e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___index1;
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_11 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_11);
int32_t L_12 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))) >= ((int32_t)L_12)))
{
goto IL_004b;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, ValueCollection_CopyTo_m172A6ED766A3F35536E7DE9B3F84698510C95168_RuntimeMethod_var);
}
IL_004b:
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_14 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_14);
int32_t L_15 = (int32_t)L_14->get_count_2();
V_0 = (int32_t)L_15;
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_16 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_16);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_17 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_16->get_entries_1();
V_1 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_17;
V_2 = (int32_t)0;
goto IL_0092;
}
IL_0067:
{
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_18 = V_1;
int32_t L_19 = V_2;
NullCheck(L_18);
int32_t L_20 = (int32_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hashCode_0();
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_008e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ___array0;
int32_t L_22 = ___index1;
int32_t L_23 = (int32_t)L_22;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_24 = V_1;
int32_t L_25 = V_2;
NullCheck(L_24);
RuntimeObject * L_26 = (RuntimeObject *)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_value_3();
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_26);
}
IL_008e:
{
int32_t L_27 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0092:
{
int32_t L_28 = V_2;
int32_t L_29 = V_0;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0067;
}
}
{
return;
}
}
// System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m650595267C9628EDDEA149F9033F10EE29AD4A6A_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0);
int32_t L_1 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
return L_1;
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m9B3127C768724311E900ACB447F25CDEE684E08A_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA49953C56CCB65B52D0E24185255CF0510C46634_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA49953C56CCB65B52D0E24185255CF0510C46634_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_mA49953C56CCB65B52D0E24185255CF0510C46634_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m4E4EEC8755B96363256140D7A3DD441F5091D413_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m4E4EEC8755B96363256140D7A3DD441F5091D413_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m4E4EEC8755B96363256140D7A3DD441F5091D413_RuntimeMethod_var);
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0A3961005F1ABED70A20D9A614021A251B05584B_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0A3961005F1ABED70A20D9A614021A251B05584B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, (String_t*)_stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m0A3961005F1ABED70A20D9A614021A251B05584B_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m445E3727CE13C9E558B4B49B6996B605E8B4631E_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
RuntimeObject * L_1 = ___item0;
NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0);
bool L_2 = (( bool (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
return L_2;
}
}
// System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m5AB8A73F628967531EFB9A9273141245233E1A0D_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B((&L_1), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Collections.IEnumerator System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_System_Collections_IEnumerable_GetEnumerator_m3ED0CBF6E57994A4A356D96F947471FDA81C4A9A_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_0 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F L_1;
memset((&L_1), 0, sizeof(L_1));
Enumerator__ctor_m6C97D9E1B2E7C78A0DFE6A6D280DC691274BD98B((&L_1), (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F L_2 = L_1;
RuntimeObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0), &L_2);
return (RuntimeObject*)L_3;
}
}
// System.Void System.Collections.Generic.Dictionary`2_ValueCollection<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_gshared (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* V_3 = NULL;
int32_t V_4 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
NullCheck((RuntimeArray *)L_2);
int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, (String_t*)_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
}
IL_0027:
{
RuntimeArray * L_5 = ___array0;
NullCheck((RuntimeArray *)L_5);
int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)L_5, (int32_t)0, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0040;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, (String_t*)_stringLiteralC363992023785AF013BBCF2E20C19D9835184F82, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
}
IL_0040:
{
int32_t L_8 = ___index1;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_004d;
}
}
{
int32_t L_9 = ___index1;
RuntimeArray * L_10 = ___array0;
NullCheck((RuntimeArray *)L_10);
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) <= ((int32_t)L_11)))
{
goto IL_0063;
}
}
IL_004d:
{
int32_t L_12 = ___index1;
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_13);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_15, (String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, (RuntimeObject *)L_14, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
}
IL_0063:
{
RuntimeArray * L_16 = ___array0;
NullCheck((RuntimeArray *)L_16);
int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)L_16, /*hidden argument*/NULL);
int32_t L_18 = ___index1;
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_19 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_19);
int32_t L_20 = (( int32_t (*) (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18))) >= ((int32_t)L_20)))
{
goto IL_0083;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_21 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_21, (String_t*)_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
}
IL_0083:
{
RuntimeArray * L_22 = ___array0;
V_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_22, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0;
if (!L_23)
{
goto IL_0096;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_0;
int32_t L_25 = ___index1;
NullCheck((ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 *)__this);
(( void (*) (ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ValueCollection_tB118C56BE90A8B19D389651BC1B14D98E5384B14 *)__this, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_24, (int32_t)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5));
return;
}
IL_0096:
{
RuntimeArray * L_26 = ___array0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_26, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1;
if (L_27)
{
goto IL_00b0;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_28, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
}
IL_00b0:
{
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_29 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_29);
int32_t L_30 = (int32_t)L_29->get_count_2();
V_2 = (int32_t)L_30;
Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * L_31 = (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA *)__this->get_dictionary_0();
NullCheck(L_31);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_32 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_31->get_entries_1();
V_3 = (EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6*)L_32;
}
IL_00c8:
try
{ // begin try (depth: 1)
{
V_4 = (int32_t)0;
goto IL_00fd;
}
IL_00cd:
{
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = (int32_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->get_hashCode_0();
if ((((int32_t)L_35) < ((int32_t)0)))
{
goto IL_00f7;
}
}
IL_00dd:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1;
int32_t L_37 = ___index1;
int32_t L_38 = (int32_t)L_37;
___index1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_39 = V_3;
int32_t L_40 = V_4;
NullCheck(L_39);
RuntimeObject * L_41 = (RuntimeObject *)((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->get_value_3();
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_41);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (RuntimeObject *)L_41);
}
IL_00f7:
{
int32_t L_42 = V_4;
V_4 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
}
IL_00fd:
{
int32_t L_43 = V_4;
int32_t L_44 = V_2;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_00cd;
}
}
IL_0102:
{
goto IL_0115;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0104;
throw e;
}
CATCH_0104:
{ // begin catch(System.ArrayTypeMismatchException)
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_45 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_45, (String_t*)_stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1, (String_t*)_stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, NULL, ValueCollection_System_Collections_ICollection_CopyTo_mB75F3E771E0BDE00DE9DF1AAD89F3ED7DEFFCF4C_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0115:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 Enumerator_get_Current_m06BE1BB610C63E4879934D506F770C25B6BBA73E_gshared_inline (Enumerator_tA9D0C361A67FF7C9C1092340D4867050D22C57B7 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 L_0 = (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m3BF2B782A34C5DBE7E9F7F1D0B69F9D248B6DD94_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6A192504C64D61B2B59FF5641E62E5094F3914C1_gshared_inline (KeyValuePair_2_tB49DA8C7F6817D87925F65955E8E1190BE76D367 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 Enumerator_get_Current_m37C159BC7E621B17D3B69CDC23D328B6B916240D_gshared_inline (Enumerator_tBF095117177201D7FD4563271EE52C387ABF5E71 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 L_0 = (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mA659ED40B1DE2606EDBBDD7BB773005B94A7644D_gshared_inline (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A KeyValuePair_2_get_Value_m4834B036AFDBA6583356853B1B47C4515CB5257D_gshared_inline (KeyValuePair_2_t8B0AA3B6C77B14DD5527DBBDC934C5FA3978BC41 * __this, const RuntimeMethod* method)
{
{
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_0 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 Enumerator_get_Current_m9C0F5E0030C4D23A8FDE05DA3D240E91FC8F185A_gshared_inline (Enumerator_tE82375CF75F9207E2A6CB592D6F1EA252CB81628 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 L_0 = (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mD41B1D8BB5CF05673B162EEEAF31851A183E1C65_gshared_inline (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m56D3B50CC9CD932F3CDB8D6BBB00CBE0F2CDA396_gshared_inline (KeyValuePair_2_t59916165CF0052B52F6EC02E5965CB916ACE7524 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E Enumerator_get_Current_m35211BCAA8768874960A082DD71C47E8F12993A7_gshared_inline (Enumerator_tF8F0EB9F7450BB9BAD835E0F5B76DD129BF2994E * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_0 = (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mA8E3537C258052C112D227D263B03028DD16CC09_gshared_inline (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m24A5AC0D5FC0501CC02B85EB38A56A7C34E9BB9A_gshared_inline (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_gshared_inline (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_0 = (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m9D4E9BCBAB1BE560871A0889C851FC22A09975F4_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared_inline (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 Enumerator_get_Current_mB1D0547F29477829A1C57C834348E72A82E00120_gshared_inline (Enumerator_t643DB21DCA94565D343EE9CD8DEC99BEA36A7860 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_0 = (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5D7C176AE453D032C109972EBB10C20605DAE036_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C KeyValuePair_2_get_Value_m48979A8E8026569BC75639CDE453011950B84356_gshared_inline (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * __this, const RuntimeMethod* method)
{
{
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_0 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 Enumerator_get_Current_m722C63D45EAE2597A1C562D43152B23178E33AF8_gshared_inline (Enumerator_tEF1CC92862C3CA639B6591872A6129D8011A5AE5 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 L_0 = (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 )__this->get_current_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m57C8C2D07F4870638B8F34D8403F70DB69874B28_gshared_inline (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float KeyValuePair_2_get_Value_mB85C0F73775CB06985DF9286321188085AF1AC11_gshared_inline (KeyValuePair_2_t6168048ACA61DB719E8B1F445CACB7B737E7D488 * __this, const RuntimeMethod* method)
{
{
float L_0 = (float)__this->get_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7478A1B54D9B92E960D1E1C1E95C475E4E6627F7_gshared_inline (Enumerator_tA57C5B86634CF7247800165F33FEFD033C0AD7D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A Enumerator_get_Current_mBD281735399FEF3435CAEC0BB1AE6C94F9DB3398_gshared_inline (Enumerator_tA7985E4CB29D90C620E117B7C2FD2865345AF1DC * __this, const RuntimeMethod* method)
{
{
LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A L_0 = (LLEntry_t039167D5D7D673EF578B353419F9C47D2CA9BF7A )__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m1BF6A61913F4737116F7D17239BFFFBCADF04112_gshared_inline (Enumerator_tF268C0F643411013F65C80AF6BAD3048FB0FE3C7 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m05F420ECE79D8FC4C44BBC164CC7B1A5BD32557D_gshared_inline (Enumerator_t940129FC179BAA7CDBB7B63CA18BE60FDDEDF33A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline (Enumerator_tEAA30391AD3B522BB475B8C0E5FA9974F0E2386F * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C Enumerator_get_Current_m014C147632A30E9BEA28DB66DFDF7DD8BC33373C_gshared_inline (Enumerator_t01A71D0DC6EF577F8A128DC00C8EFBE35D8019E1 * __this, const RuntimeMethod* method)
{
{
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_0 = (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C )__this->get_currentValue_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float Enumerator_get_Current_m64E591D315D93BC1D7BF4DAB0C2450AD22E00FFB_gshared_inline (Enumerator_tA3EC2CD79FCDBF2EB73E5D9AC56B598B34877C50 * __this, const RuntimeMethod* method)
{
{
float L_0 = (float)__this->get_currentValue_3();
return L_0;
}
}
| [
"[email protected]"
] | |
cc989757c805752961db1e808a046b05f4ef0ff0 | 51a58bcf0dc5436e20241180efa7476bfd1937a9 | /Qt/Gui/main.cpp | 37de4122690bd0a8d2a2c5b7266aa779f28d52b5 | [] | no_license | ChaofanChen/ogs5_bhe | 63b6f016f76f8d793efb69eb90efb78069d7dfcb | 18db624140f64631a9652e9bff5c7f8083201b8c | refs/heads/master | 2020-03-12T15:22:10.125612 | 2018-12-14T11:29:29 | 2018-12-14T11:29:29 | 130,688,198 | 0 | 2 | null | 2018-06-12T22:58:55 | 2018-04-23T11:47:05 | C++ | UTF-8 | C++ | false | false | 555 | cpp | #include "Configure.h"
#include "mainwindow.h"
#include <QtGui/QApplication>
#ifdef OGS_USE_OPENSG
#include <OpenSG/OSGBaseFunctions.h>
#endif
int main(int argc, char* argv[])
{
#ifdef OGS_USE_OPENSG
OSG::osgInit(argc, argv);
#endif
QApplication a(argc, argv);
setlocale(LC_NUMERIC,"C");
MainWindow* w = new MainWindow();
w->setWindowTitle( w->windowTitle() + " - " + QString(OGS_VERSION) + " - FirstFloor");
w->show();
int returncode = a.exec();
delete w;
#ifdef OGS_USE_OPENSG
OSG::osgExit();
#endif // OGS_USE_OPENSG
return returncode;
}
| [
"[email protected]"
] | |
169b9c6fcff99d3416385dfcb2f33da9efed900c | 648369cb70b5016d2d22681e7c6f7a71a24995be | /practice/graph_zzt/graph.cpp | 8d228aa8cf6585407a79c379fddd821a4ae783d4 | [] | no_license | Alexander5421/PAT | d044003027481bdd260a4a0dae8a8a8c764377a9 | 80a97336b7f2a39d8724fb798da383b42009e90c | refs/heads/master | 2023-03-29T18:15:54.520079 | 2021-04-07T04:10:11 | 2021-04-07T04:10:11 | 355,408,452 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,138 | cpp | #include<iostream>
#include<vector>
#include<set>
using namespace std;
struct node {int t1, t2;};
int main(int argc, char const *argv[])
{
int N, M,K;
cin >> N >> M;
vector<node> v(M);
for (size_t i = 0; i < M; i++)
{
int vertex1, vertex2;
cin >> vertex1 >> vertex2;
v[i].t1 = vertex1;
v[i].t2 = vertex2;
}
cin >> K;
for (size_t i = 0; i < K; i++)
{
bool k_color=true;
set<int> color;
vector<int> vertex(N); //index means which vertex, value means color
for (size_t i = 0; i < N; i++)
{
int color_index;
cin >> color_index;
color.insert(color_index);
vertex[i] = color_index;
}
for (node edge: v)
{
if (vertex[edge.t1]==vertex[edge.t2])
{
k_color = false;
break;
}
}
if (k_color)
{
cout << color.size() << "-coloring" << endl;
}else
{
cout << "No" << endl;
}
}
return 0;
}
| [
"[email protected]"
] | |
7163fcbfc3ea2210c7ef3097b1287213da73826c | 67fc9e51437e351579fe9d2d349040c25936472a | /wrappers/8.1.1/vtkRectilinearGridOutlineFilterWrap.cc | aa6923d5320b325d964d4ddf6605a3285bc77c26 | [] | permissive | axkibe/node-vtk | 51b3207c7a7d3b59a4dd46a51e754984c3302dec | 900ad7b5500f672519da5aa24c99aa5a96466ef3 | refs/heads/master | 2023-03-05T07:45:45.577220 | 2020-03-30T09:31:07 | 2020-03-30T09:31:07 | 48,490,707 | 6 | 0 | BSD-3-Clause | 2022-12-07T20:41:45 | 2015-12-23T12:58:43 | C++ | UTF-8 | C++ | false | false | 4,928 | cc | /* this file has been autogenerated by vtkNodeJsWrap */
/* editing this might proof futile */
#define VTK_WRAPPING_CXX
#define VTK_STREAMS_FWD_ONLY
#include <nan.h>
#include "vtkPolyDataAlgorithmWrap.h"
#include "vtkRectilinearGridOutlineFilterWrap.h"
#include "vtkObjectBaseWrap.h"
#include "../../plus/plus.h"
using namespace v8;
extern Nan::Persistent<v8::Object> vtkNodeJsNoWrap;
Nan::Persistent<v8::FunctionTemplate> VtkRectilinearGridOutlineFilterWrap::ptpl;
VtkRectilinearGridOutlineFilterWrap::VtkRectilinearGridOutlineFilterWrap()
{ }
VtkRectilinearGridOutlineFilterWrap::VtkRectilinearGridOutlineFilterWrap(vtkSmartPointer<vtkRectilinearGridOutlineFilter> _native)
{ native = _native; }
VtkRectilinearGridOutlineFilterWrap::~VtkRectilinearGridOutlineFilterWrap()
{ }
void VtkRectilinearGridOutlineFilterWrap::Init(v8::Local<v8::Object> exports)
{
Nan::SetAccessor(exports, Nan::New("vtkRectilinearGridOutlineFilter").ToLocalChecked(), ConstructorGetter);
Nan::SetAccessor(exports, Nan::New("RectilinearGridOutlineFilter").ToLocalChecked(), ConstructorGetter);
}
void VtkRectilinearGridOutlineFilterWrap::ConstructorGetter(
v8::Local<v8::String> property,
const Nan::PropertyCallbackInfo<v8::Value>& info)
{
InitPtpl();
info.GetReturnValue().Set(Nan::New(ptpl)->GetFunction());
}
void VtkRectilinearGridOutlineFilterWrap::InitPtpl()
{
if (!ptpl.IsEmpty()) return;
v8::Local<v8::FunctionTemplate> tpl = Nan::New<v8::FunctionTemplate>(New);
VtkPolyDataAlgorithmWrap::InitPtpl( );
tpl->Inherit(Nan::New<FunctionTemplate>(VtkPolyDataAlgorithmWrap::ptpl));
tpl->SetClassName(Nan::New("VtkRectilinearGridOutlineFilterWrap").ToLocalChecked());
tpl->InstanceTemplate()->SetInternalFieldCount(1);
Nan::SetPrototypeMethod(tpl, "NewInstance", NewInstance);
Nan::SetPrototypeMethod(tpl, "newInstance", NewInstance);
Nan::SetPrototypeMethod(tpl, "SafeDownCast", SafeDownCast);
Nan::SetPrototypeMethod(tpl, "safeDownCast", SafeDownCast);
#ifdef VTK_NODE_PLUS_VTKRECTILINEARGRIDOUTLINEFILTERWRAP_INITPTPL
VTK_NODE_PLUS_VTKRECTILINEARGRIDOUTLINEFILTERWRAP_INITPTPL
#endif
ptpl.Reset( tpl );
}
void VtkRectilinearGridOutlineFilterWrap::New(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
if(!info.IsConstructCall())
{
Nan::ThrowError("Constructor not called in a construct call.");
return;
}
if(info.Length() == 0)
{
vtkSmartPointer<vtkRectilinearGridOutlineFilter> native = vtkSmartPointer<vtkRectilinearGridOutlineFilter>::New();
VtkRectilinearGridOutlineFilterWrap* obj = new VtkRectilinearGridOutlineFilterWrap(native);
obj->Wrap(info.This());
}
else
{
if(info[0]->ToObject() != vtkNodeJsNoWrap )
{
Nan::ThrowError("Parameter Error");
return;
}
}
info.GetReturnValue().Set(info.This());
}
void VtkRectilinearGridOutlineFilterWrap::NewInstance(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkRectilinearGridOutlineFilterWrap *wrapper = ObjectWrap::Unwrap<VtkRectilinearGridOutlineFilterWrap>(info.Holder());
vtkRectilinearGridOutlineFilter *native = (vtkRectilinearGridOutlineFilter *)wrapper->native.GetPointer();
vtkRectilinearGridOutlineFilter * r;
if(info.Length() != 0)
{
Nan::ThrowError("Too many parameters.");
return;
}
r = native->NewInstance();
VtkRectilinearGridOutlineFilterWrap::InitPtpl();
v8::Local<v8::Value> argv[1] =
{ Nan::New(vtkNodeJsNoWrap) };
v8::Local<v8::Function> cons =
Nan::New<v8::FunctionTemplate>(VtkRectilinearGridOutlineFilterWrap::ptpl)->GetFunction();
v8::Local<v8::Object> wo = cons->NewInstance(1, argv);
VtkRectilinearGridOutlineFilterWrap *w = new VtkRectilinearGridOutlineFilterWrap();
w->native = r;
w->Wrap(wo);
info.GetReturnValue().Set(wo);
}
void VtkRectilinearGridOutlineFilterWrap::SafeDownCast(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
VtkRectilinearGridOutlineFilterWrap *wrapper = ObjectWrap::Unwrap<VtkRectilinearGridOutlineFilterWrap>(info.Holder());
vtkRectilinearGridOutlineFilter *native = (vtkRectilinearGridOutlineFilter *)wrapper->native.GetPointer();
if(info.Length() > 0 && info[0]->IsObject() && (Nan::New(VtkObjectBaseWrap::ptpl))->HasInstance(info[0]))
{
VtkObjectBaseWrap *a0 = ObjectWrap::Unwrap<VtkObjectBaseWrap>(info[0]->ToObject());
vtkRectilinearGridOutlineFilter * r;
if(info.Length() != 1)
{
Nan::ThrowError("Too many parameters.");
return;
}
r = native->SafeDownCast(
(vtkObjectBase *) a0->native.GetPointer()
);
VtkRectilinearGridOutlineFilterWrap::InitPtpl();
v8::Local<v8::Value> argv[1] =
{ Nan::New(vtkNodeJsNoWrap) };
v8::Local<v8::Function> cons =
Nan::New<v8::FunctionTemplate>(VtkRectilinearGridOutlineFilterWrap::ptpl)->GetFunction();
v8::Local<v8::Object> wo = cons->NewInstance(1, argv);
VtkRectilinearGridOutlineFilterWrap *w = new VtkRectilinearGridOutlineFilterWrap();
w->native = r;
w->Wrap(wo);
info.GetReturnValue().Set(wo);
return;
}
Nan::ThrowError("Parameter mismatch");
}
| [
"[email protected]"
] | |
4acc3c7962d5da6d5d81ee64d8370b62cb0ace9f | b52c1e5d62ca399bd4be4fd03d3aa609f98bac04 | /task1/src/LocalBuffer.cpp | f386ccaa0c75b3a2ae32c9a0b4d64ff016bb9c40 | [] | no_license | eranbh/lab1 | ba3218b721b2591c963945e57457b35d47f53ab2 | 14f92258db22ae39b2fa0c580d0c50eeb047c1d4 | refs/heads/local_building | 2021-05-25T09:50:28.927160 | 2016-05-21T08:51:03 | 2016-05-21T08:51:03 | 42,773,472 | 0 | 0 | null | 2018-12-02T10:41:56 | 2015-09-19T13:14:54 | C++ | UTF-8 | C++ | false | false | 387 | cpp | #include "LocalBuffer.h"
/*
template <class TYPE>
LocalBuffer<TYPE>::LocalBuffer(UQWordType xi_bufferSize)
{
m_buffer = new (nothrow) TYPE[xi_bufferSize];
if (m_buffer == NULL) {
cout << "failed too allocate buffer. size: " << xi_bufferSize << endl;
throw exception();
}
}
template <class TYPE>
TYPE *LocalBuffer<TYPE>::getBuffer()
{
return m_buffer;
}
*/
| [
"[email protected]"
] | |
ab1d8069c3b7088d3cecbe73dc108b41da7396a3 | a4969a529a33a93366dca995d7b7ed9685cb98a3 | /Tutorial1/src/PrimaryGeneratorAction.cc | 1a8955583d41646faff9a6e33960f0ac1dadfe55 | [] | no_license | wjcheon/education_geant4 | f4100d7eebee6b8a0fbe2827db6e6c87232d5413 | 81b6f8c62aa08a9c604e407265f21a6cb200d705 | refs/heads/master | 2021-01-20T07:12:37.659876 | 2017-05-02T01:04:38 | 2017-05-02T01:04:38 | 89,975,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,135 | cc | // ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// Author: yskim
//
#include "PrimaryGeneratorAction.hh"
#include "G4Event.hh"
PrimaryGeneratorAction::PrimaryGeneratorAction()
: G4VUserPrimaryGeneratorAction()
{
// Tutorial1 #7
// Set the fPrimary variable to GeneralParticleSource.
}
PrimaryGeneratorAction::~PrimaryGeneratorAction()
{
// Tutorial1 #7
// Free the fPrimary.
}
void PrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
{
// Tutorial1 #7
// Generate primaries by the fPrimary variable.
}
| [
"[email protected]"
] | |
157b1d2f904cc56e56cdbc44d12d62363522e6c2 | 60db84d8cb6a58bdb3fb8df8db954d9d66024137 | /android-cpp-sdk/platforms/android-7/android/database/CursorWrapper.hpp | f92356b14e1ef261ad32d2448cc460a7f209a235 | [
"BSL-1.0"
] | permissive | tpurtell/android-cpp-sdk | ba853335b3a5bd7e2b5c56dcb5a5be848da6550c | 8313bb88332c5476645d5850fe5fdee8998c2415 | refs/heads/master | 2021-01-10T20:46:37.322718 | 2012-07-17T22:06:16 | 2012-07-17T22:06:16 | 37,555,992 | 5 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 21,788 | hpp | /*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://[email protected]
class: android.database.CursorWrapper
================================================================================*/
#ifndef J2CPP_INCLUDE_IMPLEMENTATION
#ifndef J2CPP_ANDROID_DATABASE_CURSORWRAPPER_HPP_DECL
#define J2CPP_ANDROID_DATABASE_CURSORWRAPPER_HPP_DECL
namespace j2cpp { namespace java { namespace lang { class Object; } } }
namespace j2cpp { namespace java { namespace lang { class String; } } }
namespace j2cpp { namespace android { namespace net { class Uri; } } }
namespace j2cpp { namespace android { namespace database { class CharArrayBuffer; } } }
namespace j2cpp { namespace android { namespace database { class Cursor; } } }
namespace j2cpp { namespace android { namespace database { class DataSetObserver; } } }
namespace j2cpp { namespace android { namespace database { class ContentObserver; } } }
namespace j2cpp { namespace android { namespace content { class ContentResolver; } } }
namespace j2cpp { namespace android { namespace os { class Bundle; } } }
#include <android/content/ContentResolver.hpp>
#include <android/database/CharArrayBuffer.hpp>
#include <android/database/ContentObserver.hpp>
#include <android/database/Cursor.hpp>
#include <android/database/DataSetObserver.hpp>
#include <android/net/Uri.hpp>
#include <android/os/Bundle.hpp>
#include <java/lang/Object.hpp>
#include <java/lang/String.hpp>
namespace j2cpp {
namespace android { namespace database {
class CursorWrapper;
class CursorWrapper
: public object<CursorWrapper>
{
public:
J2CPP_DECLARE_CLASS
J2CPP_DECLARE_METHOD(0)
J2CPP_DECLARE_METHOD(1)
J2CPP_DECLARE_METHOD(2)
J2CPP_DECLARE_METHOD(3)
J2CPP_DECLARE_METHOD(4)
J2CPP_DECLARE_METHOD(5)
J2CPP_DECLARE_METHOD(6)
J2CPP_DECLARE_METHOD(7)
J2CPP_DECLARE_METHOD(8)
J2CPP_DECLARE_METHOD(9)
J2CPP_DECLARE_METHOD(10)
J2CPP_DECLARE_METHOD(11)
J2CPP_DECLARE_METHOD(12)
J2CPP_DECLARE_METHOD(13)
J2CPP_DECLARE_METHOD(14)
J2CPP_DECLARE_METHOD(15)
J2CPP_DECLARE_METHOD(16)
J2CPP_DECLARE_METHOD(17)
J2CPP_DECLARE_METHOD(18)
J2CPP_DECLARE_METHOD(19)
J2CPP_DECLARE_METHOD(20)
J2CPP_DECLARE_METHOD(21)
J2CPP_DECLARE_METHOD(22)
J2CPP_DECLARE_METHOD(23)
J2CPP_DECLARE_METHOD(24)
J2CPP_DECLARE_METHOD(25)
J2CPP_DECLARE_METHOD(26)
J2CPP_DECLARE_METHOD(27)
J2CPP_DECLARE_METHOD(28)
J2CPP_DECLARE_METHOD(29)
J2CPP_DECLARE_METHOD(30)
J2CPP_DECLARE_METHOD(31)
J2CPP_DECLARE_METHOD(32)
J2CPP_DECLARE_METHOD(33)
J2CPP_DECLARE_METHOD(34)
J2CPP_DECLARE_METHOD(35)
J2CPP_DECLARE_METHOD(36)
J2CPP_DECLARE_METHOD(37)
J2CPP_DECLARE_METHOD(38)
explicit CursorWrapper(jobject jobj)
: object<CursorWrapper>(jobj)
{
}
operator local_ref<java::lang::Object>() const;
operator local_ref<android::database::Cursor>() const;
CursorWrapper(local_ref< android::database::Cursor > const&);
void close();
jboolean isClosed();
jint getCount();
void deactivate();
jboolean moveToFirst();
jint getColumnCount();
jint getColumnIndex(local_ref< java::lang::String > const&);
jint getColumnIndexOrThrow(local_ref< java::lang::String > const&);
local_ref< java::lang::String > getColumnName(jint);
local_ref< array< local_ref< java::lang::String >, 1> > getColumnNames();
jdouble getDouble(jint);
local_ref< android::os::Bundle > getExtras();
jfloat getFloat(jint);
jint getInt(jint);
jlong getLong(jint);
jshort getShort(jint);
local_ref< java::lang::String > getString(jint);
void copyStringToBuffer(jint, local_ref< android::database::CharArrayBuffer > const&);
local_ref< array<jbyte,1> > getBlob(jint);
jboolean getWantsAllOnMoveCalls();
jboolean isAfterLast();
jboolean isBeforeFirst();
jboolean isFirst();
jboolean isLast();
jboolean isNull(jint);
jboolean moveToLast();
jboolean move(jint);
jboolean moveToPosition(jint);
jboolean moveToNext();
jint getPosition();
jboolean moveToPrevious();
void registerContentObserver(local_ref< android::database::ContentObserver > const&);
void registerDataSetObserver(local_ref< android::database::DataSetObserver > const&);
jboolean requery();
local_ref< android::os::Bundle > respond(local_ref< android::os::Bundle > const&);
void setNotificationUri(local_ref< android::content::ContentResolver > const&, local_ref< android::net::Uri > const&);
void unregisterContentObserver(local_ref< android::database::ContentObserver > const&);
void unregisterDataSetObserver(local_ref< android::database::DataSetObserver > const&);
}; //class CursorWrapper
} //namespace database
} //namespace android
} //namespace j2cpp
#endif //J2CPP_ANDROID_DATABASE_CURSORWRAPPER_HPP_DECL
#else //J2CPP_INCLUDE_IMPLEMENTATION
#ifndef J2CPP_ANDROID_DATABASE_CURSORWRAPPER_HPP_IMPL
#define J2CPP_ANDROID_DATABASE_CURSORWRAPPER_HPP_IMPL
namespace j2cpp {
android::database::CursorWrapper::operator local_ref<java::lang::Object>() const
{
return local_ref<java::lang::Object>(get_jobject());
}
android::database::CursorWrapper::operator local_ref<android::database::Cursor>() const
{
return local_ref<android::database::Cursor>(get_jobject());
}
android::database::CursorWrapper::CursorWrapper(local_ref< android::database::Cursor > const &a0)
: object<android::database::CursorWrapper>(
call_new_object<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(0),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(0)
>(a0)
)
{
}
void android::database::CursorWrapper::close()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(1),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(1),
void
>(get_jobject());
}
jboolean android::database::CursorWrapper::isClosed()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(2),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(2),
jboolean
>(get_jobject());
}
jint android::database::CursorWrapper::getCount()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(3),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(3),
jint
>(get_jobject());
}
void android::database::CursorWrapper::deactivate()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(4),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(4),
void
>(get_jobject());
}
jboolean android::database::CursorWrapper::moveToFirst()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(5),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(5),
jboolean
>(get_jobject());
}
jint android::database::CursorWrapper::getColumnCount()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(6),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(6),
jint
>(get_jobject());
}
jint android::database::CursorWrapper::getColumnIndex(local_ref< java::lang::String > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(7),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(7),
jint
>(get_jobject(), a0);
}
jint android::database::CursorWrapper::getColumnIndexOrThrow(local_ref< java::lang::String > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(8),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(8),
jint
>(get_jobject(), a0);
}
local_ref< java::lang::String > android::database::CursorWrapper::getColumnName(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(9),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(9),
local_ref< java::lang::String >
>(get_jobject(), a0);
}
local_ref< array< local_ref< java::lang::String >, 1> > android::database::CursorWrapper::getColumnNames()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(10),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(10),
local_ref< array< local_ref< java::lang::String >, 1> >
>(get_jobject());
}
jdouble android::database::CursorWrapper::getDouble(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(11),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(11),
jdouble
>(get_jobject(), a0);
}
local_ref< android::os::Bundle > android::database::CursorWrapper::getExtras()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(12),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(12),
local_ref< android::os::Bundle >
>(get_jobject());
}
jfloat android::database::CursorWrapper::getFloat(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(13),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(13),
jfloat
>(get_jobject(), a0);
}
jint android::database::CursorWrapper::getInt(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(14),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(14),
jint
>(get_jobject(), a0);
}
jlong android::database::CursorWrapper::getLong(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(15),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(15),
jlong
>(get_jobject(), a0);
}
jshort android::database::CursorWrapper::getShort(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(16),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(16),
jshort
>(get_jobject(), a0);
}
local_ref< java::lang::String > android::database::CursorWrapper::getString(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(17),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(17),
local_ref< java::lang::String >
>(get_jobject(), a0);
}
void android::database::CursorWrapper::copyStringToBuffer(jint a0, local_ref< android::database::CharArrayBuffer > const &a1)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(18),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(18),
void
>(get_jobject(), a0, a1);
}
local_ref< array<jbyte,1> > android::database::CursorWrapper::getBlob(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(19),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(19),
local_ref< array<jbyte,1> >
>(get_jobject(), a0);
}
jboolean android::database::CursorWrapper::getWantsAllOnMoveCalls()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(20),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(20),
jboolean
>(get_jobject());
}
jboolean android::database::CursorWrapper::isAfterLast()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(21),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(21),
jboolean
>(get_jobject());
}
jboolean android::database::CursorWrapper::isBeforeFirst()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(22),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(22),
jboolean
>(get_jobject());
}
jboolean android::database::CursorWrapper::isFirst()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(23),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(23),
jboolean
>(get_jobject());
}
jboolean android::database::CursorWrapper::isLast()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(24),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(24),
jboolean
>(get_jobject());
}
jboolean android::database::CursorWrapper::isNull(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(25),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(25),
jboolean
>(get_jobject(), a0);
}
jboolean android::database::CursorWrapper::moveToLast()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(26),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(26),
jboolean
>(get_jobject());
}
jboolean android::database::CursorWrapper::move(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(27),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(27),
jboolean
>(get_jobject(), a0);
}
jboolean android::database::CursorWrapper::moveToPosition(jint a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(28),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(28),
jboolean
>(get_jobject(), a0);
}
jboolean android::database::CursorWrapper::moveToNext()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(29),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(29),
jboolean
>(get_jobject());
}
jint android::database::CursorWrapper::getPosition()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(30),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(30),
jint
>(get_jobject());
}
jboolean android::database::CursorWrapper::moveToPrevious()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(31),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(31),
jboolean
>(get_jobject());
}
void android::database::CursorWrapper::registerContentObserver(local_ref< android::database::ContentObserver > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(32),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(32),
void
>(get_jobject(), a0);
}
void android::database::CursorWrapper::registerDataSetObserver(local_ref< android::database::DataSetObserver > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(33),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(33),
void
>(get_jobject(), a0);
}
jboolean android::database::CursorWrapper::requery()
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(34),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(34),
jboolean
>(get_jobject());
}
local_ref< android::os::Bundle > android::database::CursorWrapper::respond(local_ref< android::os::Bundle > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(35),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(35),
local_ref< android::os::Bundle >
>(get_jobject(), a0);
}
void android::database::CursorWrapper::setNotificationUri(local_ref< android::content::ContentResolver > const &a0, local_ref< android::net::Uri > const &a1)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(36),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(36),
void
>(get_jobject(), a0, a1);
}
void android::database::CursorWrapper::unregisterContentObserver(local_ref< android::database::ContentObserver > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(37),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(37),
void
>(get_jobject(), a0);
}
void android::database::CursorWrapper::unregisterDataSetObserver(local_ref< android::database::DataSetObserver > const &a0)
{
return call_method<
android::database::CursorWrapper::J2CPP_CLASS_NAME,
android::database::CursorWrapper::J2CPP_METHOD_NAME(38),
android::database::CursorWrapper::J2CPP_METHOD_SIGNATURE(38),
void
>(get_jobject(), a0);
}
J2CPP_DEFINE_CLASS(android::database::CursorWrapper,"android/database/CursorWrapper")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,0,"<init>","(Landroid/database/Cursor;)V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,1,"close","()V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,2,"isClosed","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,3,"getCount","()I")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,4,"deactivate","()V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,5,"moveToFirst","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,6,"getColumnCount","()I")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,7,"getColumnIndex","(Ljava/lang/String;)I")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,8,"getColumnIndexOrThrow","(Ljava/lang/String;)I")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,9,"getColumnName","(I)Ljava/lang/String;")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,10,"getColumnNames","()[java.lang.String")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,11,"getDouble","(I)D")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,12,"getExtras","()Landroid/os/Bundle;")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,13,"getFloat","(I)F")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,14,"getInt","(I)I")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,15,"getLong","(I)J")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,16,"getShort","(I)S")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,17,"getString","(I)Ljava/lang/String;")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,18,"copyStringToBuffer","(ILandroid/database/CharArrayBuffer;)V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,19,"getBlob","(I)[B")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,20,"getWantsAllOnMoveCalls","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,21,"isAfterLast","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,22,"isBeforeFirst","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,23,"isFirst","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,24,"isLast","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,25,"isNull","(I)Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,26,"moveToLast","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,27,"move","(I)Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,28,"moveToPosition","(I)Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,29,"moveToNext","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,30,"getPosition","()I")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,31,"moveToPrevious","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,32,"registerContentObserver","(Landroid/database/ContentObserver;)V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,33,"registerDataSetObserver","(Landroid/database/DataSetObserver;)V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,34,"requery","()Z")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,35,"respond","(Landroid/os/Bundle;)Landroid/os/Bundle;")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,36,"setNotificationUri","(Landroid/content/ContentResolver;Landroid/net/Uri;)V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,37,"unregisterContentObserver","(Landroid/database/ContentObserver;)V")
J2CPP_DEFINE_METHOD(android::database::CursorWrapper,38,"unregisterDataSetObserver","(Landroid/database/DataSetObserver;)V")
} //namespace j2cpp
#endif //J2CPP_ANDROID_DATABASE_CURSORWRAPPER_HPP_IMPL
#endif //J2CPP_INCLUDE_IMPLEMENTATION
| [
"[email protected]"
] | |
0b0cbc79de547ce54bea755e340560733c3fc068 | 8ccb631069cb9847c599d014b4e426e17e92c092 | /lab1/Rendering/GeometryViewer.cpp | 307b0b3cb073af6c9080c702f6e5a88193a9f9eb | [] | no_license | lxuan94-pp/CG1 | 11d29c9f889deef1fd9db93b62f0cd40516fb8f2 | 225c08251b0981215665e32053f1484ea082d5c6 | refs/heads/master | 2022-12-02T14:45:41.364677 | 2020-08-18T19:38:10 | 2020-08-18T19:38:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,575 | cpp | #include "Rendering/GeometryViewer.h"
#include "Common/TinyGeom.h"
#include <FL/gl.h>
#include <GL/glu.h>
#include <iostream>
using namespace std;
extern "C"{
#include "Common/bmpfile.h"
}
using namespace TinyGeom;
GeometryViewer::GeometryViewer(int x, int y, int w, int h, const char* l)
: Fl_Gl_Window(x,y,w,h,l){
Fl::repeat_timeout(REFRESH_RATE,GeometryViewer::updateCb,this);
_w = w;
_h = h;
_selected = NULL;
_highlighted = NULL;
_selectedPt = NULL;
_highlightedPt = NULL;
_transgrid = NULL;
_geomhist.pushNew();
this->border(5);
defaultView();
_showGrid = true;
}
GeometryViewer::~GeometryViewer(){
Fl::remove_timeout(GeometryViewer::updateCb,this);
}
void GeometryViewer::set2DProjection(){
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
gluOrtho2D(_dspaceLL[0], _dspaceUR[0], _dspaceLL[1], _dspaceUR[1]);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
}
void GeometryViewer::draw(){
if(!valid())
init();
// this->make_current();
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
set2DProjection(); // necessary for 2d drawing
glDisable(GL_LIGHTING);
glColor3f(1.f,1.f,1.f);
if(_transgrid && _showGrid){
const list<pair<int,int> >& edges = _transgrid->getEdges();
const vector<Pt2>& pts = _transgrid->getPts();
glBegin(GL_LINES);
for(list<pair<int,int> >::const_iterator i=edges.begin(); i!=edges.end(); i++){
glVertex2d(pts[i->first][0],pts[i->first][1]);
glVertex2d(pts[i->second][0],pts[i->second][1]);
}
glEnd();
}
glColor3f(1.f,0.f,0.f);
for(list<pair<Geom2*,Color> >::iterator i=_geomhist.getTop()->begin();i!=_geomhist.getTop()->end();i++){
Color c = i->second;
Geom2* g = i->first;
glColor3d(c[0],c[1],c[2]);
glBegin(GL_POLYGON);
for(int j=0;j<g->size();j++){
Pt2* p = g->get(j);
glVertex2d((*p)[0],(*p)[1]);
}
glEnd();
if(_editing.find(g)!=_editing.end()){
glLineWidth(3.f);
glColor3f(0.,1.,0);
glBegin(GL_LINE_LOOP);
for(int j=0;j<g->size();j++){
Pt2* p = g->get(j);
glVertex2d((*p)[0],(*p)[1]);
}
glEnd();
glLineWidth(1.f);
}
if(g==_highlighted){
glLineWidth(2.f);
glColor3f(1.,0,0);
glBegin(GL_LINE_LOOP);
for(int j=0;j<g->size();j++){
Pt2* p = g->get(j);
glVertex2d((*p)[0],(*p)[1]);
}
glVertex2d((*g->get(0))[0],(*g->get(0))[1]);
glEnd();
glLineWidth(1.f);
}
for(int j=0;j<g->size();j++){
Pt2* p = g->get(j);
if(p==_highlightedPt){
glBegin(GL_POINTS);
glColor3f(1,0,0);
glVertex2d((*p)[0],(*p)[1]);
glEnd();
}
}
}
swap_buffers();
}
Pt2 GeometryViewer::win2Screen(int x, int y){
Vec2 winv(x/(double)getWidth(),(getHeight()-y)/(double)getHeight(),0);
Vec2 diff = _dspaceUR-_dspaceLL;
diff[0]*=winv[0];
diff[1]*=winv[1];
return (_dspaceLL+diff);
}
int GeometryViewer::handle(int ev){
// input in 2d mode
if(ev==FL_PUSH){
if(Fl::event_button()==FL_LEFT_MOUSE){
_prevpos = win2Screen(Fl::event_x(),Fl::event_y());
if(_highlighted){
_selected = _highlighted;
}
else if(_highlightedPt){
_selectedPt = _highlightedPt;
}
else
_panning = true;
}
else if(Fl::event_button()==FL_RIGHT_MOUSE){
if(!_highlighted && !_highlightedPt){
_prevpos = Pt2(Fl::event_x(),Fl::event_y());
_zooming = true;
}
}
return 1; // must return 1 here to ensure FL_MOVE is sent
}
else if(ev==FL_DRAG){
if(Fl::event_button()==FL_LEFT_MOUSE){
Pt2 mpos = win2Screen(Fl::event_x(),Fl::event_y());
if(_selected){
Vec2 v = mpos - _prevpos;
for(int j=0;j<_selected->size();j++){
(*_selected->get(j))[0]+=v[0];
(*_selected->get(j))[1]+=v[1];
}
_prevpos = mpos;
}
else if(_selectedPt){
Geom2* g2 = _p2geom[_selectedPt];
Quad2* quad = dynamic_cast<Quad2*>(g2);
Hex2* hex = dynamic_cast<Hex2*>(g2);
Oct2* oct = dynamic_cast<Oct2*>(g2);
Cir2* cir = dynamic_cast<Cir2*>(g2);
Star2* star = dynamic_cast<Star2*>(g2);
// TODO: add more shapes
if(quad){
Vec2 v = mpos - _prevpos;
Pt2 prevp = (*_selectedPt);
(*_selectedPt)[0]+=v[0];
(*_selectedPt)[1]+=v[1];
int aind,bind,cind,dind;
for(int j=0;j<quad->size();j++){
if
(quad->get(j)==_selectedPt){
aind = j;
break;
}
}
bind = (aind+1)%4;
cind = (aind+2)%4;
dind = (aind+3)%4;
Vec2 ba = (*quad->get(bind))-prevp;
Vec2 ca = (*quad->get(cind))-(*quad->get(aind));
Vec2 ac = (*quad->get(aind))-(*quad->get(cind));
Vec2 dc = (*quad->get(dind))-(*quad->get(cind));
double len0 = ca*ba/mag(ba);
double len1 = ac*dc/mag(dc);
dc.normalize();
ba.normalize();
(*quad->get(dind)) = (*quad->get(cind))+(len1*dc);
(*quad->get(bind)) = (*quad->get(aind))+(len0*ba);
}
else if (hex) {
Vec2 v = mpos - _prevpos;
Pt2 prevp = (*_selectedPt);// prevp: old selected point
(*_selectedPt)[0] += v[0];
(*_selectedPt)[1] += v[1];//selectedPt is new point
int aind, bind, cind, dind, eind, gind;
for (int j = 0; j < hex->size(); j++) {
if (hex->get(j) == _selectedPt) {
aind = j;
break;
}
}
Pt2 center_point(0,0,0);
for (int i = 0; i < hex->size(); i++) {
center_point = center_point + *hex->get(i);
}
center_point /= 6;
Vec2 oa_old = prevp - center_point;
Vec2 oa_new = *_selectedPt - center_point;
double c_theta = (oa_old * oa_new) / (mag(oa_old) * mag(oa_new));
double s_theta = mag((cross(oa_old, oa_new))) / (mag(oa_old) * mag(oa_new));
if (cross(oa_old, oa_new)[2] < 0) {
s_theta = - s_theta;
}
double size = mag(oa_new) / mag(oa_old);
for (int j = (aind + 1) % 6; j != aind; j = (j + 1) % 6) {
Vec2 o_curpoint = (*hex->get(j)) - center_point;
Vec2 oc_orth(-o_curpoint[1], o_curpoint[0], 0);
Vec2 oc_new = (o_curpoint * c_theta + oc_orth * s_theta) * size;
*hex->get(j) = oc_new + center_point;
}
}
else if (oct) {
Vec2 v = mpos - _prevpos;
Pt2 prevp = (*_selectedPt);// prevp: old selected point
(*_selectedPt)[0] += v[0];
(*_selectedPt)[1] += v[1];//selectedPt is new point
int aind, bind, cind, dind, eind, gind;
for (int j = 0; j < oct->size(); j++) {
if (oct->get(j) == _selectedPt) {
aind = j;
break;
}
}
Pt2 center_point(0, 0, 0);
for (int i = 0; i < oct->size(); i++) {
center_point = center_point + *oct->get(i);
}
center_point /= 8;
Vec2 oa_old = prevp - center_point;
Vec2 oa_new = *_selectedPt - center_point;
double c_theta = (oa_old * oa_new) / (mag(oa_old) * mag(oa_new));
double s_theta = mag((cross(oa_old, oa_new))) / (mag(oa_old) * mag(oa_new));
if (cross(oa_old, oa_new)[2] < 0) {
s_theta = -s_theta;
}
double size = mag(oa_new) / mag(oa_old);
for (int j = (aind + 1) % 8; j != aind; j = (j + 1) % 8) {
Vec2 o_curpoint = (*oct->get(j)) - center_point;
Vec2 oc_orth(-o_curpoint[1], o_curpoint[0], 0);
Vec2 oc_new = (o_curpoint * c_theta + oc_orth * s_theta) * size;
*oct->get(j) = oc_new + center_point;
}
}
else if (cir) {
Vec2 v = mpos - _prevpos;
Pt2 prevp = (*_selectedPt);// prevp: old selected point
(*_selectedPt)[0] += v[0];
(*_selectedPt)[1] += v[1];//selectedPt is new point
int aind, bind, cind, dind, eind, gind;
for (int j = 0; j < cir->size(); j++) {
if (cir->get(j) == _selectedPt) {
aind = j;
break;
}
}
Pt2 center_point(0, 0, 0);
for (int i = 0; i < cir->size(); i++) {
center_point = center_point + *cir->get(i);
}
center_point /= 100;
Vec2 oa_old = prevp - center_point;
Vec2 oa_new = *_selectedPt - center_point;
double c_theta = (oa_old * oa_new) / (mag(oa_old) * mag(oa_new));
double s_theta = mag((cross(oa_old, oa_new))) / (mag(oa_old) * mag(oa_new));
if (cross(oa_old, oa_new)[2] < 0) {
s_theta = -s_theta;
}
double size = mag(oa_new) / mag(oa_old);
for (int j = (aind + 1) % 100; j != aind; j = (j + 1) % 100) {
Vec2 o_curpoint = (*cir->get(j)) - center_point;
Vec2 oc_orth(-o_curpoint[1], o_curpoint[0], 0);
Vec2 oc_new = (o_curpoint * c_theta + oc_orth * s_theta) * size;
*cir->get(j) = oc_new + center_point;
}
}
else if (star) {
Vec2 v = mpos - _prevpos;
Pt2 prevp = (*_selectedPt);// prevp: old selected point
(*_selectedPt)[0] += v[0];
(*_selectedPt)[1] += v[1];//selectedPt is new point
int aind, bind, cind, dind, eind, gind;
for (int j = 0; j < star->size(); j++) {
if (star->get(j) == _selectedPt) {
aind = j;
break;
}
}
Pt2 center_point(0, 0, 0);
for (int i = 0; i < star->size(); i++) {
center_point = center_point + *star->get(i);
}
center_point /= 12;
Vec2 oa_old = prevp - center_point;
Vec2 oa_new = *_selectedPt - center_point;
double c_theta = (oa_old * oa_new) / (mag(oa_old) * mag(oa_new));
double s_theta = mag((cross(oa_old, oa_new))) / (mag(oa_old) * mag(oa_new));
if (cross(oa_old, oa_new)[2] < 0) {
s_theta = -s_theta;
}
double size = mag(oa_new) / mag(oa_old);
for (int j = (aind + 1) % 12; j != aind; j = (j + 1) % 12) {
Vec2 o_curpoint = (*star->get(j)) - center_point;
Vec2 oc_orth(-o_curpoint[1], o_curpoint[0], 0);
Vec2 oc_new = (o_curpoint * c_theta + oc_orth * s_theta) * size;
*star->get(j) = oc_new + center_point;
}
}
else{
// else it is a triangle.
Vec2 v = mpos - _prevpos;
(*_selectedPt)+=v;
if(!Utils::isConvex(g2))
(*_selectedPt)-=v;
}
_prevpos = mpos;
}
else if(_panning){
Vec2 change = mpos-_prevpos;
_dspaceLL-=change;
_dspaceUR-=change;
}
}
else if(Fl::event_button()==FL_RIGHT_MOUSE){
if(_zooming){
Pt2 mpos(Fl::event_x(),Fl::event_y());
double diffy = _prevpos[1]-mpos[1];
Pt2 center = (_dspaceLL+_dspaceUR)*.5;
Vec2 lv = _dspaceLL-center;
Vec2 rv = _dspaceUR-center;
double fac = 1-(diffy)/500;
_dspaceLL = center+(fac*lv);
_dspaceUR = center+(fac*rv);
_prevpos = mpos;
}
}
}
else if(ev==FL_RELEASE){
if(Fl::event_button()==FL_RIGHT_MOUSE){
if(_highlighted){
if(_editing.find(_highlighted)==_editing.end()){
_editing.insert(_highlighted);
}
else{
_editing.erase(_highlighted);
}
}
}
_selected = NULL;
_highlighted = NULL;
_selectedPt = NULL;
_highlightedPt = NULL;
_panning = false;
_zooming = false;
}
else if(ev==FL_MOVE){
Pt2 mpos = win2Screen(Fl::event_x(),Fl::event_y());
double ratio = Utils::dist2d(_dspaceLL,_dspaceUR)/600;
// TODO: maybe need to modify for more shapes
// check to see if the mouse is interior to some shape
// isPtInterior only works for convex shapes.
// if your shape is not-convex, you need to write a different function to check for interior-ness.
_highlighted = NULL;
for(list<pair<Geom2*,Color> >::reverse_iterator i=_geomhist.getTop()->rbegin();i!=_geomhist.getTop()->rend();i++){
if(Utils::isPtInterior(i->first,mpos)){
_highlighted = i->first;
break;
}
}
_highlightedPt = NULL;
if(!_highlighted){
double bestd=10000;
Pt2* best = NULL;
for(map<Pt2*,Geom2*>::iterator i=_p2geom.begin();i!=_p2geom.end();i++){
double nd = Utils::dist2d(*(i->first),mpos);
if(nd<bestd){
bestd = nd;
best = i->first;
}
}
if(best && bestd<5*ratio)
_highlightedPt = best;
}
}
else if(ev==FL_KEYDOWN){}
else if(ev==FL_KEYUP){}
return Fl_Gl_Window::handle(ev);
}
void GeometryViewer::init(){
glClearColor(0,0,0,1);
glMatrixMode(GL_PROJECTION);
glOrtho(0,this->w(),0,this->h(),-100,100);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glDisable(GL_DEPTH_TEST);
glLineWidth(1.f);
glPointSize(8.f);
glEnable(GL_POINT_SMOOTH);
glEnable(GL_POLYGON_SMOOTH);
set2DProjection();
}
void GeometryViewer::resize(int x, int y, int width, int height){
make_current();
_w = width;
_h = height;
Fl_Gl_Window::resize(x,y,width,height);
}
void GeometryViewer::addGeom(Geom2* geom){
double r = rand()/(1.*RAND_MAX);
double g = rand()/(1.*RAND_MAX);
double b = rand()/(1.*RAND_MAX);
r=min(1,r+.2);
g=min(1,g+.2);
b=min(1,b+.2);
_geomhist.getTop()->push_back(make_pair(geom,Color(r,g,b)));
for(int j=0;j<geom->size();j++)
_p2geom[geom->get(j)] = geom;
redraw();
}
void GeometryViewer::saveImageBufferCb(Fl_Widget* widget, void* userdata){
GeometryViewer* viewer = (GeometryViewer*) userdata;
if(viewer){
char* newfile = fl_file_chooser("Save image", ".bmp (*.bmp)", "./images", 0);
if(!newfile) return;
int h = viewer->getHeight();
int w = viewer->getWidth();
viewer->make_current();
GLubyte *data = new GLubyte[4*h*w];
glReadPixels(0,0,w,h, GL_RGBA, GL_UNSIGNED_BYTE, data);
bmpfile_t* bfile = bmp_create(w,h,32);
for(int j=0;j<h;j++){
for(int i=0;i<w;i++){
rgb_pixel_t pix = {data[(j*w+i)*4+2],data[(j*w+i)*4+1],data[(j*w+i)*4],data[(j*w+i)*4+3]};
bmp_set_pixel(bfile,i,(h-1)-j,pix);
}
}
bmp_save(bfile,newfile);
bmp_destroy(bfile);
delete [] data;
}
}
void GeometryViewer::addShapeCb(Fl_Widget* widget,void* userdata){
pair<GeometryViewer*,TGShape>* data = (pair<GeometryViewer*,TGShape>*) userdata;
GeometryViewer* viewer = data->first;
TGShape shape = data->second;
if(viewer){
// randomly pick a point on the screen as the center of the shape
int nw = viewer->getWidth() * .7;
int nh = viewer->getHeight() * .7;
int nx = rand()%nw - nw/2;
int ny = rand()%nh - nh/2;
// TODO: add code to account for more shapes
Geom2* ng;
switch(shape){
case TG_TRIANGLE:
ng = new Tri2(Pt2(nx,ny),50);
break;
case TG_QUAD:
ng = new Quad2(Pt2(nx,ny),50);
break;
case TG_HEX:
ng = new Hex2(Pt2(nx, ny), 50);
break;
case TG_OCT:
ng = new Oct2(Pt2(nx, ny), 50);
break;
case TG_CIR:
ng = new Cir2(Pt2(nx, ny), 50);
break;
case TG_STAR:
ng = new Star2(Pt2(nx, ny), 50);
break;
default:
ng = new Tri2(Pt2(nx,ny),50);
break;
}
viewer->addGeom(ng);
}
}
void GeometryViewer::undoCb(Fl_Widget* widget,void* userdata){
GeometryViewer* viewer = (GeometryViewer*) userdata;
if(viewer){
if(viewer->_geomhist.size()>1){
viewer->_geomhist.popTop();
if(viewer->_geomhist.getTop()==NULL)
viewer->_geomhist.pushNew();
viewer->prepareGeom(viewer->_geomhist.getTop());
}
}
}
void GeometryViewer::defaultViewCb(Fl_Widget*, void* userdata){
GeometryViewer* viewer = (GeometryViewer*) userdata;
if(viewer)
viewer->defaultView();
}
void GeometryViewer::delEditingShapesCb(Fl_Widget* widget,void* userdata){
GeometryViewer* viewer = (GeometryViewer*) userdata;
if(viewer){
list<pair<Geom2*,Color> >* geoms = viewer->_geomhist.getTop();
list<pair<Geom2*,Color> > ngeoms;
for(list<pair<Geom2*,Color> >::iterator i=geoms->begin();i!=geoms->end();i++){
if(viewer->_editing.find(i->first)==viewer->_editing.end())
ngeoms.push_back(*i);
}
(*geoms) = ngeoms;
for(set<Geom2*>::iterator i=viewer->_editing.begin();i!=viewer->_editing.end();i++)
delete *i;
viewer->_editing.clear();
viewer->prepareGeom(geoms);
}
}
| [
"[email protected]"
] | |
ee45de92c67be6e8c2ac34ad7e881a166e40c1e2 | 31aa0bd1eaad4cd452d0e2c367d8905f8ed44ba3 | /algorithms/removeLinkedListElements/removeLinkedListElements.cpp | 934492411907db8a85dc3ad85b873898648c3c01 | [] | no_license | Sean-Lan/leetcode | 0bb0bfaf3a63d483794a0e5213a983db3bbe6ef6 | 1583c1b81c30140df78d188c327413a351d8c0af | refs/heads/master | 2021-04-19T02:49:33.572569 | 2021-01-04T01:40:06 | 2021-01-04T01:40:06 | 33,580,092 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,256 | cpp | /**
*
* Sean
* 2016-09-28
* https://leetcode.com/problems/remove-linked-list-elements/
*
* Remove all elements from a linked list of integers that have value val.
*
* Example
* Given: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6
* Return: 1 --> 2 --> 3 --> 4 --> 5
*
*/
#include <iostream>
using namespace std;
// Definition for singly-linked list.
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* removeElements(ListNode* head, int val) {
ListNode fakeHead(0);
fakeHead.next = head;
ListNode *pp = &fakeHead;
ListNode *p;
// invariant: `pp` points to the last element not eqaul to `val`
while (pp) {
p = pp->next;
while (p && p->val == val) {
p = p->next;
}
pp->next = p;
pp = p;
}
return fakeHead.next;
}
};
void printList(ListNode *head) {
while (head) {
cout << head->val << " ";
head = head->next;
}
}
int main() {
ListNode one1(1), one2(1);
one1.next = &one2;
Solution solution;
ListNode *removed = solution.removeElements(&one1, 1);
printList(removed);
}
| [
"[email protected]"
] | |
085c51f7b19b982c543cf8fd54c3cdb1d9a581c2 | e9cd80f63e3934b3ae493ca6e285415b2cc0928e | /GUM_mk3/sim_cell.h | ad4244ae6b04108ab5760f65f30b5030245991d0 | [] | no_license | bjblank2/MC_code_for_review | 9dba29f6100306d3e5fa48ec8592ec62c9b67810 | f44d18a6e2975ef7177d1eae9349d66b8cad3c5b | refs/heads/main | 2023-03-30T23:48:25.200202 | 2021-03-26T19:45:17 | 2021-03-26T19:45:17 | 351,894,666 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,267 | h | #pragma once
#ifndef sim_cell_h
#define sim_cell_h
#include <random>
#include <chrono>
#include <vector>
#include <string>
#include <fstream>
#include <iterator>
#include <iostream>
#include <sstream>
#include <algorithm>
#include "file_io.h"
using namespace std;
class SimCell {
public:
float cutoff;
string sim_type;
string phase_init;
vector<int> species_types;
vector<int> species_numbs;
int poscar_comp[3] = { 0,0,0 };
//vector<int> clust_count{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
int sup_cell[3];
float cell_dim[3];
int numb_atoms;
int numb_cells[3];
float unit_LC[3];
int X_num;
class Atom {
private:
int species;
int spin;
int phase;
string cluster_status;
public:
vector<float> neighbor_dists;
vector<int> neighbors;
int index;
float pos[3];
Atom(void);
Atom(int _index, int _species, int _spin, int _phase, vector<float> _pos);
void setSpin(int _spin);
void setSpecies(int _species);
void setPhase(int _phase);
int getSpin(void);
int getSpecies(void);
int getPhase(void);
int getNeighborSpin(int _neighbor, SimCell &sim_cell);
int getNeighborSpecies(int _neighbor, SimCell &sim_cell);
int getNeighborPhase(int _neighbor, SimCell &sim_cell);
int getNeighborIndex(int _neighbor, SimCell &sim_cell);
float getNeighborDist(int _neighbor, SimCell &sim_cell);
int getNumbNeighbors(int _site, SimCell &sim_cell);
};
vector<Atom> atom_list;
vector<Atom> unit_cell;
SimCell(void);
SimCell(string POSCAR_file, int _sup_cell[3], vector<int> &_species_numbs, float _cutoff, string _sim_type, string phase_init, string spin_init, string species_init);
void initSimCell(string POSCAR_file, vector<float> &dist_list, int _sup_cell[3], vector<int> &_species_numbs, float _cutoff, string _sim_type, string phase_init, string spin_init, string species_init, bool use_poscar);
void fillUnitCell(string POSCAR_file, bool use_poscar);
void fillAtomList(vector<vector<float>> &_pos_list, vector<int> &_species_list, vector<float> dist_list, string phase_init, string spin_init, string species_init);
void make_supercell(vector<vector<float>> &_pos_list, vector<int> &_species_list, string phase_init);
void setNeighborDists(vector<float> &dist_list);
float findAtomDists(int atom1, int atom2);
};
#endif
| [
"[email protected]"
] | |
fcde9680b6c552b0840b1fe81c00875cd26e72b3 | 857eba1f107688482b046641e909fb2a9535d181 | /max_subarray_bruteforce.cpp | eaa5f5b2001a444917642b191e4f46aebc5e7781 | [] | no_license | varunkapoor/Algorithms-and-Data-Structures | 4c4f710adaef24038ceaf182d7b3e75fbdf71e72 | 4df7d969d921cbd54525629704368cd98899bbb2 | refs/heads/master | 2021-01-04T14:07:15.845724 | 2012-11-25T11:50:28 | 2012-11-25T11:50:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,107 | cpp | #include <iostream>
#include <limits>
#include <vector>
template<class T>
struct Result
{
size_t max_left, max_right;
T sum;
};
template<class T>
Result<T> FindMaxSubarray(std::vector<T>& A)
{
Result<T> retval;
retval.sum = std::numeric_limits<T>::min();
T sum;
for(int i=0; i<A.size(); ++i)
{
sum = 0;
for(int j=i; j<A.size(); ++j)
{
sum += A[j];
if(sum > retval.sum)
{
retval.sum = sum;
retval.max_left = j;
retval.max_right = i;
}
}
}
return retval;
}
int main()
{
std::vector<int> A;
// Yeah, I know, don't judge
A.push_back(13);
A.push_back(-3);
A.push_back(-25);
A.push_back(20);
A.push_back(-3);
A.push_back(-16);
A.push_back(-23);
A.push_back(18);
A.push_back(20);
A.push_back(-7);
A.push_back(12);
A.push_back(-5);
A.push_back(-22);
A.push_back(15);
A.push_back(-4);
A.push_back(7);
Result<int> a = FindMaxSubarray<int>(A);
std::cout << a.sum;
}
| [
"[email protected]"
] | |
9050368fb43b0fb6d5011bc50d6ca60d2c74a800 | 960765e3c2e8680b282606c1fbc4e6f471e2db4e | /src/ceph-0.72.2-src/tools/rest_bench.cc | feea4de49321f67e84f7138e1059769c28e38f16 | [] | no_license | StarThinking/MOBBS | 7115060a2233e7bd8bb1a9848d6b9a0a469c2bef | 3f9bfe391a3fa0e454b43c6286a33bdda49a44fb | refs/heads/master | 2021-01-13T02:22:18.410864 | 2014-11-05T08:56:41 | 2014-11-05T08:56:41 | 14,044,431 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 20,487 | cc | // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <[email protected]>
*
* This 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. See file COPYING.
*
*/
#include "include/types.h"
#include "include/atomic.h"
#include "common/obj_bencher.h"
#include "common/config.h"
#include "common/debug.h"
#include "common/ceph_argparse.h"
#include "common/WorkQueue.h"
#include "msg/Message.h"
#include "global/global_init.h"
#include "libs3.h"
#include <deque>
#include <errno.h>
#define DEFAULT_USER_AGENT "rest-bench"
#define DEFAULT_BUCKET "rest-bench-bucket"
void usage(ostream& out)
{
out << \
"usage: rest-bench [options] <write|seq>\n"
" rest-bench [options] cleanup <prefix>\n"
"BENCHMARK OPTIONS\n"
" --seconds\n"
" benchmak length (default: 60)\n"
" -t concurrent_operations\n"
" --concurrent-ios=concurrent_operations\n"
" select bucket by name\n"
" -b op-size\n"
" --block-size=op-size\n"
" set the size of write ops for put or benchmarking\n"
" --show-time\n"
" prefix output lines with date and time\n"
" --no-cleanup\n"
" do not clean up data after write bench\n"
"REST CONFIG OPTIONS\n"
" --api-host=bhost\n"
" host name\n"
" --bucket=bucket\n"
" select bucket by name\n"
" --access-key=access_key\n"
" access key to RESTful storage provider\n"
" --secret=secret_key\n"
" secret key for the specified access key\n"
" --protocol=<http|https>\n"
" protocol to be used (default: http)\n"
" --uri_style=<path|vhost>\n"
" uri style in requests (default: path)\n";
}
static void usage_exit()
{
usage(cerr);
exit(1);
}
enum OpType {
OP_NONE = 0,
OP_GET_OBJ = 1,
OP_PUT_OBJ = 2,
OP_DELETE_OBJ = 3,
OP_LIST_BUCKET = 4,
OP_CLEANUP = 5,
};
struct req_context : public RefCountedObject {
bool complete;
S3Status status;
S3RequestContext *ctx;
void (*cb)(void *, void *);
void *arg;
bufferlist *in_bl;
bufferlist out_bl;
uint64_t off;
uint64_t len;
const char *list_start;
std::list<std::string>* list_objects;
int list_count;
string oid;
Mutex lock;
Cond cond;
S3BucketContext *bucket_ctx;
bool should_destroy_ctx;
OpType op;
bool used;
req_context() : complete(false), status(S3StatusOK), ctx(NULL), cb(NULL), arg(NULL), in_bl(NULL), off(0), len(0),
lock("req_context"), bucket_ctx(NULL), should_destroy_ctx(false), op(OP_NONE), used(false) {}
~req_context() {
if (should_destroy_ctx) {
S3_destroy_request_context(ctx);
}
}
int init_ctx() {
S3Status status = S3_create_request_context(&ctx);
if (status != S3StatusOK) {
cerr << "failed to create context: " << S3_get_status_name(status) << std::endl;
return -EINVAL;
}
should_destroy_ctx = true;
return 0;
}
int ret() {
if (status != S3StatusOK) {
return -EINVAL;
}
return 0;
}
};
static S3Status properties_callback(const S3ResponseProperties *properties, void *cb_data)
{
return S3StatusOK;
}
static void complete_callback(S3Status status, const S3ErrorDetails *details, void *cb_data)
{
if (!cb_data)
return;
struct req_context *ctx = (struct req_context *)cb_data;
ctx->lock.Lock();
ctx->status = status;
ctx->lock.Unlock();
if (ctx->cb) {
ctx->cb((void *)ctx->cb, ctx->arg);
}
ctx->put();
}
static S3Status get_obj_callback(int size, const char *buf,
void *cb_data)
{
if (!cb_data)
return S3StatusOK;
struct req_context *ctx = (struct req_context *)cb_data;
ctx->in_bl->append(buf, size);
return S3StatusOK;
}
static int put_obj_callback(int size, char *buf,
void *cb_data)
{
if (!cb_data)
return 0;
struct req_context *ctx = (struct req_context *)cb_data;
int chunk = ctx->out_bl.length() - ctx->off;
if (!chunk)
return 0;
if (chunk > size)
chunk = size;
memcpy(buf, ctx->out_bl.c_str() + ctx->off, chunk);
ctx->off += chunk;
return chunk;
}
static S3Status list_bucket_callback(int is_truncated, const char *next_marker,
int count, const S3ListBucketContent *objects,
int prefix_count, const char **prefixes,
void *cb_data)
{
if (!cb_data)
return S3StatusOK;
struct req_context *ctx = (struct req_context *)cb_data;
ctx->list_start = next_marker;
for (int i = 0; i < count; ++i) {
ctx->list_objects->push_back(objects[i].key);
}
return S3StatusOK;
}
class RESTDispatcher {
deque<req_context *> m_req_queue;
ThreadPool m_tp;
S3ResponseHandler response_handler;
S3GetObjectHandler get_obj_handler;
S3PutObjectHandler put_obj_handler;
S3ListBucketHandler list_bucket_handler;
struct DispatcherWQ : public ThreadPool::WorkQueue<req_context> {
RESTDispatcher *dispatcher;
DispatcherWQ(RESTDispatcher *p, time_t timeout, time_t suicide_timeout, ThreadPool *tp)
: ThreadPool::WorkQueue<req_context>("REST", timeout, suicide_timeout, tp), dispatcher(p) {}
bool _enqueue(req_context *req) {
dispatcher->m_req_queue.push_back(req);
_dump_queue();
return true;
}
void _dequeue(req_context *req) {
assert(0);
}
bool _empty() {
return dispatcher->m_req_queue.empty();
}
req_context *_dequeue() {
if (dispatcher->m_req_queue.empty())
return NULL;
req_context *req = dispatcher->m_req_queue.front();
dispatcher->m_req_queue.pop_front();
_dump_queue();
return req;
}
void _process(req_context *req) {
dispatcher->process_context(req);
}
void _dump_queue() {
deque<req_context *>::iterator iter;
if (dispatcher->m_req_queue.empty()) {
generic_dout(20) << "DispatcherWQ: empty" << dendl;
return;
}
generic_dout(20) << "DispatcherWQ:" << dendl;
for (iter = dispatcher->m_req_queue.begin(); iter != dispatcher->m_req_queue.end(); ++iter) {
generic_dout(20) << "req: " << hex << *iter << dec << dendl;
}
}
void _clear() {
assert(dispatcher->m_req_queue.empty());
}
} req_wq;
public:
CephContext *cct;
RESTDispatcher(CephContext *cct_, int num_threads)
: m_tp(cct_, "RESTDispatcher::m_tp", num_threads),
req_wq(this, cct_->_conf->rgw_op_thread_timeout,
cct_->_conf->rgw_op_thread_suicide_timeout, &m_tp),
cct(cct_) {
response_handler.propertiesCallback = properties_callback;
response_handler.completeCallback = complete_callback;
get_obj_handler.responseHandler = response_handler;
get_obj_handler.getObjectDataCallback = get_obj_callback;
put_obj_handler.responseHandler = response_handler;
put_obj_handler.putObjectDataCallback = put_obj_callback;
list_bucket_handler.responseHandler = response_handler;
list_bucket_handler.listBucketCallback = list_bucket_callback;
}
void process_context(req_context *ctx);
void get_obj(req_context *ctx);
void put_obj(req_context *ctx);
void delete_obj(req_context *ctx);
void list_bucket(req_context *ctx);
void queue(req_context *ctx) {
req_wq.queue(ctx);
}
void start() {
m_tp.start();
}
};
void RESTDispatcher::process_context(req_context *ctx)
{
ctx->get();
switch (ctx->op) {
case OP_GET_OBJ:
get_obj(ctx);
break;
case OP_PUT_OBJ:
put_obj(ctx);
break;
case OP_DELETE_OBJ:
delete_obj(ctx);
break;
case OP_LIST_BUCKET:
list_bucket(ctx);
break;
default:
assert(0);
}
S3Status status = S3_runall_request_context(ctx->ctx);
if (status != S3StatusOK) {
cerr << "ERROR: S3_runall_request_context() returned " << S3_get_status_name(status) << std::endl;
ctx->status = status;
} else if (ctx->status != S3StatusOK) {
cerr << "ERROR: " << ctx->oid << ": " << S3_get_status_name(ctx->status) << std::endl;
}
ctx->lock.Lock();
ctx->complete = true;
ctx->cond.SignalAll();
ctx->lock.Unlock();
ctx->put();
}
void RESTDispatcher::put_obj(req_context *ctx)
{
S3_put_object(ctx->bucket_ctx, ctx->oid.c_str(),
ctx->out_bl.length(),
NULL,
ctx->ctx,
&put_obj_handler, ctx);
}
void RESTDispatcher::get_obj(req_context *ctx)
{
S3_get_object(ctx->bucket_ctx, ctx->oid.c_str(), NULL, 0, ctx->len, ctx->ctx,
&get_obj_handler, ctx);
}
void RESTDispatcher::delete_obj(req_context *ctx)
{
S3_delete_object(ctx->bucket_ctx, ctx->oid.c_str(),
ctx->ctx, &response_handler, ctx);
}
void RESTDispatcher::list_bucket(req_context *ctx)
{
S3_list_bucket(ctx->bucket_ctx,
NULL, ctx->list_start,
NULL, ctx->list_count,
ctx->ctx,
&list_bucket_handler, ctx);
}
class RESTBencher : public ObjBencher {
RESTDispatcher *dispatcher;
struct req_context **completions;
struct S3RequestContext **handles;
S3BucketContext bucket_ctx;
const char *list_start;
bool bucket_list_done;
string user_agent;
string host;
string bucket;
S3Protocol protocol;
string access_key;
string secret;
int concurrentios;
protected:
int rest_init() {
S3Status status = S3_initialize(user_agent.c_str(), S3_INIT_ALL, host.c_str());
if (status != S3StatusOK) {
cerr << "failed to init: " << S3_get_status_name(status) << std::endl;
return -EINVAL;
}
return 0;
}
int completions_init(int _concurrentios) {
concurrentios = _concurrentios;
completions = new req_context *[concurrentios];
handles = new S3RequestContext *[concurrentios];
for (int i = 0; i < concurrentios; i++) {
completions[i] = NULL;
S3Status status = S3_create_request_context(&handles[i]);
if (status != S3StatusOK) {
cerr << "failed to create context: " << S3_get_status_name(status) << std::endl;
return -EINVAL;
}
}
return 0;
}
void completions_done() {
delete[] completions;
completions = NULL;
for (int i = 0; i < concurrentios; i++) {
S3_destroy_request_context(handles[i]);
}
delete[] handles;
handles = NULL;
}
int create_completion(int slot, void (*cb)(void *, void*), void *arg) {
assert (!completions[slot]);
struct req_context *ctx = new req_context;
ctx->ctx = handles[slot];
assert (!ctx->used);
ctx->used = true;
ctx->cb = cb;
ctx->arg = arg;
completions[slot] = ctx;
return 0;
}
void release_completion(int slot) {
struct req_context *ctx = completions[slot];
ctx->used = false;
ctx->put();
completions[slot] = 0;
}
int aio_read(const std::string& oid, int slot, bufferlist *pbl, size_t len) {
struct req_context *ctx = completions[slot];
ctx->get();
ctx->in_bl = pbl;
ctx->oid = oid;
ctx->len = len;
ctx->bucket_ctx = &bucket_ctx;
ctx->op = OP_GET_OBJ;
dispatcher->queue(ctx);
return 0;
}
int aio_write(const std::string& oid, int slot, bufferlist& bl, size_t len) {
struct req_context *ctx = completions[slot];
ctx->get();
ctx->bucket_ctx = &bucket_ctx;
ctx->out_bl = bl;
ctx->oid = oid;
ctx->len = len;
ctx->op = OP_PUT_OBJ;
dispatcher->queue(ctx);
return 0;
}
int aio_remove(const std::string& oid, int slot) {
struct req_context *ctx = completions[slot];
ctx->get();
ctx->bucket_ctx = &bucket_ctx;
ctx->oid = oid;
ctx->op = OP_DELETE_OBJ;
dispatcher->queue(ctx);
return 0;
}
int sync_read(const std::string& oid, bufferlist& bl, size_t len) {
struct req_context *ctx = new req_context;
int ret = ctx->init_ctx();
if (ret < 0) {
return ret;
}
ctx->in_bl = &bl;
ctx->get();
ctx->bucket_ctx = &bucket_ctx;
ctx->oid = oid;
ctx->len = len;
ctx->op = OP_GET_OBJ;
dispatcher->process_context(ctx);
ret = ctx->ret();
ctx->put();
return bl.length();
}
int sync_write(const std::string& oid, bufferlist& bl, size_t len) {
struct req_context *ctx = new req_context;
int ret = ctx->init_ctx();
if (ret < 0) {
return ret;
}
ctx->get();
ctx->out_bl = bl;
ctx->bucket_ctx = &bucket_ctx;
ctx->oid = oid;
ctx->op = OP_PUT_OBJ;
dispatcher->process_context(ctx);
ret = ctx->ret();
ctx->put();
return ret;
}
int sync_remove(const std::string& oid) {
struct req_context *ctx = new req_context;
int ret = ctx->init_ctx();
if (ret < 0) {
return ret;
}
ctx->get();
ctx->bucket_ctx = &bucket_ctx;
ctx->oid = oid;
ctx->op = OP_DELETE_OBJ;
dispatcher->process_context(ctx);
ret = ctx->ret();
ctx->put();
return ret;
}
bool get_objects(std::list<std::string>* objects, int num) {
if (bucket_list_done) {
bucket_list_done = false;
return false;
}
struct req_context *ctx = new req_context;
int ret = ctx->init_ctx();
if (ret < 0) {
return ret;
}
ctx->get();
ctx->bucket_ctx = &bucket_ctx;
ctx->list_start = list_start;
ctx->list_objects = objects;
ctx->list_count = num;
ctx->op = OP_LIST_BUCKET;
dispatcher->process_context(ctx);
ret = ctx->ret();
list_start = ctx->list_start;
if (list_start == NULL || strcmp(list_start, "") == 0) {
bucket_list_done = true;
list_start = NULL;
}
ctx->put();
return ret == 0;
}
bool completion_is_done(int slot) {
return completions[slot]->complete;
}
int completion_wait(int slot) {
req_context *ctx = completions[slot];
Mutex::Locker l(ctx->lock);
while (!ctx->complete) {
ctx->cond.Wait(ctx->lock);
}
return 0;
}
int completion_ret(int slot) {
S3Status status = completions[slot]->status;
if (status != S3StatusOK)
return -EIO;
return 0;
}
public:
RESTBencher(RESTDispatcher *_dispatcher) :
ObjBencher(_dispatcher->cct),
dispatcher(_dispatcher),
completions(NULL),
list_start(NULL),
bucket_list_done(false)
{
dispatcher->start();
}
~RESTBencher() { }
int init(string& _agent, string& _host, string& _bucket, S3Protocol _protocol,
S3UriStyle uri_style, string& _access_key, string& _secret) {
user_agent = _agent;
host = _host;
bucket = _bucket;
protocol = _protocol;
access_key = _access_key;
secret = _secret;
bucket_ctx.hostName = NULL; // host.c_str();
bucket_ctx.bucketName = bucket.c_str();
bucket_ctx.protocol = protocol;
bucket_ctx.accessKeyId = access_key.c_str();
bucket_ctx.secretAccessKey = secret.c_str();
bucket_ctx.uriStyle = uri_style;
struct req_context *ctx = new req_context;
int ret = rest_init();
if (ret < 0) {
return ret;
}
ret = ctx->init_ctx();
if (ret < 0) {
return ret;
}
ctx->get();
S3ResponseHandler response_handler;
response_handler.propertiesCallback = properties_callback;
response_handler.completeCallback = complete_callback;
S3_create_bucket(protocol, access_key.c_str(), secret.c_str(), NULL,
bucket.c_str(), S3CannedAclPrivate,
NULL, /* locationConstraint */
NULL, /* requestContext */
&response_handler, /* handler */
(void *)ctx /* callbackData */);
ret = ctx->ret();
if (ret < 0) {
cerr << "ERROR: failed to create bucket: " << S3_get_status_name(ctx->status) << std::endl;
return ret;
}
ctx->put();
return 0;
}
};
int main(int argc, const char **argv)
{
vector<const char*> args;
argv_to_vec(argc, argv, args);
env_to_vec(args);
global_init(NULL, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, 0);
common_init_finish(g_ceph_context);
std::vector<const char*>::iterator i;
std::string host;
std::string val;
std::string user_agent;
std::string access_key;
std::string secret;
std::string bucket = DEFAULT_BUCKET;
S3Protocol protocol = S3ProtocolHTTP;
S3UriStyle uri_style = S3UriStylePath;
std::string proto_str;
int concurrent_ios = 16;
int op_size = 1 << 22;
int seconds = 60;
bool show_time = false;
bool cleanup = true;
for (i = args.begin(); i != args.end(); ) {
if (ceph_argparse_double_dash(args, i)) {
break;
} else if (ceph_argparse_flag(args, i, "-h", "--help", (char*)NULL)) {
usage(cout);
exit(0);
} else if (ceph_argparse_flag(args, i, "--show-time", (char*)NULL)) {
show_time = true;
} else if (ceph_argparse_flag(args, i, "--no-cleanup", (char*)NULL)) {
cleanup = false;
} else if (ceph_argparse_witharg(args, i, &user_agent, "--agent", (char*)NULL)) {
/* nothing */
} else if (ceph_argparse_witharg(args, i, &access_key, "--access-key", (char*)NULL)) {
/* nothing */
} else if (ceph_argparse_witharg(args, i, &secret, "--secret", (char*)NULL)) {
/* nothing */
} else if (ceph_argparse_witharg(args, i, &bucket, "--bucket", (char*)NULL)) {
/* nothing */
} else if (ceph_argparse_witharg(args, i, &host, "--api-host", (char*)NULL)) {
cerr << "host=" << host << std::endl;
/* nothing */
} else if (ceph_argparse_witharg(args, i, &proto_str, "--protocol", (char*)NULL)) {
if (strcasecmp(proto_str.c_str(), "http") == 0) {
protocol = S3ProtocolHTTP;
} else if (strcasecmp(proto_str.c_str(), "http") == 0) {
protocol = S3ProtocolHTTPS;
} else {
cerr << "bad protocol" << std::endl;
usage_exit();
}
/* nothing */
} else if (ceph_argparse_witharg(args, i, &proto_str, "--uri-style", (char*)NULL)) {
if (strcasecmp(proto_str.c_str(), "vhost") == 0) {
uri_style = S3UriStyleVirtualHost;
} else if (strcasecmp(proto_str.c_str(), "path") == 0) {
uri_style = S3UriStylePath;
} else {
cerr << "bad protocol" << std::endl;
usage_exit();
}
} else if (ceph_argparse_witharg(args, i, &val, "-t", "--concurrent-ios", (char*)NULL)) {
concurrent_ios = strtol(val.c_str(), NULL, 10);
} else if (ceph_argparse_witharg(args, i, &val, "--seconds", (char*)NULL)) {
seconds = strtol(val.c_str(), NULL, 10);
} else if (ceph_argparse_witharg(args, i, &val, "-b", "--block-size", (char*)NULL)) {
op_size = strtol(val.c_str(), NULL, 10);
} else {
if (val[0] == '-')
usage_exit();
++i;
}
}
if (bucket.empty()) {
cerr << "rest-bench: bucket not specified" << std::endl;
usage_exit();
}
if (args.empty())
usage_exit();
int operation = 0;
const char *prefix = NULL;
if (strcmp(args[0], "write") == 0)
operation = OP_WRITE;
else if (strcmp(args[0], "seq") == 0)
operation = OP_SEQ_READ;
else if (strcmp(args[0], "rand") == 0)
operation = OP_RAND_READ;
else if (strcmp(args[0], "cleanup") == 0) {
if (args.size() < 2)
usage_exit();
operation = OP_CLEANUP;
prefix = args[1];
} else
usage_exit();
if (host.empty()) {
cerr << "rest-bench: api host not provided." << std::endl;
usage_exit();
}
if (access_key.empty() || secret.empty()) {
cerr << "rest-bench: access key or secret was not provided" << std::endl;
usage_exit();
}
if (bucket.empty()) {
bucket = DEFAULT_BUCKET;
}
if (user_agent.empty())
user_agent = DEFAULT_USER_AGENT;
RESTDispatcher dispatcher(g_ceph_context, concurrent_ios);
RESTBencher bencher(&dispatcher);
bencher.set_show_time(show_time);
int ret = bencher.init(user_agent, host, bucket, protocol, uri_style, access_key, secret);
if (ret < 0) {
cerr << "failed initializing benchmark" << std::endl;
exit(1);
}
if (operation == OP_CLEANUP) {
ret = bencher.clean_up(prefix, concurrent_ios);
if (ret != 0)
cerr << "error during cleanup: " << ret << std::endl;
} else {
ret = bencher.aio_bench(operation, seconds, 0,
concurrent_ios, op_size, cleanup);
if (ret != 0) {
cerr << "error during benchmark: " << ret << std::endl;
}
}
return 0;
}
| [
"[email protected]"
] | |
c1b4d3b33a18cb8bc360aae71f332c508deb88a5 | 9eba2c46d6e9377c409d4d8486d35e1729684a94 | /Ancora/src/Ancora/Renderer/Buffer.h | 38a7d87ecff4f1fa668156f98a69e7e719e75be4 | [
"Apache-2.0"
] | permissive | SpiritSeeker/AncoraEngine | f6c4f2436a228364bec3bd2c9cc15e90bad3d255 | 892d276b9421f6eb25a7a7803d8526b01281ba22 | refs/heads/main | 2023-07-01T03:57:48.041009 | 2021-08-04T15:17:52 | 2021-08-04T15:17:52 | 392,576,415 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,697 | h | #pragma once
namespace Ancora {
enum class ShaderDataType
{
None = 0, Float, Float2, Float3, Float4, Mat3, Mat4, Int, Int2, Int3, Int4, Bool
};
static uint32_t ShaderDataTypeSize(ShaderDataType type)
{
switch (type)
{
case ShaderDataType::Float: return 4;
case ShaderDataType::Float2: return 4 * 2;
case ShaderDataType::Float3: return 4 * 3;
case ShaderDataType::Float4: return 4 * 4;
case ShaderDataType::Mat3: return 4 * 3 * 3;
case ShaderDataType::Mat4: return 4 * 4 * 4;
case ShaderDataType::Int: return 4;
case ShaderDataType::Int2: return 4 * 2;
case ShaderDataType::Int3: return 4 * 3;
case ShaderDataType::Int4: return 4 * 4;
case ShaderDataType::Bool: return 1;
}
AE_CORE_ASSERT(false, "Unknown ShaderDataType!");
return 0;
}
struct BufferElement
{
std::string Name;
ShaderDataType Type;
uint32_t Size;
uint32_t Offset;
bool Normalized;
BufferElement() {}
BufferElement(ShaderDataType type, const std::string& name, bool normalized = false)
: Name(name), Type(type), Size(ShaderDataTypeSize(type)), Offset(0), Normalized(normalized)
{
}
uint32_t GetComponentCount() const
{
switch (Type)
{
case ShaderDataType::Float: return 1;
case ShaderDataType::Float2: return 2;
case ShaderDataType::Float3: return 3;
case ShaderDataType::Float4: return 4;
case ShaderDataType::Mat3: return 3 * 3;
case ShaderDataType::Mat4: return 4 * 4;
case ShaderDataType::Int: return 1;
case ShaderDataType::Int2: return 2;
case ShaderDataType::Int3: return 3;
case ShaderDataType::Int4: return 4;
case ShaderDataType::Bool: return 1;
}
}
};
class BufferLayout
{
public:
BufferLayout() {}
BufferLayout(const std::initializer_list<BufferElement>& elements)
: m_Elements(elements)
{
CalculateOffsetsAndStride();
}
inline const std::vector<BufferElement>& GetElements() const { return m_Elements; }
inline uint32_t GetStride() const { return m_Stride; }
std::vector<BufferElement>::iterator begin() { return m_Elements.begin(); }
std::vector<BufferElement>::iterator end() { return m_Elements.end(); }
std::vector<BufferElement>::const_iterator begin() const { return m_Elements.begin(); }
std::vector<BufferElement>::const_iterator end() const { return m_Elements.end(); }
private:
void CalculateOffsetsAndStride()
{
uint32_t offset = 0;
m_Stride = 0;
for (auto& element : m_Elements)
{
element.Offset = offset;
offset += element.Size;
m_Stride += element.Size;
}
}
private:
std::vector<BufferElement> m_Elements;
uint32_t m_Stride = 0;
};
class VertexBuffer
{
public:
virtual ~VertexBuffer() {}
virtual void Bind() const = 0;
virtual void Unbind() const = 0;
virtual void SetLayout(const BufferLayout& layout) = 0;
virtual const BufferLayout& GetLayout() const = 0;
virtual void SetData(const void* data, uint32_t size) = 0;
static Ref<VertexBuffer> Create(uint32_t size);
static Ref<VertexBuffer> Create(float* vertices, uint32_t size);
};
class IndexBuffer
{
public:
virtual ~IndexBuffer() {}
virtual void Bind() const = 0;
virtual void Unbind() const = 0;
virtual uint32_t GetCount() const = 0;
virtual void SetData(const void* data, uint32_t size) = 0;
static Ref<IndexBuffer> Create(uint32_t size);
static Ref<IndexBuffer> Create(uint32_t* indices, uint32_t count);
};
}
| [
"[email protected]"
] | |
6870a238125438ae0ab9fcb51e37876884d7f109 | 8c28987faba20d4bcd4ba0dffa4d0a8210799034 | /lab6/lab6.cpp | 5eb0d1a41e4a064bf9363907cd547d462005d3ea | [] | no_license | ivar1990/pf2 | 53d0dd8202a0aba28ff03e9111b5bd3ce8fff3a0 | 976e6964683b89457e89428411cafc9846a45e77 | refs/heads/master | 2020-12-21T11:04:43.932884 | 2020-01-27T05:14:33 | 2020-01-27T05:14:33 | 236,412,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,084 | cpp | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: lab6.cpp
* Author: ivarm
*
* Created on October 2, 2019, 8:22 AM
*/
#include <cstdlib>
#include <iostream>
#include <string>
#include "Mystring.h"
#define string Mystring
using namespace std;
/*
* Check function from the previous lab
*/
void check (const string s, const string name)
{
cout << "checking " << name << endl;
cout << name << " contains " << s << endl;
cout << name << " capacity() is " << s.capacity() << endl;
cout << name << " length() is " << s.length() << endl;
cout << name << " size() is " << s.size() << endl;
cout << name << " max_size() is " << s.max_size() << endl << endl;
}
int main(int argc, char** argv) {
cout << "This is Lab 6" << endl;
string s1 = "Hello, World!";
string s1name("s1");
check(s1, s1name);
check(s1, s1name);
cout << "Lab 6 ends" << endl;
return 0;
}
| [
"[email protected]"
] | |
95d9a334e3594e3b93400bc167a0ea0a536adf09 | a823d48f9c18a308d389492471f205365bb4e578 | /leetcode/1340-Jump-Game-V/cpp-1340/main2.cpp | 11ec7ef88d07ac25c6c5d14ae9cfb91ce31606e4 | [] | no_license | liuawen/Learning-Algorithms | 3e145915ceecb93e88ca92df5dc1d0bf623db429 | 983c93a96ce0807534285782a55b22bb31252078 | refs/heads/master | 2023-07-19T17:04:39.723755 | 2023-07-14T14:59:03 | 2023-07-14T14:59:03 | 200,856,810 | 16 | 6 | null | 2023-04-17T19:13:20 | 2019-08-06T13:26:41 | Java | UTF-8 | C++ | false | false | 1,598 | cpp | /// Source : https://leetcode.com/problems/jump-game-v/
/// Author : liuyubobobo
/// Time : 2019-02-10
#include <iostream>
#include <vector>
using namespace std;
/// Dynamic Programming
/// Time Complexity: O(nlogn + n * d)
/// Space Complexity: O(n)
class Solution {
public:
int maxJumps(vector<int>& arr, int d) {
vector<int> order;
for(int i = 0; i < arr.size(); i ++) order.push_back(i);
sort(order.begin(), order.end(), [arr](int a, int b){
return arr[a] < arr[b];
});
// for(int e: order) cout << e << " "; cout << endl;
vector<int> dp(arr.size(), 1);
for(int pos: order){
int maxv = arr[pos], maxi = pos;
for(int i = pos - 1; i >= 0 && i >= pos - d; i --){
if(arr[i] > maxv)
dp[i] = max(dp[i], 1 + dp[maxi]), maxv = arr[i], maxi = i;
}
maxv = arr[pos], maxi = pos;
for(int i = pos + 1; i < arr.size() && i <= pos + d; i ++) {
if (arr[i] > maxv)
dp[i] = max(dp[i], 1 + dp[maxi]), maxv = arr[i], maxi = i;
}
// cout << pos << " : ";
// for(int e: dp) cout << e << " "; cout << endl;
}
return *max_element(dp.begin(), dp.end());
}
};
int main() {
vector<int> arr1 = {6,4,14,6,8,13,9,7,10,6,12};
cout << Solution().maxJumps(arr1, 2) << endl;
// 4
vector<int> arr2 = {22,29,52,97,29,75,78,2,92,70,90,12,43,17,97,18,58,100,41,32};
cout << Solution().maxJumps(arr2, 17) << endl;
// 6
return 0;
}
| [
"[email protected]"
] | |
5fb8ba13027dc9fe4bd0419b8d8fbe616736017f | d3fbeefac0809af5c6f194988c700b5d5a421537 | /Controls/QuotationBox_Control.h | 368585fc37b4ce0f14ecbba2d34431983904597a | [] | no_license | dreamsql/QtUiDemo | c546fd03e1530906aef3552ac56d6b57c8baf38e | 6c46ce760fdc72edaa5c36a6d1c32285c97d5c85 | refs/heads/master | 2021-05-27T05:03:41.050276 | 2014-01-21T12:02:53 | 2014-01-21T12:02:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 779 | h | #ifndef _QUOTATIONBOX_CONTROL_H
#define _QUOTATIONBOX_CONTROL_H
#include "QuotationInfo_Control.h"
#include "QuotationBoxCommon_Control.h"
namespace Controls
{
class QuotationBox:public QuotationBoxCommon
{
public:
QuotationBox(const QString& boxStyle,const QString& labelStyle,const QuotationInfo& quotationInfo,QWidget* parent=nullptr);
QLabel* getTimeStampLabel()
{
return _timestamp;
}
QLabel* getMarkInfoLabel()
{
return _markInfo;
}
QLabel* getHighestLabel()
{
return _highest;
}
QLabel* getLowestLabel()
{
return _lowest;
}
private:
QuotationBox(const QuotationBox&);
QuotationBox& operator=(const QuotationBox&);
QLabel* _timestamp;
QLabel* _markInfo;
QLabel* _highest;
QLabel* _lowest;
};
}
#endif
| [
"[email protected]"
] | |
959312736427cfc3586198b080512b591f9e5361 | 68dcf585fc0b1d31254d25d5cf51aae503310d81 | /Others/easy_Queue_Implementation.cpp | a8004ddd1e58ea7aed4518f31f9bf911b7932070 | [] | no_license | Sarthakdtu/C-Codes | 0a45b7b4e8fb6f7e85d0be56d0289e231850621a | 02da5037f165c962dfd3ceee660ff80ab36059a8 | refs/heads/master | 2020-06-16T06:33:09.267452 | 2020-02-01T16:24:35 | 2020-02-01T16:24:35 | 195,502,879 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,503 | cpp | #include<iostream>
using namespace std;
struct node
{
int data;
node *next;
};
void enqueue(int data, node *&front, node *&rear)
{
node *n = new node;
n->data=data;
n->next= NULL;
//cout<<"Node Created "<<endl;
if(front==NULL && rear ==NULL)
{
cout<<"Entering "<<n->data<<endl;
front = rear = n;
}
else
{
rear->next=n;
rear = n;
}
}
int dequeue(node *&front, node *&rear)
{
if(front==rear && rear==NULL)
{
cout<<"Queue is empty";
return -1;
}
else
{
int d = front->data;
cout<<"Removing "<<d<<endl;
node *temp = front->next;
front->next=NULL;
front = temp;
if(front==NULL)
{
rear = NULL;
}
return d;
}
}
void display(node *front, node *rear)
{
node *temp = front;
while(temp!=NULL)
{
cout<<temp->data<<" ";
temp=temp->next;
}
}
int main()
{
node *front=NULL, *rear=NULL;
enqueue(1, front, rear);
enqueue(2, front, rear);
enqueue(3, front, rear);
display(front, rear);
cout<<dequeue(front, rear)<<endl;
enqueue(4, front, rear);
enqueue(5, front, rear);
cout<<dequeue(front, rear)<<endl;
cout<<dequeue(front, rear)<<endl;
cout<<dequeue(front, rear)<<endl;
cout<<dequeue(front, rear)<<endl;
return 0;
}
| [
"[email protected]"
] | |
0ac6486677a2e6a5419a3178a9cc4dc771e23d18 | ece46d54db148fcd1717ae33e9c277e156067155 | /SDK/arxsdk2020/inc/rxmfcapi.h | b240d84b292c39200a058004035ca1afb4a7d0c9 | [] | no_license | 15831944/ObjectArx | ffb3675875681b1478930aeac596cff6f4187ffd | 8c15611148264593730ff5b6213214cebd647d23 | refs/heads/main | 2023-06-16T07:36:01.588122 | 2021-07-09T10:17:27 | 2021-07-09T10:17:27 | 384,473,453 | 0 | 1 | null | 2021-07-09T15:08:56 | 2021-07-09T15:08:56 | null | UTF-8 | C++ | false | false | 7,977 | h | //
//////////////////////////////////////////////////////////////////////////////
//
// Copyright 2019 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this software in either electronic or hard copy form.
//
//////////////////////////////////////////////////////////////////////////////
//
// Name: rxmfcapi.h
//
// Remarks: This module contains the implementation for ARXMFC API.
// You need to include windows and/or ole header files
//
//////////////////////////////////////////////////////////////////////////////
#include "adesk.h"
#include "AdAChar.h"
#include "AcStatusBar.h"
#include "core_rxmfcapi.h"
#ifndef AD_RXMFCAPI_H
#define AD_RXMFCAPI_H 1
#pragma pack (push, 8)
// AutoCAD WM_ACAD_KEEPFOCUS
// Create custom window message. This message is used by the OnIdle
// handler to test if a top-level window will relinquish focus. If
// a window handles this message and does not want to lose focus then
// it should return a TRUE result.
// lParam & wParam not used
// Return 1 to maintain focus else 0 if focus can be shifted.
#ifndef WM_ACAD_KEEPFOCUS
#define WM_ACAD_KEEPFOCUS (WM_USER+0x6D01)
#endif // WM_ACAD_KEEPFOCUS
class AcDbDatabase;
class CDialogBar;
class AdApplicationFrame;
#ifdef _ADESK_WINDOWS_
//////////////////////////
// AutoCAD Window pointers
//////////////////////////
// The pointer to a window or a frame should be used only when the
// ARX apps share the SAME MFC DLL with AutoCAD.
// In some cases, when using static MFC or different MFC DLL,
// the window handle should be used instead.
// instead of using
// acedGetAcadDwgView()->UpdateWindow();
// CMyDialog Mydia(acedGetAcadFrame());
// use
// ::UpdateWindow(acedGetAcadDwgView()->m_hWnd);
// CMyDialog Mydia(CWnd::FromHandle(acedGetAcadFrame()->m_hWnd));
/* acedGetAcadWinApp
* Returns the pointer to AutoCAD CWinApp object.
*/
CWinApp* acedGetAcadWinApp();
/* acedGetAcadDoc
* Returns the pointer to AutoCAD CDocument object
* There's only one document in AutoCAD.
*/
CDocument* acedGetAcadDoc();
/* acedGetAcadDwgView
* Returns the pointer to AutoCAD CView object
* There's only one Dwg view in AutoCAD.
*/
CView* acedGetAcadDwgView();
/* acedGetAcadFrame
* Returns the pointer to AutoCAD CMDIFrameWnd object
*/
CMDIFrameWnd* acedGetAcadFrame();
/* acedGetAcadDockCmdLine
* Returns the pointer to AutoCAD command line window
*/
CWnd* acedGetAcadDockCmdLine();
/* acedGetAcadTextCmdLine
* Returns the pointer to AutoCAD Text window.
*/
CWnd* acedGetAcadTextCmdLine();
#endif // _ADESK_WINDOWS_
/* acedGetAcadBrandingResourceInstance()
* Returns the Instance of AutoCAD's Branding resource
* e.g. splash screen, about box, mainframe icon
*/
HINSTANCE acedGetAcadBrandingResourceInstance();
#ifdef _ADESK_WINDOWS_
// AutoCAD MDI Child Window Frame settings
typedef struct tagChildFrmSettings {
// More to come later
AcColorSettings m_ColorSettings;
bool m_bShowLayoutBar;
bool m_bShowScrollBar;
CDialogBar *m_pDialogBar;
bool m_bIsBedit;
} AcChildFrmSettings;
BOOL acedGetChildFrameSettings(AcChildFrmSettings* pChildFrmSettings,
CMDIChildWnd *pWnd);
BOOL acedSetChildFrameSettings(AcChildFrmSettings* pChildFrmSettings,
CMDIChildWnd *pWnd);
#endif
#ifdef _ADESK_WINDOWS_
// Custom Drag and Drop
// In order to enable custom drag&drop, you have to
// #define _ARX_CUSTOM_DRAG_N_DROP_
// before including this header file, and you need to include <afxole.h> also.
#ifdef _ARX_CUSTOM_DRAG_N_DROP_
/* acedRegisterCustomDropTarget
* Registers a new IDroptarget to the AutoCAD's drawing window.
* Only one IDropTarget can be registered at one moment.
* AutoCAD's default Drag & Drop handling capabilities are not available
* until the IDroptarget is revoke.
* This is replaced by acedStartOverrideDropTarget(). It will be removed
* in next release.
*/
BOOL acedRegisterCustomDropTarget(IDropTarget* pItarget);
BOOL acedStartOverrideDropTarget(COleDropTarget* pTarget);
/* acedRevokeCustomDropTarget
* Revokes the previously set IDroptarget.
* The default AutoCAD's handling of Drag&Drop event is restored.
* This is replaced by acedRemoveDropTarget(). It will be removed
* in next release.
*/
BOOL acedRevokeCustomDropTarget();
BOOL acedEndOverrideDropTarget(COleDropTarget* pTarget);
/* acedAddDropTarget
* Add a hook to participate in DragDrop Event started not from
* 3rd party ARX app.
*/
BOOL acedAddDropTarget(COleDropTarget* pTarget);
/* acedRemoveDropTarget
* Remove the hook to AutoCAD DragDrop event.
*/
BOOL acedRemoveDropTarget(COleDropTarget* pTarget);
#endif // _ARX_CUSTOM_DRAG_N_DROP_
#endif // _ADESK_WINDOWS_
#ifdef _ADESK_WINDOWS_
// Get Database correpont to on AutoCAD Drawing Window.
AcDbDatabase* AcApGetDatabase(CView *pView);
#endif
// AutoCAD company name for registry access. For all except AutoCAD
// OEM, this will return "Autodesk". For AutoCAD OEM, it is at the
// discretion of the AutoCAD OEM developer, via an entry in aoemres2.rc,
// to specify the company name for use in registry accesses.
const CString& acedGetRegistryCompany();
// Register the fact that the application with name "szAppName"
// may want to add a tab to the tabbed dialog named "szDialogName".
// This function creates the key necessary to register the added
// tab(s) if it is not there. Returns TRUE on success.
BOOL acedRegisterExtendedTab(const wchar_t* szAppName, const wchar_t* szDialogName);
// Return an HMENU given a .MNU file alias.
HMENU acedGetMenu(const wchar_t* pszAlias);
BOOL acedSetIUnknownForCurrentCommand(const LPUNKNOWN);
BOOL acedGetIUnknownForCurrentCommand(LPUNKNOWN &pUnk);
/* acedShowDrawingStatusBars
* Shows or hides the drawing status bars.
*/
BOOL acedShowDrawingStatusBars(BOOL bShow = TRUE);
#ifdef _ADESK_WINDOWS_
/* acedRegisterStatusBarMenuItem
* Returns TRUE if the status bar item is successfully
* registered in AutoCAD, otherwise FALSE.
*/
BOOL acedRegisterStatusBarMenuItem(AcStatusBarMenuItem* pItem,
AcStatusBarMenuItem::AcStatusBarType nType);
/* acedUnregisterStatusBarMenuItem
* Returns TRUE if the status bar item is successfully
* unregistered in AutoCAD, otherwise FALSE.
*/
BOOL acedUnregisterStatusBarMenuItem(AcStatusBarMenuItem* pItem,
AcStatusBarMenuItem::AcStatusBarType nType);
/* acedSetStatusBarPaneId
* Sets the id of the given status bar pane. Returns TRUE if
* successful, otherwise FALSE.
*/
BOOL acedSetStatusBarPaneID(AcPane* pPane,
AcStatusBarMenuItem::AcStatusBarType nType,
int nID);
#endif // _ADESK_WINDOWS_
// Controls whether or not file open adds the filename to the 'File' MRU list.
void acedSuppressFileMRU(bool bSuppress);
// acedGetApplicationFrame
// Returns the pointer to AutoCAD Application Frame.
AdApplicationFrame* acedGetApplicationFrame();
// Define callback function for apps that want windows messages
typedef BOOL (* AcedPreTranslateMsgFn)(MSG*);
// acedRegisterMainFramePretranslateObserver
/* Register a filter message hook into AutoCAD's main frame message pre-translator.
* The message passed to your application can be changed and can be blocked out.
* If the function returns TRUE, the message WON'T be passed the message handlers
* of AutoCAD. The message is terminated.
* Returns TRUE if successfully registers the hook. Otherwise FALSE.
*/
BOOL acedRegisterMainFramePreTranslateObserver(const AcedPreTranslateMsgFn pfn);
/* acedRemoveMainFramePretranslateObserver
* Takes a message hook function pointer and remove it
* Returns TRUE if successfully registers the hook. Otherwise FALSE.
*/
BOOL acedRemoveMainFramePreTranslateObserver(const AcedPreTranslateMsgFn pfn);
#pragma pack (pop)
#endif // AD_RXMFCAPI_H
| [
"[email protected]"
] | |
ad31a6867faf8b2631a07fc9f0f391fc77c3c310 | 322e7a8b9387a37685f4c9ec51440a9eadf96c83 | /folly/compression/CompressionContextPool.h | d5862e29d71c0fbb84032bcf2b210bef24064090 | [
"MIT",
"Apache-2.0"
] | permissive | sjfink/folly | a119cf4b8546f3d714033ca6759175b04828db82 | b797de382febdc9696bc2a38a388e1c9de0be053 | refs/heads/master | 2020-08-15T17:25:36.010641 | 2019-10-15T16:12:12 | 2019-10-15T16:15:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,276 | h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <memory>
#include <folly/Memory.h>
#include <folly/Synchronized.h>
namespace folly {
namespace compression {
template <typename T, typename Creator, typename Deleter>
class CompressionContextPool {
private:
using InternalRef = std::unique_ptr<T, Deleter>;
class ReturnToPoolDeleter {
public:
using Pool = CompressionContextPool<T, Creator, Deleter>;
explicit ReturnToPoolDeleter(Pool* pool, const Deleter& deleter)
: pool_(pool), deleter_(deleter) {}
void operator()(T* t) {
InternalRef ptr(t, deleter_);
if (pool_ != nullptr) {
pool_->add(std::move(ptr));
}
}
private:
Pool* pool_;
Deleter deleter_;
};
public:
using Object = T;
using Ref = std::unique_ptr<T, ReturnToPoolDeleter>;
explicit CompressionContextPool(
Creator creator = Creator(),
Deleter deleter = Deleter())
: creator_(std::move(creator)), deleter_(std::move(deleter)) {}
Ref get() {
auto stack = stack_.wlock();
if (stack->empty()) {
T* t = creator_();
if (t == nullptr) {
throw_exception<std::bad_alloc>();
}
return Ref(t, ReturnToPoolDeleter(this, deleter_));
}
auto ptr = std::move(stack->back());
stack->pop_back();
return Ref(ptr.release(), ReturnToPoolDeleter(this, deleter_));
}
size_t size() {
return stack_.rlock()->size();
}
private:
void add(InternalRef ptr) {
DCHECK(ptr);
stack_.wlock()->push_back(std::move(ptr));
}
Creator creator_;
Deleter deleter_;
folly::Synchronized<std::vector<InternalRef>> stack_;
};
} // namespace compression
} // namespace folly
| [
"[email protected]"
] | |
196f27824db14adfae0b01d5196c75dd41506adb | 933f2ea0a1605ef3fa053dc7a2c7d85490d01597 | /torch/csrc/jit/python/pybind_utils.h | 65f5a49145c8ca1c4b01f60a5fb83ab2da797eda | [
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | gcatron/pytorch | cf623092ec55c4aa4909b04090d81f8a4effb8da | 2efc618f1971e91fe0f0ca454e7c78b503089b18 | refs/heads/master | 2023-03-31T18:55:14.957252 | 2020-09-16T03:25:59 | 2020-09-16T03:28:39 | 295,918,845 | 1 | 0 | NOASSERTION | 2020-09-16T04:02:50 | 2020-09-16T04:02:49 | null | UTF-8 | C++ | false | false | 41,992 | h | #pragma once
#include <ATen/core/ivalue.h>
#include <ATen/core/jit_type.h>
#include <ATen/core/qualified_name.h>
#include <ATen/core/stack.h>
#include <pybind11/pybind11.h>
#include <pybind11/pytypes.h>
#include <torch/csrc/Device.h>
#include <torch/csrc/Dtype.h>
#include <torch/csrc/Layout.h>
#include <torch/csrc/QScheme.h>
#include <torch/csrc/WindowsTorchApiMacro.h>
#include <torch/csrc/jit/api/module.h>
#include <torch/csrc/jit/frontend/schema_matching.h>
#include <torch/csrc/jit/frontend/tracer.h>
#include <torch/csrc/jit/python/module_python.h>
#include <torch/csrc/jit/python/python_custom_class.h>
#include <torch/csrc/jit/python/python_ivalue.h>
#include <torch/csrc/jit/python/python_tracer.h>
#include <torch/csrc/jit/resource_guard.h>
#include <torch/csrc/jit/runtime/operator.h>
#include <torch/csrc/utils/auto_gil.h>
#include <torch/csrc/utils/pybind.h>
#include <torch/csrc/utils/six.h>
#ifdef USE_DISTRIBUTED
#include <torch/csrc/distributed/rpc/py_rref.h>
#include <torch/csrc/distributed/rpc/rref_impl.h>
#endif
#include <ATen/core/function_schema.h>
#include <c10/util/Exception.h>
#include <algorithm>
#include <cstddef>
#include <string>
#include <utility>
#include <vector>
// The visibility attribute is to avoid a warning about storing a field in the
// struct that has a different visibility (from pybind) than the struct.
#ifdef _WIN32
#define VISIBILITY_HIDDEN
#else
#define VISIBILITY_HIDDEN __attribute__((visibility("hidden")))
#endif
namespace torch {
namespace jit {
inline IValue toIValue(
py::handle obj,
const TypePtr& type,
c10::optional<int32_t> N = c10::nullopt);
py::object toPyObject(IValue ivalue);
// The PythonFutureWrapper for ivalue::Future
//
// NB: VISIBILITY_HIDDEN is for silencing compiling error,
// "error: 'torch::jit::PythonFutureWrapper' declared with greater visibility
// than the type of its field 'torch::jit::PythonFutureWrapper::unwrap_func'
// [-Werror=attributes]"
//
// NB: inherit from enable_shared_from_this because then(py::function) needs to
// get a shared_ptr from this pointer.
struct VISIBILITY_HIDDEN PythonFutureWrapper
: std::enable_shared_from_this<PythonFutureWrapper> {
using UnwrapFunc = std::function<void(py::object)>;
explicit PythonFutureWrapper(
c10::intrusive_ptr<c10::ivalue::Future> fut,
c10::optional<UnwrapFunc> unwrap_func = c10::nullopt)
: fut(std::move(fut)), unwrap_func(std::move(unwrap_func)) {}
explicit PythonFutureWrapper(const PythonFutureWrapper&) = delete;
PythonFutureWrapper& operator=(const PythonFutureWrapper&) = delete;
bool done() {
return fut->completed();
}
py::object value() {
// acquiring GIL as toPyObject creates new py::object
// without grabbing the GIL.
py::gil_scoped_acquire acquire;
py::object py_obj = toPyObject(fut->value());
if (unwrap_func) {
(*unwrap_func)(py_obj);
}
return py_obj;
}
py::object wait() {
fut->wait();
if (jit::tracer::isTracing()) {
auto graph = jit::tracer::getTracingState()->graph;
Value* fut_val = jit::tracer::getValueTrace(fut);
auto output = graph->insert(aten::wait, {fut_val});
jit::tracer::setValueTrace(fut->value(), output);
}
return value();
}
// The py::function cb arg must take a std::shared_ptr<PythonFutureWrapper>
// (i.e., torch._C.Future) as the only argument. If the type mismatches, an
// error will be thrown when waiting for the value of this returned Future.
std::shared_ptr<PythonFutureWrapper> then(py::function cb) {
// We need this an additional layer of wrapper here to guard the
// destruction of the py::function object. Because, the
// Future owns a reference to the py::function in its callback
// vector, but Future does not acquire GIL on destruction.
auto pf = std::make_shared<PythonFunctionGuard>(std::move(cb));
return std::make_shared<jit::PythonFutureWrapper>(fut->then(
// Capture a copy of the ivalue::Future instead of the `this` pointer
// because the PythonFutureWrapper object could have been deleted
// when the callbacks are fired. For example, RPC only captures the
// ivalue::Future instead of PythonFutureWrapper in FutureMessage's
// callback functions. Hence, if user code does not hold a reference to
// this PythonFutureWrapper object, there is no guarantee that the
// PythonFutureWrapper is still valid when running the callback.
[pyFut(this->getPtr()), pf(std::move(pf))]() -> IValue {
try {
pybind11::gil_scoped_acquire ag;
return toIValue(pf->func_(pyFut), PyObjectType::get());
} catch (py::error_already_set& e) {
auto err = std::runtime_error(c10::str(
"Got the following error when running the callback: ",
e.what()));
{
pybind11::gil_scoped_acquire ag;
// Release ownership on py::objects and also restore Python
// Error Indicator.
e.restore();
// Clear the Python Error Indicator as we has recorded the
// exception in the response message.
PyErr_Clear();
}
throw err;
}
},
PyObjectType::get()));
}
void markCompleted(const py::object& pyValue) {
DCHECK(PyGILState_Check());
IValue value = toIValue(pyValue, PyObjectType::get());
py::gil_scoped_release release;
fut->markCompleted(std::move(value));
}
c10::intrusive_ptr<c10::ivalue::Future> fut;
// unwrap_func works like a callback for the value returned by
// PythonFutureWrapper::wait().
c10::optional<UnwrapFunc> unwrap_func;
private:
// Wrap Python function to guard deref
struct PythonFunctionGuard {
explicit PythonFunctionGuard(py::function func) : func_(std::move(func)) {}
~PythonFunctionGuard() {
pybind11::gil_scoped_acquire ag;
func_.dec_ref();
// explicitly setting PyObject* to nullptr to prevent py::object's dtor to
// decref on the PyObject again.
// See Note [Destructing py::object] in python_ivalue.h
func_.ptr() = nullptr;
}
py::function func_;
};
std::shared_ptr<PythonFutureWrapper> getPtr() {
return shared_from_this();
}
};
// error reporting: when reporting user-caused errors, these functions should
// not use AT_ERROR macros, since these macros add stack trace information
// that is confusing to display to the end user since it always reports
// locations in libtorch code rather than user code.
inline std::shared_ptr<CompilationUnit> get_python_cu() {
return py::module::import("torch.jit._state")
.attr("_python_cu")
.cast<std::shared_ptr<CompilationUnit>>();
}
struct TypedIValue : public std::pair<IValue, TypePtr> {
using pair::pair;
IValue& ivalue() {
return this->first;
}
TypePtr& type() {
return this->second;
}
};
inline TypedIValue toDictKeyIValue(py::handle key) {
if (py::isinstance<py::str>(key)) {
return TypedIValue(
ConstantString::create(py::cast<std::string>(key)),
StringType::create());
} else if (py::isinstance<py::int_>(key)) {
return TypedIValue(py::cast<int64_t>(key), IntType::create());
} else if (py::isinstance<py::float_>(key)) {
return TypedIValue(py::cast<double>(key), FloatType::create());
} else {
AT_ERROR("Dictionary inputs may only have string, int, or float keys");
}
}
inline c10::optional<TypePtr> unifyOrInitializeType(
TypePtr accum,
TypePtr unify) {
if (!accum) {
return unify;
}
return unifyTypes(accum, unify);
}
struct InferredType {
InferredType(TypePtr type) : type_(std::move(type)) {}
InferredType(std::string reason)
: type_(nullptr), reason_(std::move(reason)) {}
TypePtr type() const {
TORCH_INTERNAL_ASSERT(type_);
return type_;
}
bool success() const {
return type_ != nullptr;
}
const std::string& reason() const {
TORCH_INTERNAL_ASSERT(!type_);
return reason_;
}
private:
TypePtr type_;
std::string reason_;
};
InferredType tryToInferContainerType(py::handle input);
// Try to infer the type of a Python object
// The type cannot be inferred if:
// input is a None
// input is an empty container (list, dict)
// input is an list with element types that cannot be unified
// input is an dict with key or value types that cannot be unified
inline InferredType tryToInferType(py::handle input) {
// Try tensor types
if (THPVariable_Check(input.ptr())) {
auto tensor = py::cast<at::Tensor>(input);
return InferredType(TensorType::create(tensor));
}
if (input.is(py::none())) {
return InferredType(NoneType::get());
}
if (py::isinstance<StrongFunctionPtr>(input)) {
auto fn = py::cast<StrongFunctionPtr>(input).function_;
return InferredType(FunctionType::create(fn));
}
// Try basic types first
if (py::isinstance<py::bool_>(input)) {
return InferredType(BoolType::get());
} else if (py::isinstance<py::int_>(input)) {
return InferredType(IntType::get());
} else if (py::isinstance<py::float_>(input)) {
return InferredType(FloatType::get());
} else if (py::isinstance<py::str>(input)) {
return InferredType(StringType::get());
} else if (THPLayout_Check(input.ptr())) {
return InferredType(IntType::get());
} else if (THPDevice_Check(input.ptr())) {
return InferredType(DeviceObjType::get());
} else if (THPDtype_Check(input.ptr())) {
return InferredType(IntType::get());
} else if (THPQScheme_Check(input.ptr())) {
return InferredType(IntType::get());
} else if (THPLayout_Check(input.ptr())) {
return InferredType(IntType::get());
}
auto enum_type = py::module::import("enum").attr("Enum");
py::bool_ isEnumValue = py::isinstance(input, enum_type);
if (py::cast<bool>(isEnumValue)) {
auto enum_class = input.attr("__class__");
auto enum_type = py::cast<TypePtr>(
py::module::import("torch.jit.annotations")
.attr("try_ann_to_type")(enum_class, SourceRange()));
return InferredType(enum_type);
}
py::bool_ isClass =
py::module::import("inspect").attr("isclass")(input.get_type());
if (py::cast<bool>(isClass)) {
py::str qualifiedName = py::module::import("torch._jit_internal")
.attr("_qualified_name")(input.get_type());
auto pyClass = py::module::import("torch.jit._state")
.attr("_get_script_class")(qualifiedName);
if (!pyClass.is_none()) {
auto cu = get_python_cu();
const auto classname =
c10::QualifiedName(py::cast<std::string>(qualifiedName));
auto class_type = cu->get_class(classname);
TORCH_INTERNAL_ASSERT(class_type);
return InferredType(class_type);
}
}
if (py::isinstance<Object>(input)) {
auto object = py::cast<Object>(input);
return InferredType(object.type());
#ifdef USE_DISTRIBUTED
} else if (py::isinstance<torch::distributed::rpc::PyRRef>(input)) {
auto rref_ivalue = input.cast<torch::distributed::rpc::PyRRef>().toIValue();
return InferredType(rref_ivalue.type());
#endif
}
// Try container types
return tryToInferContainerType(input);
}
inline InferredType tryToInferContainerType(py::handle input) {
if (six::isTuple(input)) {
py::tuple tuple = py::cast<py::tuple>(input);
std::vector<TypePtr> element_types;
element_types.reserve(tuple.size());
for (py::handle elem : tuple) {
auto type_match = tryToInferType(elem);
if (type_match.success()) {
element_types.push_back(type_match.type());
} else {
// Forward error message along
return type_match.reason();
}
}
return InferredType(TupleType::create(element_types));
} else if (PyDict_Check(input.ptr())) {
// Check to make sure we can generate useful input/output types
auto dict = py::cast<py::dict>(input);
size_t len = py::len(dict);
if (!len) {
return InferredType("Dictionary inputs must have entries");
}
TypePtr key_type = nullptr;
TypePtr value_type = nullptr;
for (auto entry : dict) {
// Try to infer the key type and unify it with the existing one
auto entry_key_type_match = tryToInferType(entry.first);
if (!entry_key_type_match.success()) {
return entry_key_type_match.reason();
}
auto unified_key =
unifyOrInitializeType(key_type, entry_key_type_match.type());
if (!unified_key) {
return InferredType(c10::str(
"Dictionary inputs to traced functions must have consistent type. Found ",
key_type->repr_str(),
" and ",
(entry_key_type_match.type())->repr_str()));
}
// Try to infer the value type and unify it with the existing one
auto entry_value_type_match = tryToInferType(entry.second);
if (!entry_value_type_match.success()) {
return entry_value_type_match.reason();
}
auto unified_value =
unifyOrInitializeType(value_type, entry_value_type_match.type());
if (!unified_value) {
return InferredType(c10::str(
"Dictionary inputs to traced functions must have consistent type. Found ",
value_type->repr_str(),
" and ",
(entry_value_type_match.type())->repr_str()));
}
key_type = *unified_key;
value_type = *unified_value;
}
return InferredType(DictType::create(key_type, value_type));
} else if (PyList_Check(input.ptr())) {
auto list = py::cast<py::list>(input);
size_t len = py::len(list);
if (!len) {
return InferredType("List trace inputs must have elements");
}
TypePtr element_type = nullptr;
for (auto elem : list) {
auto element_type_match = tryToInferType(elem);
if (!element_type_match.success()) {
return InferredType(c10::str(
"Could not infer type of list element: ",
element_type_match.reason()));
}
auto unified_type =
unifyOrInitializeType(element_type, element_type_match.type());
if (!unified_type) {
return InferredType(c10::str(
"List inputs to traced functions must have consistent element type. Found ",
element_type->repr_str(),
" and ",
(element_type_match.type())->repr_str()));
}
element_type = *unified_type;
}
return InferredType(ListType::create(element_type));
} else {
// TODO: this message is not correct anymore, since this InferredType is
// used from a bunch of circumstances unrelated to tracing. We can re-use
// this instead of the attribute_failure stuff in concreteType
return InferredType(c10::str(
"Only tensors and (possibly nested) tuples of tensors, lists, or dicts",
"are supported ",
"as inputs or outputs of traced functions",
", but instead got value of type ",
py::str(input.get_type().attr("__name__")),
"."));
}
}
inline bool isTraceableType(TypePtr type) {
if (type->isSubtypeOf(TensorType::get())) {
return true;
}
if (auto list_type = type->cast<ListType>()) {
return isTraceableType(list_type->getElementType());
}
if (auto tuple_type = type->cast<TupleType>()) {
return std::all_of(
tuple_type->elements().begin(),
tuple_type->elements().end(),
[](TypePtr element_type) { return isTraceableType(element_type); });
}
if (auto dict_type = type->cast<DictType>()) {
return isTraceableType(dict_type->getValueType());
}
return false;
}
inline IValue toTypeInferredIValue(py::handle input) {
auto match = tryToInferType(input);
if (!match.success()) {
AT_ERROR(
"Tracer cannot infer type of ", py::str(input), "\n:", match.reason());
}
return toIValue(input, match.type());
}
inline Stack toTraceableStack(const py::tuple& inputs) {
auto info = toTypeInferredIValue(inputs);
TORCH_CHECK(
isTraceableType(info.type()),
"Type '",
info.type()->repr_str(),
"' cannot be traced. Only Tensors and (possibly nested) Lists, Dicts, and"
" Tuples of Tensors can be traced");
return info.toTuple()->elements();
}
inline IValue createGenericList(py::handle obj, const TypePtr& elem_type) {
auto elems = c10::impl::GenericList(elem_type);
for (auto elem : obj) {
elems.push_back(toIValue(std::move(elem), elem_type));
}
return IValue(std::move(elems));
}
inline IValue createGenericDict(
py::dict obj,
const TypePtr& key_type,
const TypePtr& value_type) {
c10::impl::GenericDict elems(key_type, value_type);
elems.reserve(py::len(obj));
for (auto entry : obj) {
elems.insert(
toIValue(entry.first, key_type), toIValue(entry.second, value_type));
}
return IValue(std::move(elems));
}
template <class T>
inline void guardAgainstNamedTensor(const T& var) {
TORCH_CHECK(
!var.has_names(),
"NYI: Named tensors are currently unsupported in TorchScript. As a "
"workaround please drop names via `tensor = tensor.rename(None)`.");
}
inline IValue toIValue(
py::handle obj,
const TypePtr& type,
c10::optional<int32_t> N) {
switch (type->kind()) {
case TypeKind::TensorType: {
auto var = py::cast<autograd::Variable>(obj);
if (var.is_sparse()) {
TORCH_WARN_ONCE(
"Using sparse tensors in TorchScript is experimental. Many optimization "
"pathways have not been thoroughly tested with sparse tensors. Please "
"include the fact that the network is running sparse tensors in any bug "
"reports submitted.");
}
guardAgainstNamedTensor<autograd::Variable>(var);
return var;
}
case TypeKind::FloatType:
return py::cast<double>(obj);
case TypeKind::IntType:
// TODO(xintchen): Handling LayoutType and ScalarTypeType correctly.
case TypeKind::LayoutType:
case TypeKind::ScalarTypeType:
if (THPDtype_Check(obj.ptr())) {
auto dtype = reinterpret_cast<THPDtype*>(obj.ptr());
return static_cast<int64_t>(dtype->scalar_type);
}
if (THPQScheme_Check(obj.ptr())) {
auto qscheme = reinterpret_cast<THPQScheme*>(obj.ptr());
return static_cast<uint8_t>(qscheme->qscheme);
}
if (THPLayout_Check(obj.ptr())) {
auto layout = reinterpret_cast<THPLayout*>(obj.ptr());
return static_cast<int8_t>(layout->layout);
}
return py::cast<int64_t>(obj);
case TypeKind::NoneType:
if (!obj.is_none()) {
throw py::cast_error(
c10::str("Cannot cast ", py::str(obj), " to None"));
}
return {};
case TypeKind::BoolType:
return py::cast<bool>(obj);
case TypeKind::TupleType: {
py::tuple tuple = py::cast<py::tuple>(obj);
size_t tuple_size = tuple.size();
auto tuple_type = type->cast<TupleType>();
const auto& elem_types = tuple_type->elements();
if (elem_types.size() != tuple_size) {
throw py::cast_error(c10::str(
"Object ",
py::str(obj),
" had a different number of elements than type ",
type->repr_str()));
}
std::vector<IValue> values;
values.reserve(tuple_size);
for (size_t i = 0; i < tuple_size; ++i) {
values.push_back(toIValue(tuple[i], elem_types[i]));
}
return tuple_type->name()
? c10::ivalue::Tuple::createNamed(std::move(values), tuple_type)
: c10::ivalue::Tuple::create(std::move(values));
}
case TypeKind::StringType:
return ConstantString::create(py::cast<std::string>(obj));
case TypeKind::DeviceObjType: {
auto device = reinterpret_cast<THPDevice*>(obj.ptr());
return device->device;
}
case TypeKind::ListType: {
const auto& elem_type = type->expect<ListType>()->getElementType();
switch (elem_type->kind()) {
// allows single int/float to be broadcasted to a fixed size list
case TypeKind::IntType:
if (!N || !py::isinstance<py::int_>(obj)) {
return IValue(py::cast<std::vector<int64_t>>(obj));
} else {
int64_t value = py::cast<int64_t>(obj);
c10::List<int64_t> repeated;
repeated.reserve(*N);
for (int i = 0; i < *N; ++i) {
repeated.push_back(value);
}
return repeated;
}
case TypeKind::FloatType:
if (!N || !py::isinstance<py::float_>(obj)) {
return IValue(py::cast<std::vector<double>>(obj));
} else {
double value = py::cast<double>(obj);
c10::List<double> repeated;
repeated.reserve(*N);
for (int i = 0; i < *N; ++i) {
repeated.push_back(value);
}
return repeated;
}
case TypeKind::BoolType:
return IValue(py::cast<std::vector<bool>>(obj));
case TypeKind::TensorType:
return IValue(py::cast<std::vector<at::Tensor>>(obj));
default:
return createGenericList(obj, elem_type);
}
}
case TypeKind::DictType: {
const auto& dict_type = type->expect<DictType>();
return createGenericDict(
py::cast<py::dict>(obj),
dict_type->getKeyType(),
dict_type->getValueType());
}
case TypeKind::OptionalType: {
// check if it's a none obj since optional accepts NoneType
if (obj.is_none()) {
// check if it's a none obj since optional accepts NoneType
// return an IValue() to denote a NoneType
return {};
}
return toIValue(obj, type->expect<OptionalType>()->getElementType());
}
case TypeKind::ClassType: {
auto classType = type->expect<ClassType>();
if (auto mod = as_module(py::cast<py::object>(obj))) {
// if obj is already a ScriptModule, just return its ivalue
return mod.value()._ivalue();
}
// otherwise is a normal class object, we create a fresh
// ivalue::Object to use from the py object.
// 1. create a bare ivalue
const size_t numAttrs = classType->numAttributes();
auto cu = classType->compilation_unit();
auto userObj = c10::ivalue::Object::create(
c10::StrongTypePtr(cu, classType), numAttrs);
// 2. copy all the contained types
for (size_t slot = 0; slot < numAttrs; slot++) {
const auto& attrType = classType->getAttribute(slot);
const auto& attrName = classType->getAttributeName(slot);
const auto& contained = py::getattr(obj, attrName.c_str());
userObj->setSlot(slot, toIValue(contained, attrType));
}
return userObj;
}
case TypeKind::InterfaceType: {
auto interfaceType = type->expect<InterfaceType>();
// When converting an pyobj to an interface, we check if rhs
// is module or normal torchscript class, get the type and ivalue
// from them correspondingly.
c10::ClassTypePtr classType = nullptr;
IValue res;
if (auto mod = as_module(py::cast<py::object>(obj))) {
classType = mod.value().type();
res = mod.value()._ivalue();
} else {
// We inspect the value to found the compiled TorchScript class
// and then create a ivalue::Object from that class type.
py::str qualified_name = py::module::import("torch._jit_internal")
.attr("_qualified_name")(obj.get_type());
auto pyCu = get_python_cu();
classType = pyCu->get_class(c10::QualifiedName(qualified_name));
if (!classType) {
throw std::runtime_error(c10::str(
"Assigning the object ",
py::str(obj),
" to an interface fails because the value is not "
"a TorchScript compatible type, did you forget to",
"turn it into a user defined TorchScript class?"));
}
res = toIValue(std::move(obj), classType);
}
// check if the classType conform with the interface or not
std::stringstream why_not;
if (!classType->isSubtypeOfExt(interfaceType, &why_not)) {
throw py::cast_error(c10::str(
"Object ",
py::str(obj),
" is not compatible with interface ",
interfaceType->repr_str(),
"\n",
why_not.str()));
}
return res;
}
case TypeKind::NumberType: {
if (THPDtype_Check(obj.ptr())) {
auto dtype = reinterpret_cast<THPDtype*>(obj.ptr());
return static_cast<int64_t>(dtype->scalar_type);
}
if (THPQScheme_Check(obj.ptr())) {
auto qscheme = reinterpret_cast<THPQScheme*>(obj.ptr());
return static_cast<uint8_t>(qscheme->qscheme);
}
if (THPLayout_Check(obj.ptr())) {
auto layout = reinterpret_cast<THPLayout*>(obj.ptr());
return static_cast<int8_t>(layout->layout);
}
if (py::isinstance<py::int_>(obj)) {
return py::cast<int64_t>(obj);
} else if (py::isinstance<py::float_>(obj)) {
return py::cast<double>(obj);
} else {
throw py::cast_error(
c10::str("Cannot cast ", py::str(obj), " to ", type->repr_str()));
}
}
case TypeKind::RRefType: {
#ifdef USE_DISTRIBUTED
return obj.cast<torch::distributed::rpc::PyRRef>().toIValue();
#else
AT_ERROR("RRef is only supported with the distributed package");
#endif
} break;
case TypeKind::PyObjectType: {
return c10::ivalue::ConcretePyObjectHolder::create(obj);
}
case TypeKind::CapsuleType: {
return IValue::make_capsule(
py::cast<c10::intrusive_ptr<CustomClassHolder>>(obj));
}
case TypeKind::FutureType: {
return obj.cast<std::shared_ptr<PythonFutureWrapper>>()->fut;
}
case TypeKind::AnyType:
return toTypeInferredIValue(obj);
case TypeKind::FunctionType:
case TypeKind::GeneratorType:
case TypeKind::QuantizerType:
case TypeKind::VarType:
case TypeKind::QSchemeType:
case TypeKind::AnyListType:
case TypeKind::AnyTupleType:
case TypeKind::AnyClassType:
case TypeKind::AnyEnumType:
break;
case TypeKind::EnumType:
EnumTypePtr enum_type = type->expect<EnumType>();
py::object py_obj = py::reinterpret_borrow<py::object>(obj);
std::string name = py::cast<std::string>(obj.attr("name"));
IValue value = toIValue(obj.attr("value"), enum_type->getValueType(), {});
auto enum_holder =
c10::make_intrusive<c10::ivalue::EnumHolder>(enum_type, name, value);
return IValue(enum_holder);
}
throw py::cast_error(c10::str(
"toIValue() cannot handle converting to type: ", type->repr_str()));
}
// Small wrapper around getting the type name string from Python to make
// types easier to interpret, e.g. give the structural type for a NamedTuple
inline std::string friendlyTypeName(py::handle obj) {
if (py::isinstance<py::tuple>(obj) && py::hasattr(obj, "_fields")) {
auto field_names =
py::cast<std::vector<std::string>>(py::getattr(obj, "_fields"));
std::stringstream ss;
ss << py::str(obj.get_type().attr("__name__"));
ss << " (aka NamedTuple(";
bool first = true;
for (auto& field_name : field_names) {
if (!first) {
ss << ", ";
}
ss << field_name;
first = false;
}
ss << "))";
return ss.str();
} else {
return py::str(obj.get_type().attr("__name__"));
}
}
// Thrown when trying to create a schema for a list of python
// arguments that cannot be converted.
// Can be caught by the caller to attempt to use other schema
// when there is an overloaded operator.
struct schema_match_error : public std::runtime_error {
using std::runtime_error::runtime_error;
};
inline IValue argumentToIValue(
const FunctionSchema& schema,
size_t argumentPosition,
py::handle object) {
const auto& argument = schema.arguments().at(argumentPosition);
try {
return toIValue(object, argument.type(), argument.N());
} catch (const py::cast_error& error) {
throw schema_match_error(c10::str(
schema.formatTypeMismatchMsg(
argument,
friendlyTypeName(object),
argumentPosition,
py::repr(object)),
"\nCast error details: ",
error.what()));
}
}
inline IValue returnToIValue(const TypePtr& type, py::handle object) {
try {
return toIValue(object, type);
} catch (const py::cast_error& error) {
throw std::runtime_error(c10::str(
" expected value of type ",
type->str(),
" for return value but instead got value of type ",
py::str(object.get_type().attr("__name__")),
".",
"\nValue: ",
py::repr(object),
"\nCast error details: ",
error.what()));
}
}
inline py::object getScriptedClassOrError(const std::string& name) {
auto py_class = py::module::import("torch.jit._state")
.attr("_get_script_class")(name.c_str());
if (py_class.is_none()) {
std::stringstream err;
err << "Unknown reference to ScriptClass ";
err << name;
err << ". (Did you forget to import it?)";
throw std::runtime_error(err.str());
}
return py_class;
}
inline py::object toPyObject(IValue ivalue) {
if (ivalue.isNone()) {
return py::none();
} else if (ivalue.isTensor()) {
auto tensor = std::move(ivalue).toTensor();
if (tensor.is_sparse()) {
TORCH_WARN_ONCE(
"Using sparse tensors in TorchScript is experimental. Many optimization "
"pathways have not been thoroughly tested with sparse tensors. Please "
"include the fact that the network is running sparse tensors in any bug "
"reports submitted.");
}
guardAgainstNamedTensor<at::Tensor>(tensor);
return py::cast(autograd::Variable(std::move(tensor)));
} else if (ivalue.isDouble()) {
return py::cast(std::move(ivalue).toDouble());
} else if (ivalue.isInt()) {
return py::cast(std::move(ivalue).toInt());
} else if (ivalue.isBool()) {
return py::cast(std::move(ivalue).toBool());
} else if (ivalue.isString()) {
return py::cast(std::move(ivalue).toStringRef());
} else if (ivalue.isList()) {
auto list = std::move(ivalue).toList();
py::list t{list.size()};
for (size_t i = 0; i < list.size(); ++i) {
t[i] = toPyObject(IValue{list.get(i)});
}
return std::move(t);
} else if (ivalue.isTuple()) {
auto tuple = std::move(ivalue).toTuple();
const auto& elements = tuple->elements();
py::tuple t{elements.size()};
for (size_t i = 0; i < elements.size(); ++i) {
t[i] = toPyObject(IValue{elements.at(i)});
}
if (tuple->type() && tuple->type()->schema() &&
tuple->type()->schema()->name() != "") {
auto unqualName = tuple->type()->name()->name();
auto fieldNames = fmap(
tuple->type()->schema()->arguments(),
[](const Argument& arg) { return arg.name(); });
return py::module::import("torch._jit_internal")
.attr("_create_named_tuple")(t, unqualName, fieldNames);
} else {
return std::move(t);
}
} else if (ivalue.isDevice()) {
return py::cast<py::object>(THPDevice_New(std::move(ivalue).toDevice()));
} else if (ivalue.isGenericDict()) {
auto dict = std::move(ivalue).toGenericDict();
py::dict py_dict;
for (auto& pair : dict) {
py_dict[toPyObject(IValue{pair.key()})] =
toPyObject(IValue{pair.value()});
}
return std::move(py_dict);
} else if (ivalue.isRRef()) {
#ifdef USE_DISTRIBUTED
auto RRefPtr =
c10::dynamic_intrusive_pointer_cast<torch::distributed::rpc::RRef>(
std::move(ivalue).toRRef());
return py::cast(torch::distributed::rpc::PyRRef(RRefPtr));
#else
AT_ERROR("RRef is only supported with the distributed package");
#endif
} else if (ivalue.isObject()) {
const auto obj = std::move(ivalue).toObject();
if (obj->type()->is_module()) {
return py::cast(Module(obj));
}
auto pyCu = get_python_cu();
if (obj->name().find("__torch__.torch.classes") == 0) {
return py::cast(Object(obj));
}
const auto classType = pyCu->get_class(c10::QualifiedName(obj->name()));
AT_ASSERT(classType);
auto pyClass = getScriptedClassOrError(obj->name());
auto pyObj = pyClass.attr("__new__")(pyClass);
const auto numAttrs = classType->numAttributes();
for (size_t slot = 0; slot < numAttrs; slot++) {
const auto& attrName = classType->getAttributeName(slot);
IValue v = obj->getSlot(slot);
py::setattr(pyObj, attrName.c_str(), toPyObject(std::move(v)));
}
return pyObj;
} else if (ivalue.isPyObject()) {
// return borrowed reference to ensure it correctly incref the underlying
// PyObject
return py::reinterpret_borrow<py::object>(ivalue.toPyObject());
} else if (ivalue.isCapsule()) {
return py::cast(ivalue.toCapsule());
} else if (ivalue.isFuture()) {
return py::cast(std::make_shared<PythonFutureWrapper>(ivalue.toFuture()));
} else if (ivalue.isEnum()) {
auto enum_holder = ivalue.toEnumHolder();
auto qualified_class_name = enum_holder->qualifiedClassName();
auto py_class = getScriptedClassOrError(qualified_class_name);
return py_class.attr(enum_holder->name().c_str());
} else if (ivalue.isRRef()) {
#ifdef USE_DISTRIBUTED
return py::cast(torch::distributed::rpc::PyRRef(
c10::static_intrusive_pointer_cast<distributed::rpc::RRef>(
ivalue.toRRef())));
#else
TORCH_CHECK(false, "RRef is only supported with the distributed package");
#endif
} else {
AT_ERROR(
"Missing cases in 'toPyObject'! Can't convert ",
ivalue.tagKind(),
" to a Python object");
}
}
struct VISIBILITY_HIDDEN tuple_slice {
/*implicit*/ tuple_slice(py::tuple tup_)
: tup(std::move(tup_)), b(0), e(tup.size()) {}
tuple_slice(py::tuple tup_, int64_t b_)
: tup(std::move(tup_)), b(b_), e(tup.size()) {}
tuple_slice(py::tuple tup_, int64_t b_, int64_t e_)
: tup(std::move(tup_)), b(b_), e(e_) {}
py::detail::tuple_iterator begin() const {
return {tup, static_cast<pybind11::ssize_t>(b)};
}
py::detail::tuple_iterator end() const {
return {tup, static_cast<pybind11::ssize_t>(e)};
}
size_t size() const {
return e - b;
}
py::detail::tuple_accessor operator[](size_t index) const {
return {tup, static_cast<size_t>(b + index)};
}
private:
py::tuple tup;
int64_t b;
int64_t e;
};
inline Stack createStackForSchema(
const FunctionSchema& schema,
const tuple_slice& args,
const py::kwargs& kwargs,
c10::optional<IValue> self) {
size_t all_arguments = (self ? 1 : 0) + args.size() + kwargs.size();
if (all_arguments > schema.arguments().size()) {
throw schema_match_error(c10::str(
schema.name(),
"() expected at most ",
schema.arguments().size(),
" argument(s) but received ",
all_arguments,
" argument(s). Declaration: ",
schema));
}
Stack stack;
stack.reserve(schema.arguments().size());
if (self) {
push(stack, std::move(*self));
}
// First push all positional args.
for (size_t i = 0; i < args.size(); ++i) {
// Use the type information from the schema to convert the PyObject.
push(stack, argumentToIValue(schema, stack.size(), args[i]));
}
// Now for every remaining non-positional argument in the schema, look for it
// in the kwargs dict and push it if found, or use its default value if it
// has one.
size_t consumed_kwargs = 0;
for (size_t i = stack.size(); i < schema.arguments().size(); ++i) {
const auto& arg = schema.arguments()[i];
if (kwargs.contains(arg.name().c_str())) {
push(stack, argumentToIValue(schema, i, kwargs[arg.name().c_str()]));
consumed_kwargs += 1;
} else if (arg.default_value()) {
push(stack, *arg.default_value());
} else {
throw schema_match_error(c10::str(
schema.name(),
"() is missing value for argument '",
arg.name(),
"'. Declaration: ",
schema));
}
}
if (consumed_kwargs != kwargs.size()) {
std::vector<std::string> names;
for (const auto& kwarg : kwargs) {
names.emplace_back(py::cast<std::string>(kwarg.first));
}
throw schema_match_error(schema.findErrorInKwargs(names));
}
return stack;
}
inline py::object createPyObjectForStack(Stack&& stack) {
if (stack.empty()) {
return py::none();
}
// Return a simple value and not a single-element tuple if there is only one
// return value.
if (stack.size() == 1) {
return toPyObject(std::move(stack[0]));
}
// If there is more than one return value, pop them into a py::tuple.
py::tuple return_values(stack.size());
for (size_t ret = 0; ret < return_values.size(); ++ret) {
return_values[ret] = toPyObject(std::move(stack[ret]));
}
return std::move(return_values);
}
// TODO: Remove once we clean up the GraphExecutor usage.
inline Stack evilDeprecatedBadCreateStackDoNotUse(
const py::tuple& tuple,
at::ArrayRef<Value*> inputs,
size_t reserve_extra_space = 0) {
if (tuple.size() != inputs.size()) {
AT_ERROR(
"expected " + std::to_string(inputs.size()) + " inputs, but got " +
std::to_string(tuple.size()));
}
Stack result;
result.reserve(tuple.size() + reserve_extra_space);
for (size_t i = 0; i < inputs.size(); ++i) {
result.push_back(toIValue(std::move(tuple[i]), inputs[i]->type()));
}
return result;
}
// Run `callee`, potentially inserting a CallFunction/CallMethod node into the
// tracing graph.
inline py::object runAndInsertCall(
Function& callee,
tuple_slice args,
py::kwargs kwargs,
c10::optional<IValue> self,
// Lambda that tells this function how to insert `callee` into the graph if
// we're tracing.
std::function<Value*(Graph&, const MatchedSchema& match)> callInserter) {
auto stack = createStackForSchema(
callee.getSchema(), std::move(args), std::move(kwargs), std::move(self));
auto tracing_state = tracer::getTracingState();
if (!tracing_state) {
pybind11::gil_scoped_release no_gil_guard;
// If we're not tracing, just run the callee as normal.
callee.run(stack);
} else {
// If we are tracing, insert the appropriate CallFunction or CallMethod node
// and then run the callee with tracing disabled.
// Get the graph `Value`s that represent the input IValues
auto inputs = last(stack, callee.graph()->inputs().size());
auto input_values =
fmap(inputs, [](const IValue& v) { return tracer::getValueTrace(v); });
TORCH_INTERNAL_ASSERT(callee.getSchema().returns().size() == 1)
auto return_type = callee.getSchema().returns().at(0).type();
auto graph = tracing_state->graph;
std::vector<NamedValue> named_values;
for (Value* v : input_values) {
named_values.emplace_back(v);
}
// Add a call node.
MatchedSchema match = matchSchema(
callee.getSchema(),
tracer::getPythonInterpreterSourceRange(),
*graph,
named_values,
{});
auto output_value = callInserter(*graph, match);
// Actually run the callee. Pause the tracer so that we don't double-add the
// callee nodes.
{
pybind11::gil_scoped_release no_gil_guard;
ResourceGuard guard(tracer::pauseTracing());
callee.run(stack);
}
// Associate the output IValues with the output `Value`s in the graph
tracer::setValueTrace(stack.back(), output_value);
}
TORCH_CHECK(
stack.size() > 0,
"Expected values in the stack after execution but found none");
return toPyObject(std::move(stack.back()));
}
inline py::object invokeScriptFunctionFromPython(
Function& callee,
tuple_slice args,
py::kwargs kwargs) {
return runAndInsertCall(
callee,
args,
kwargs,
/*self=*/c10::nullopt,
[&](Graph& graph, const MatchedSchema& match) {
return graph.insertFunctionCall(&callee, match);
});
}
inline py::object invokeScriptMethodFromPython(
Method& callee,
tuple_slice args,
py::kwargs kwargs) {
auto self = callee.owner()._ivalue();
return runAndInsertCall(
callee.function(),
args,
kwargs,
self,
[&](Graph& graph, const MatchedSchema& match) {
return graph.insertMethodCall(callee.name(), match);
});
}
inline py::object invokeOperatorFromPython(
const std::vector<std::shared_ptr<Operator>>& operations,
py::args args,
py::kwargs kwargs) {
Stack stack;
if (operations.size() == 1) {
const Operator& op = *operations.at(0);
// Create a stack full of the arguments and keyword arguments.
stack = createStackForSchema(
op.schema(), std::move(args), std::move(kwargs), c10::nullopt);
pybind11::gil_scoped_release no_gil_guard;
op.getOperation()(&stack);
} else {
std::vector<schema_match_error> errors;
std::shared_ptr<Operator> found_op = nullptr;
for (const auto& op : operations) {
try {
stack = createStackForSchema(op->schema(), args, kwargs, c10::nullopt);
found_op = op;
break;
} catch (schema_match_error& error) {
errors.push_back(std::move(error));
}
}
if (!found_op) {
std::stringstream ss;
ss << "Overloaded torch operator invoked from Python failed to many any schema:\n";
for (const auto& err : errors) {
ss << err.what() << "\n\n";
}
throw std::runtime_error(ss.str());
}
pybind11::gil_scoped_release no_gil_guard;
found_op->getOperation()(&stack);
}
return createPyObjectForStack(std::move(stack));
}
} // namespace jit
} // namespace torch
| [
"[email protected]"
] | |
b95dfc30fa32eec716e6c255ca1596234d3bc882 | acce8697e43d34466e2bf527e0c1188d21916e9a | /src/pPrimeFactorTester/PrimeFactorTester.h | 3bf12938858b58fd6a7f49fb3f47503a3a58e636 | [] | no_license | crosslore/moos-ivp-yhhuang | ac87b0548ee4aa071fe4cd2d3f89d13c75df5a09 | 1ed0901c222ff21868557f4c55cca1f2b4fa5d9a | refs/heads/master | 2022-11-20T10:22:06.194058 | 2020-07-29T08:09:32 | 2020-07-29T08:09:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,157 | h | /************************************************************/
/* NAME: YH_Huang */
/* ORGN: MIT */
/* FILE: PrimeFactorTester.h */
/* DATE: */
/************************************************************/
#ifndef PrimeFactorTester_HEADER
#define PrimeFactorTester_HEADER
#include "MOOS/libMOOS/MOOSLib.h"
#include <string>
#include <sstream>
#include <iostream>
#include <stdint.h>
#include <cstdlib>
class PrimeFactorTester : public CMOOSApp
{
public:
PrimeFactorTester();
~PrimeFactorTester();
protected: // Standard MOOSApp functions to overload
bool OnNewMail(MOOSMSG_LIST &NewMail);
bool Iterate();
bool OnConnectToServer();
bool OnStartUp();
protected:
void RegisterVariables();
private: // Configuration variables
std::string m_input_str;
bool m_correct;
uint64_t m_input_value;
std::vector<uint64_t> m_input_prime;
uint64_t m_result;
std::string m_output_str;
private: // State variables
};
#endif
| [
"[email protected]"
] | |
85a1c9133d3ed2ee805fa04641bf21d32e680903 | 7a56d4684fd450381898cc86d22f11a1f06afb37 | /QueueEx/QueueEx/Queue.h | a34ce0516fe1814262d369d4be0c6ed46b28e01d | [] | no_license | kingofBokgu/ConsoleEx | de33637f0adca7c223baebf6094c2320d63584e5 | d92aca013b6d034651214bc2c46d922649d027aa | refs/heads/master | 2021-07-14T02:35:08.523022 | 2017-10-14T09:27:01 | 2017-10-14T09:27:01 | 106,915,732 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,243 | h | #include<iostream>
#include<string.h>
#include<crtdbg.h>
#ifndef _DEBUG
#define new new (_CLIENT_BLOCK,_FILE,_LINE)
#endif
using namespace std;
class Node{
public:
char data;
Node *nextNode;
public:
Node();
};
Node::Node()
{
data = '\0';
nextNode = nullptr;
}
//1. Queue 초기화
//2. Queue Node put
//3. Queue Node Get
//4. Queue의 Front 를 나타내는 변수
//5. Queue의 출구를 나타내는 변수
class Queue{
public:
Node m_front;
Node m_rear;
//Node들이 들어 올 버퍼
Node *m_qBuffer;
int m_count;
int m_delCnt;
int m_totalCnt;
public:
Queue(int number);
~Queue();
void Init(int nodeNum);
void Put(Node node);
void Get();
};
Queue::Queue(int number)
{
Init(number);
}
void Queue::Init(int nodeNum)
{
m_front.data ='\0';
m_rear.data ='N';
m_front.nextNode = &m_rear;
m_rear.nextNode = &m_rear;
m_qBuffer = new Node[nodeNum];
m_count = 0;
m_delCnt =0;
m_totalCnt=0;
cout <<"front NextNode :" << m_front.nextNode<<endl;
cout <<"m_rear NextNode:" << m_front.nextNode<<endl;
}
void Queue::Put(Node node)
{
//노드들을 버퍼에 넣고, front와 rear로 위치를 지정해준다.
cout <<m_count<<"노드"<<endl;
m_qBuffer[m_count] = node;
if(m_count ==0)
{
m_front.nextNode = &m_qBuffer[m_count];
m_rear.nextNode = &m_qBuffer[m_count];
m_qBuffer[m_count].nextNode = &m_rear;
}else{
cout<<"count :" <<m_count<<endl;
m_rear.nextNode = &m_qBuffer[m_count];
m_qBuffer[m_count].nextNode = &m_rear;
m_rear.nextNode->nextNode = &m_qBuffer[m_count-1];
}
cout<<"m_rear.nextNode->data :" << m_rear.nextNode->data<<endl;
cout<<"m_rear.nextNode->nextNode->data :" << m_rear.nextNode->nextNode->data<<endl;
m_count++;
}
void Queue::Get()
{
//버퍼에서 나갈 노드를 지정하고 front와 rear의 위치를 바꾼다.
//처음 들어온 노드가 나간다. front로 서치
cout <<"m_delCnt : "<< m_delCnt<<endl;
m_front.nextNode->data ='\0';
m_front.nextNode =nullptr;
m_front.nextNode = &m_qBuffer[m_delCnt+1];
cout<<"m_front.nextNode: "<< m_front.nextNode->data<<endl;
for(int i=m_delCnt; i<m_count;i++)
{
cout <<"m_qBuffer["<<i<<"]:"<<m_qBuffer[i].data<<endl;
}
cout<<endl;
m_delCnt++;
}
Queue::~Queue()
{
delete[] m_qBuffer;
} | [
"[email protected]"
] | |
03799d3693a49782d91aa4577007861892b50bcd | 2964d7c9a9ad7e6603d3fa1a9567feda96d8969a | /IO.cpp | f6c50695b0f7041af5b05f36d1c6711e93f6993b | [] | no_license | retrodump/Wars | a78f424f2fd2ae7c79e170a9b025a826adb35a7d | a39c52b3722df4a06ce63a6b1b4feae96bd2d516 | refs/heads/master | 2021-09-11T01:14:05.988162 | 2018-04-05T13:25:51 | 2018-04-05T13:25:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,841 | cpp | // IO.cpp
#include "IO.h"
#include "Welt.h"
#include "graph.h"
#include "path.h"
Graph graph;
extern Pathfinding leut[ANZMANN];
extern haeuser_class haus[ANZHAUS];
extern pflanzen_class pflanz[ANZPFLANZ];
extern unsigned int scrollx,scrolly,feinx,feiny;
extern long xx,yy,k;
void Input::Scroll(char direction)
{
switch(direction)
{
case UP:if(sy<0) sy=0;else sy=32;
if(sx<0) sx=0;else sx=32;break;
case DOWN:if(sy>0) sy=0;else sy=-32;
if(sx>0) sx=0;else sx=-32;break;
case LEFT:if(sy>0) sy=0;else sy=-32;
if(sx<0) sx=0;else sx=32;break;
case RIGHT:if(sy<0) sy=0;else sy=32;
if(sx>0) sx=0;else sx=-32;break;
}
};
void Input::Scroll_mouse()
{
if(((xPos>=graph.randl+32)&&(xPos<=graph.randr-32)&&(yPos>=graph.rando+32)&&(yPos<=graph.randu-32))||((startsx!=0)||(startsy!=0))||(Rahmen==1))
{
if(sx>0) sx-=4; else if(sx<0) sx+=4;
if(sy>0) sy-=4; else if(sy<0) sy+=4;
} else
{
if(xPos<=graph.randl+32) Scroll(LEFT);
else if(xPos>=graph.randr-32) Scroll(RIGHT);
if(yPos<=graph.rando+32) Scroll(UP);
else if(yPos>=graph.randu-32) Scroll(DOWN);
}
akfeinx+=(sx/8);akfeiny+=(sy/8);
if(akfeinx<0) {akscrollx--;akfeinx=akfeinx+8;}
if(akfeinx>8) {akscrollx++;akfeinx=akfeinx-8;}
if(akfeiny<0) {akscrolly--;akfeiny=akfeiny+8;}
if(akfeiny>8) {akscrolly++;akfeiny=akfeiny-8;}
};
void Input::Calculate_KPos(void)
{
int tex,tey,fx,fy;
tex=xPos%64;tey=yPos%32;tex/=2;
fx=0;fy=0;
if((tey<16)&&(tex<16)) //links oben
{
if(tex+tey<16) fx=-1;
} else
if((tey>16)&&(tex<16)) //links unten
{
tey-=16;
tey=16-tey;
if(tex+tey<16) fy=1;
} else
if((tey>16)&&(tex>16)) //rechts unten
{
tex-=16;
tey-=16;
if(tex+tey>=16) fx=1;
} else
if((tey<16)&&(tex>16)) //Rechts oben
{
tex-=16;
tey=16-tey;
if(tex+tey>=16) fy-=1;
};
KxPos=fx+xPos/64+yPos/32-scrollx;
KyPos=fy-xPos/64+yPos/32-scrolly;
};
void Input::Move(unsigned int lParam)
{
xPos=LOWORD(lParam);
yPos=HIWORD(lParam);
if((startsx==0)&&(startsy==0))
{
if(xPos>graph.randr) xPos=graph.randr;
else if(xPos<graph.randl) xPos=graph.randl;
if(yPos<graph.rando) yPos=graph.rando;
else if(yPos>graph.randu) yPos=graph.randu;
}
else
{
akfeinx=(-(xPos-startsx)/2-(yPos-startsy));
akfeiny=((xPos-startsx)/2-(yPos-startsy));
akscrollx=akfeinx/8+startscx;akfeinx=(akfeinx+startfx)%8;kjfgjz
akscrolly=akfeiny/8+startscy;akfeiny=(akfeiny+startfy)%8;
}
Calculate_KPos();
};
void Input::Update_scroll()
{
scrollx=akscrollx;
scrolly=akscrolly;
feinx=akfeinx;
feiny=akfeiny;
};
void Input::LDown()
{
if(Rahmen==0)
{
RStartX=xPos;
RStartY=yPos;
Rahmen=1;
}
InAction=1;
};
void Input::LUp()
{
int tx,ty;
Rahmen=0;
for(xx=0;xx<ANZMANN;xx++) leut[xx].activ=0;
tx=xPos;ty=yPos;
if(xPos<RStartX)
{
tx=RStartX;RStartX=xPos;
};
if(yPos<RStartY)
{
ty=RStartY;RStartY=yPos;
};
if((tx!=RStartX)&&(ty!=RStartY))
{
for(xx=0;xx<ANZMANN;xx++)
if(leut[xx].basic.vorhanden==1)
if((leut[xx].basic.absx+8>=RStartX)&&(leut[xx].basic.absx+8<=xPos)&&(leut[xx].basic.absy+14>=RStartY)&&(leut[xx].basic.absy-14<=yPos))
leut[xx].activ=1;
};
InAction=0;
};
void Input::MUp()
{
char charbuf[20];
for(xx=0;xx<ANZMANN;xx++)
if(leut[xx].activ==1)
{
screen.SetColor(210,210,255);
switch(rand()%5)
{
case 0:sprintf(charbuf,"Schon dabei!");break;
case 1:sprintf(charbuf,"Mmmh");break;
case 2:sprintf(charbuf,"Okay! ");break;
case 3:sprintf(charbuf,"Bin unterwegs!");break;
case 4:sprintf(charbuf,"Na guut ");break;
}
screen.WriteS(screen.BackBuffer,30,500,charbuf,false);
leut[xx].gotoxy(KxPos,KyPos);
}
InAction=0;
};
void Input::RDown()
{
startsx=xPos;startsy=yPos;
startscx=akscrollx;startscy=akscrolly;
startfx=akfeinx;startfy=akfeiny;
InAction=1;
};
void Input::RUp()
{
startsx=0;startsy=0;InAction=0;
};
| [
"[email protected]"
] | |
68aba96d6a44869f45ebfcbf4ede644471531c2a | 1cdc76b152fc40a5b33f6f160a5b3a429dba1485 | /main.cpp | 9c22591634f8d7ac53034ea9370a8ec8083efd02 | [
"Zlib"
] | permissive | BB-Beta/auplay | 22089a861ccc0ca7f12c535476e6bde64baf25d5 | 8ff1acd848c04b14b87ea2a15e5eb5f3f985f4c1 | refs/heads/master | 2021-05-27T13:28:27.444589 | 2011-07-12T15:41:48 | 2011-07-12T15:41:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,252 | cpp |
#include <CoreFoundation/CoreFoundation.h>
#include <iostream>
#include "AudioPlayer.h"
int main() {
const char *fn = "music.mp3";
AudioPlayer* ap = AudioPlayer::file(fn);
if(!ap) {
std::cerr << "Error loading audio" << std::endl;
return 1;
}
ap->play();
char indic[] = { '|', '/', '-', '\\' };
int i = 0;
do { // 5
// std::cout << "Loop." << std::endl;
CFRunLoopRunInMode ( // 6
kCFRunLoopDefaultMode, // 7
0.25, // 8
false // 9
);
std::cout << "\rPlaying.. " << indic[i];
double d = ap->progress();
double min = floor(d/60);
double sec = floor(fmod(d,60));
std::cout << " " << min << ":" << sec;
d = ap->duration();
min = floor(d/60);
sec = floor(fmod(d,60));
std::cout << " " << min << ":" << sec;
std::cout << std::flush;
if(ap->progress() > 5) {
ap->seek(rand()/(float(RAND_MAX))*ap->duration());
}
i = (i+1)%4;
} while (ap->isPlaying());
delete ap;
#if 0
// std::cout << "dataformat " << aqData.mDataFormat << std::endl;
std::cout << "bufferbytesize " << aqData.bufferByteSize << std::endl;
std::cout << "numpacketstoread " << aqData.mNumPacketsToRead << std::endl;
std::cout << "maxpacketsz " << maxPacketSize << std::endl;
std::cout << "df bpp " << aqData.mDataFormat.mBytesPerPacket << std::endl;
std::cout << "df fpp " << aqData.mDataFormat.mFramesPerPacket << std::endl;
unsigned int running =0;
sz = 4;
status = AudioFileGetProperty ( // 9
aqData.mAudioFile, // 10
kAudioQueueProperty_IsRunning , // 11
&running, // 12
&sz // 13
);
std::cout << "Running: " << running << std::endl;
running =0;
sz = 4;
status = AudioFileGetProperty ( // 9
aqData.mAudioFile, // 10
kAudioQueueProperty_IsRunning , // 11
&running, // 12
&sz // 13
);
std::cout << "Running: " << running << std::endl;
return 0;
do { // 5
// std::cout << "Loop." << std::endl;
CFRunLoopRunInMode ( // 6
kCFRunLoopDefaultMode, // 7
0.25, // 8
false // 9
);
} while (aqData.mIsRunning);
CFRunLoopRunInMode ( // 10
kCFRunLoopDefaultMode,
1,
false
);
std::cout << "Done." << std::endl;
return 0;
#endif
}
| [
"[email protected]"
] | |
03be27307579aa013347d3a0366ce6c0643ba08a | 35e8269ff96c6ca1d77d2a6ac251bf9c91120b98 | /src/main.cpp | 3f6d21d6db30aa3204937fba3c58c5935e0d6a39 | [
"Apache-2.0"
] | permissive | edmBernard/rename-cpp | d5fee03542d1d009d440699670f0ce00c9e99aae | 833e835ea60bc329beab9feffcfa6aa1090f2582 | refs/heads/master | 2023-04-27T18:03:11.901963 | 2021-05-17T19:04:47 | 2021-05-17T19:04:47 | 306,844,968 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,828 | cpp | // Tool to rename files based on Regex
#include <filesystem>
#include <regex>
#include <string>
#include <vector>
#include <cxxopts.hpp>
#include <fmt/color.h>
#include <fmt/core.h>
#include <spdlog/cfg/env.h>
#include <spdlog/spdlog.h>
namespace fs = std::filesystem;
int main(int argc, char **argv) {
try {
spdlog::cfg::load_env_levels();
// =================================================================================================
// CLI
cxxopts::Options options(argv[0], "Tool to rename files based on Regex");
options.positional_help("regex format directory").show_positional_help();
// clang-format off
options.add_options()
("h,help", "Print help")
("no-dry-run", "Actually apply the changes")
("d,directory", "The directory containing files to rename", cxxopts::value<std::string>(), "DIRECTORY")
("regex", "The regular expression that will be matched against the filename", cxxopts::value<std::string>())
("format", "The regex replacement format string", cxxopts::value<std::string>())
("v,verbose", "Print names of files successfully renamed")
("r,recursive", "Recursively rename file in subfolder, it don't rename folder")
("no-color", "Disable color in verbose mode")
;
// clang-format on
options.parse_positional({"regex", "format", "directory"});
auto result = options.parse(argc, argv);
if (result.count("help")) {
std::cout << options.help() << std::endl;
return 0;
}
if (!result.count("directory")) {
spdlog::error("Directory argument required");
return 1;
}
fs::path directory(result["directory"].as<std::string>());
if (!fs::exists(directory)) {
spdlog::error("Specified directory does not exist");
return 1;
}
if (!fs::is_directory(directory)) {
spdlog::error("Specified directory is not a directory");
return 1;
}
if (!result.count("regex")) {
spdlog::error("Missing input regex");
return 1;
}
if (!result.count("format")) {
spdlog::error("Missing format regex, if you tried to pass empty string use --format=\"\" instead.");
return 1;
}
spdlog::debug("CommandLine Argument passed: ");
spdlog::debug(" directory : {}", result["directory"].as<std::string>());
spdlog::debug(" regex : {}", result["regex"].as<std::string>());
spdlog::debug(" format : {}", result["format"].as<std::string>());
spdlog::debug(" recursive : {}", result["recursive"].count());
spdlog::debug(" no-dry-run : {}", result["no-dry-run"].count());
spdlog::debug(" no-color : {}", result["no-color"].count());
const std::regex rule(result["regex"].as<std::string>());
const std::string format(result["format"].as<std::string>());
bool noRenamingDone = true;
// we store filename before changing them to avoid multiple change on the same file
std::vector<fs::path> filelist;
if (result.count("recursive")) {
for (auto& p : fs::recursive_directory_iterator(directory)) {
filelist.push_back(p);
}
} else {
for (auto& p : fs::directory_iterator(directory)) {
filelist.push_back(p);
}
}
auto getRelativePath = [=](auto path) { return fs::relative(path, fs::absolute(directory)); };
for (auto &p : filelist) {
fs::path pathAbsolute = fs::absolute(p);
if (!fs::is_regular_file(pathAbsolute)) {
continue;
}
const std::string newFilename = std::regex_replace(pathAbsolute.filename().string(), rule, format);
const fs::path newPath = pathAbsolute.parent_path() / newFilename;
if (pathAbsolute != newPath) {
if (result.count("verbose")) {
if (result.count("no-color")) {
fmt::print("{:40} will be renamed in {}\n", getRelativePath(pathAbsolute).string(), getRelativePath(newPath).string());
} else {
fmt::print(fg(fmt::color::steel_blue), "{:40}", getRelativePath(pathAbsolute).string());
fmt::print(" will be renamed in ");
fmt::print(fg(fmt::color::aqua), "{}\n", getRelativePath(newPath).string());
}
}
noRenamingDone = false;
if (result.count("no-dry-run")) {
fs::rename(pathAbsolute, newPath);
}
}
}
if (noRenamingDone) {
spdlog::info("No renaming to do with current parameters.");
}
if (!result.count("no-dry-run")) {
spdlog::info("If you are sure you want to apply the changes, run this command with the --no-dry-run option.");
}
} catch (const cxxopts::OptionException &e) {
spdlog::error("Parsing options : {}", e.what());
return 1;
} catch (const std::exception &e) {
spdlog::error("{}", e.what());
return 1;
}
return 0;
}
| [
"[email protected]"
] | |
cce4509a76bf01c311f872f985b48c45c3cdffc5 | ac1ae1b456c36f2dfc97b8d38d5da742176e7516 | /2014/s2/adds/assignment2/Referee.h | 1e0e95c0f64c42e6ce3e3d175273896f0ee6a41a | [] | no_license | OniityanH/project6 | c5ff91129ba89c33fdb608d789dfe94faff1b6a3 | d4d3ba639e400ec8be1dad6d74e9b4094d6403e0 | refs/heads/master | 2020-05-29T09:14:51.538903 | 2018-03-09T14:36:35 | 2018-03-09T14:36:35 | 70,125,425 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 309 | h | #ifndef REFEREE_H
#define REFEREE_H
#include "Referee.h"
#include<iostream>
#include<string>
#include"human.h"
using namespace std;
class Referee
{
public:
Referee();
char compare(char H_moves,char C_moves);
private:
char H_element;
char C_element;
};
#endif // REFEREE_H
| [
"a1657884@21812873-c04a-464d-95cf-c10f675487a6"
] | a1657884@21812873-c04a-464d-95cf-c10f675487a6 |
c45516ab72378c708523f78d78e23d43fc3720f2 | 8e9e8d1273438e38271b4b55e87be7b91a657c5f | /src/server/game/Instances/InstanceScript.cpp | be6d4d3148c61b15bb52fd8e6d1592b7dd13c280 | [] | no_license | kmN666/Leroy | 43df8105252851e4e756cf36e02e0ffd674cce15 | 189c990d7227d0aa4ad21f20c319d49ccaeb262e | refs/heads/master | 2020-12-24T15:23:25.403594 | 2012-08-01T08:42:58 | 2012-08-01T08:42:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,078 | cpp | /*
* Copyright (C) 2012 DeadCore <https://bitbucket.org/selectorcore/deadcore-private>
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "InstanceScript.h"
#include "DatabaseEnv.h"
#include "Map.h"
#include "Player.h"
#include "GameObject.h"
#include "Creature.h"
#include "CreatureAI.h"
#include "Log.h"
#include "LFGMgr.h"
void InstanceScript::SaveToDB()
{
std::string data = GetSaveData();
if (data.empty())
return;
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_UPD_INSTANCE_DATA);
stmt->setUInt32(0, GetCompletedEncounterMask());
stmt->setString(1, data);
stmt->setUInt32(2, instance->GetInstanceId());
CharacterDatabase.Execute(stmt);
}
void InstanceScript::HandleGameObject(uint64 GUID, bool open, GameObject* go)
{
if (!go)
go = instance->GetGameObject(GUID);
if (go)
go->SetGoState(open ? GO_STATE_ACTIVE : GO_STATE_READY);
else
sLog->outDebug(LOG_FILTER_TSCR, "TSCR: InstanceScript: HandleGameObject failed");
}
bool InstanceScript::IsEncounterInProgress() const
{
for (std::vector<BossInfo>::const_iterator itr = bosses.begin(); itr != bosses.end(); ++itr)
if (itr->state == IN_PROGRESS)
return true;
return false;
}
void InstanceScript::LoadMinionData(const MinionData* data)
{
while (data->entry)
{
if (data->bossId < bosses.size())
minions.insert(std::make_pair(data->entry, MinionInfo(&bosses[data->bossId])));
++data;
}
sLog->outDebug(LOG_FILTER_TSCR, "InstanceScript::LoadMinionData: " UI64FMTD " minions loaded.", uint64(minions.size()));
}
void InstanceScript::LoadDoorData(const DoorData* data)
{
while (data->entry)
{
if (data->bossId < bosses.size())
doors.insert(std::make_pair(data->entry, DoorInfo(&bosses[data->bossId], data->type, BoundaryType(data->boundary))));
++data;
}
sLog->outDebug(LOG_FILTER_TSCR, "InstanceScript::LoadDoorData: " UI64FMTD " doors loaded.", uint64(doors.size()));
}
void InstanceScript::UpdateMinionState(Creature* minion, EncounterState state)
{
switch (state)
{
case NOT_STARTED:
if (!minion->isAlive())
minion->Respawn();
else if (minion->isInCombat())
minion->AI()->EnterEvadeMode();
break;
case IN_PROGRESS:
if (!minion->isAlive())
minion->Respawn();
else if (!minion->getVictim())
minion->AI()->DoZoneInCombat();
break;
default:
break;
}
}
void InstanceScript::UpdateDoorState(GameObject* door)
{
DoorInfoMap::iterator lower = doors.lower_bound(door->GetEntry());
DoorInfoMap::iterator upper = doors.upper_bound(door->GetEntry());
if (lower == upper)
return;
bool open = true;
for (DoorInfoMap::iterator itr = lower; itr != upper && open; ++itr)
{
switch (itr->second.type)
{
case DOOR_TYPE_ROOM:
open = (itr->second.bossInfo->state != IN_PROGRESS);
break;
case DOOR_TYPE_PASSAGE:
open = (itr->second.bossInfo->state == DONE);
break;
case DOOR_TYPE_SPAWN_HOLE:
open = (itr->second.bossInfo->state == IN_PROGRESS);
break;
default:
break;
}
}
door->SetGoState(open ? GO_STATE_ACTIVE : GO_STATE_READY);
}
void InstanceScript::AddDoor(GameObject* door, bool add)
{
DoorInfoMap::iterator lower = doors.lower_bound(door->GetEntry());
DoorInfoMap::iterator upper = doors.upper_bound(door->GetEntry());
if (lower == upper)
return;
for (DoorInfoMap::iterator itr = lower; itr != upper; ++itr)
{
DoorInfo const& data = itr->second;
if (add)
{
data.bossInfo->door[data.type].insert(door);
switch (data.boundary)
{
default:
case BOUNDARY_NONE:
break;
case BOUNDARY_N:
case BOUNDARY_S:
data.bossInfo->boundary[data.boundary] = door->GetPositionX();
break;
case BOUNDARY_E:
case BOUNDARY_W:
data.bossInfo->boundary[data.boundary] = door->GetPositionY();
break;
case BOUNDARY_NW:
case BOUNDARY_SE:
data.bossInfo->boundary[data.boundary] = door->GetPositionX() + door->GetPositionY();
break;
case BOUNDARY_NE:
case BOUNDARY_SW:
data.bossInfo->boundary[data.boundary] = door->GetPositionX() - door->GetPositionY();
break;
}
}
else
data.bossInfo->door[data.type].erase(door);
}
if (add)
UpdateDoorState(door);
}
void InstanceScript::AddMinion(Creature* minion, bool add)
{
MinionInfoMap::iterator itr = minions.find(minion->GetEntry());
if (itr == minions.end())
return;
if (add)
itr->second.bossInfo->minion.insert(minion);
else
itr->second.bossInfo->minion.erase(minion);
}
bool InstanceScript::SetBossState(uint32 id, EncounterState state)
{
if (id < bosses.size())
{
BossInfo* bossInfo = &bosses[id];
if (bossInfo->state == TO_BE_DECIDED) // loading
{
bossInfo->state = state;
//sLog->outError("Inialize boss %u state as %u.", id, (uint32)state);
return false;
}
else
{
if (bossInfo->state == state)
return false;
if (state == DONE)
for (MinionSet::iterator i = bossInfo->minion.begin(); i != bossInfo->minion.end(); ++i)
if ((*i)->isWorldBoss() && (*i)->isAlive())
return false;
bossInfo->state = state;
SaveToDB();
}
for (uint32 type = 0; type < MAX_DOOR_TYPES; ++type)
for (DoorSet::iterator i = bossInfo->door[type].begin(); i != bossInfo->door[type].end(); ++i)
UpdateDoorState(*i);
for (MinionSet::iterator i = bossInfo->minion.begin(); i != bossInfo->minion.end(); ++i)
UpdateMinionState(*i, state);
return true;
}
return false;
}
std::string InstanceScript::LoadBossState(const char * data)
{
if (!data)
return NULL;
std::istringstream loadStream(data);
uint32 buff;
uint32 bossId = 0;
for (std::vector<BossInfo>::iterator i = bosses.begin(); i != bosses.end(); ++i, ++bossId)
{
loadStream >> buff;
if (buff < TO_BE_DECIDED)
SetBossState(bossId, (EncounterState)buff);
}
return loadStream.str();
}
std::string InstanceScript::GetBossSaveData()
{
std::ostringstream saveStream;
for (std::vector<BossInfo>::iterator i = bosses.begin(); i != bosses.end(); ++i)
saveStream << (uint32)i->state << ' ';
return saveStream.str();
}
void InstanceScript::DoUseDoorOrButton(uint64 uiGuid, uint32 uiWithRestoreTime, bool bUseAlternativeState)
{
if (!uiGuid)
return;
GameObject* go = instance->GetGameObject(uiGuid);
if (go)
{
if (go->GetGoType() == GAMEOBJECT_TYPE_DOOR || go->GetGoType() == GAMEOBJECT_TYPE_BUTTON)
{
if (go->getLootState() == GO_READY)
go->UseDoorOrButton(uiWithRestoreTime, bUseAlternativeState);
else if (go->getLootState() == GO_ACTIVATED)
go->ResetDoorOrButton();
}
else
sLog->outError("SD2: Script call DoUseDoorOrButton, but gameobject entry %u is type %u.", go->GetEntry(), go->GetGoType());
}
}
void InstanceScript::DoRespawnGameObject(uint64 uiGuid, uint32 uiTimeToDespawn)
{
if (GameObject* go = instance->GetGameObject(uiGuid))
{
//not expect any of these should ever be handled
if (go->GetGoType() == GAMEOBJECT_TYPE_FISHINGNODE || go->GetGoType() == GAMEOBJECT_TYPE_DOOR ||
go->GetGoType() == GAMEOBJECT_TYPE_BUTTON || go->GetGoType() == GAMEOBJECT_TYPE_TRAP)
return;
if (go->isSpawned())
return;
go->SetRespawnTime(uiTimeToDespawn);
}
}
void InstanceScript::DoUpdateWorldState(uint32 uiStateId, uint32 uiStateData)
{
Map::PlayerList const& lPlayers = instance->GetPlayers();
if (!lPlayers.isEmpty())
{
for (Map::PlayerList::const_iterator itr = lPlayers.begin(); itr != lPlayers.end(); ++itr)
if (Player* player = itr->getSource())
player->SendUpdateWorldState(uiStateId, uiStateData);
}
else
sLog->outDebug(LOG_FILTER_TSCR, "TSCR: DoUpdateWorldState attempt send data but no players in map.");
}
// Send Notify to all players in instance
void InstanceScript::DoSendNotifyToInstance(char const* format, ...)
{
InstanceMap::PlayerList const& players = instance->GetPlayers();
if (!players.isEmpty())
{
va_list ap;
va_start(ap, format);
char buff[1024];
vsnprintf(buff, 1024, format, ap);
va_end(ap);
for (Map::PlayerList::const_iterator i = players.begin(); i != players.end(); ++i)
if (Player* player = i->getSource())
if (WorldSession* session = player->GetSession())
session->SendNotification("%s", buff);
}
}
// Complete Achievement for all players in instance
void InstanceScript::DoCompleteAchievement(uint32 achievement)
{
AchievementEntry const* pAE = sAchievementStore.LookupEntry(achievement); // Fix by Deda Gates.
Map::PlayerList const &PlayerList = instance->GetPlayers();
if (!pAE)
{
sLog->outError("TSCR: DoCompleteAchievement called for not existing achievement %u", achievement);
return;
}
if (!PlayerList.isEmpty())
for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i)
if (Player *pPlayer = i->getSource())
pPlayer->CompletedAchievement(pAE);
}
// Update Achievement Criteria for all players in instance
void InstanceScript::DoUpdateAchievementCriteria(AchievementCriteriaTypes type, uint32 miscValue1 /*= 0*/, uint32 miscValue2 /*= 0*/, Unit* unit /*= NULL*/)
{
Map::PlayerList const &PlayerList = instance->GetPlayers();
if (!PlayerList.isEmpty())
for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i)
if (Player* player = i->getSource())
player->UpdateAchievementCriteria(type, miscValue1, miscValue2, unit);
}
// Start timed achievement for all players in instance
void InstanceScript::DoStartTimedAchievement(AchievementCriteriaTimedTypes type, uint32 entry)
{
Map::PlayerList const &PlayerList = instance->GetPlayers();
if (!PlayerList.isEmpty())
for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i)
if (Player* player = i->getSource())
player->GetAchievementMgr().StartTimedAchievement(type, entry);
}
// Stop timed achievement for all players in instance
void InstanceScript::DoStopTimedAchievement(AchievementCriteriaTimedTypes type, uint32 entry)
{
Map::PlayerList const &PlayerList = instance->GetPlayers();
if (!PlayerList.isEmpty())
for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i)
if (Player* player = i->getSource())
player->GetAchievementMgr().RemoveTimedAchievement(type, entry);
}
// Remove Auras due to Spell on all players in instance
void InstanceScript::DoRemoveAurasDueToSpellOnPlayers(uint32 spell)
{
Map::PlayerList const& PlayerList = instance->GetPlayers();
if (!PlayerList.isEmpty())
{
for (Map::PlayerList::const_iterator itr = PlayerList.begin(); itr != PlayerList.end(); ++itr)
{
if (Player* player = itr->getSource())
{
player->RemoveAurasDueToSpell(spell);
if (Pet* pet = player->GetPet())
pet->RemoveAurasDueToSpell(spell);
}
}
}
}
// Cast spell on all players in instance
void InstanceScript::DoCastSpellOnPlayers(uint32 spell)
{
Map::PlayerList const &PlayerList = instance->GetPlayers();
if (!PlayerList.isEmpty())
for (Map::PlayerList::const_iterator i = PlayerList.begin(); i != PlayerList.end(); ++i)
if (Player* player = i->getSource())
player->CastSpell(player, spell, true);
}
bool InstanceScript::CheckAchievementCriteriaMeet(uint32 criteria_id, Player const* /*source*/, Unit const* /*target*/ /*= NULL*/, uint32 /*miscvalue1*/ /*= 0*/)
{
sLog->outError("Achievement system call InstanceScript::CheckAchievementCriteriaMeet but instance script for map %u not have implementation for achievement criteria %u",
instance->GetId(), criteria_id);
return false;
}
void InstanceScript::SendEncounterUnit(uint32 type, Unit* unit /*= NULL*/, uint8 param1 /*= 0*/, uint8 param2 /*= 0*/)
{
// size of this packet is at most 15 (usually less)
WorldPacket data(SMSG_UPDATE_INSTANCE_ENCOUNTER_UNIT, 15);
data << uint32(type);
switch (type)
{
case ENCOUNTER_FRAME_ENGAGE:
case ENCOUNTER_FRAME_DISENGAGE:
case ENCOUNTER_FRAME_UPDATE_PRIORITY:
data.append(unit->GetPackGUID());
data << uint8(param1);
break;
case ENCOUNTER_FRAME_ADD_TIMER:
case ENCOUNTER_FRAME_ENABLE_OBJECTIVE:
case ENCOUNTER_FRAME_DISABLE_OBJECTIVE:
data << uint8(param1);
break;
case ENCOUNTER_FRAME_UPDATE_OBJECTIVE:
data << uint8(param1);
data << uint8(param2);
break;
case ENCOUNTER_FRAME_UNK7:
default:
break;
}
instance->SendToPlayers(&data);
}
void InstanceScript::UpdateEncounterState(EncounterCreditType type, uint32 creditEntry, Unit* source)
{
DungeonEncounterList const* encounters = sObjectMgr->GetDungeonEncounterList(instance->GetId(), instance->GetDifficulty());
if (!encounters)
return;
for (DungeonEncounterList::const_iterator itr = encounters->begin(); itr != encounters->end(); ++itr)
{
if ((*itr)->creditType == type && (*itr)->creditEntry == creditEntry)
{
completedEncounters |= 1 << (*itr)->dbcEntry->encounterIndex;
sLog->outDebug(LOG_FILTER_TSCR, "Instance %s (instanceId %u) completed encounter %s", instance->GetMapName(), instance->GetInstanceId(), (*itr)->dbcEntry->encounterName[0]);
if (uint32 dungeonId = (*itr)->lastEncounterDungeon)
{
Map::PlayerList const& players = instance->GetPlayers();
if (!players.isEmpty())
for (Map::PlayerList::const_iterator i = players.begin(); i != players.end(); ++i)
if (Player* player = i->getSource())
if (!source || player->IsAtGroupRewardDistance(source))
sLFGMgr->RewardDungeonDoneFor(dungeonId, player);
}
return;
}
}
}
| [
"[email protected]"
] | |
11ff95e70b510b51c7de769855b8a97eda21cee5 | 0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8 | /CS AdminKit/development2/include/boost/filesystem/operations.hpp | 476bbd46f58ba636a5eb8c4b0dafe822a2be13a7 | [] | no_license | seth1002/antivirus-1 | 9dfbadc68e16e51f141ac8b3bb283c1d25792572 | 3752a3b20e1a8390f0889f6192ee6b851e99e8a4 | refs/heads/master | 2020-07-15T00:30:19.131934 | 2016-07-21T13:59:11 | 2016-07-21T13:59:11 | null | 0 | 0 | null | null | null | null | ISO-8859-9 | C++ | false | false | 5,286 | hpp | // boost/filesystem/directory.hpp ------------------------------------------//
// Copyright © 2002, 2003 Beman Dawes
// Copyright © 2002 Jan Langer
// Copyright © 2001 Dietmar Kühl
//
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy
// at http://www.boost.org/LICENSE_1_0.txt)
// See library home page at http://www.boost.org/libs/filesystem
//----------------------------------------------------------------------------//
#ifndef BOOST_FILESYSTEM_DIRECTORY_HPP
#define BOOST_FILESYSTEM_DIRECTORY_HPP
#include <boost/filesystem/path.hpp> // includes <boost/filesystem/config.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/iterator.hpp>
#include <string>
#include <ctime>
#include <boost/config/abi_prefix.hpp> // must be the last header
# ifdef BOOST_NO_STDC_NAMESPACE
namespace std { using ::time_t; }
# endif
//----------------------------------------------------------------------------//
namespace boost
{
namespace filesystem
{
// query functions ---------------------------------------------------------//
BOOST_FILESYSTEM_DECL bool exists( const path & ph );
BOOST_FILESYSTEM_DECL bool symbolic_link_exists( const path & ph );
BOOST_FILESYSTEM_DECL bool is_directory( const path & ph );
// VC++ 7.0 and earlier has a serious namespace bug that causes a clash
// between boost::filesystem::is_empty and the unrelated type trait
// boost::is_empty. The workaround for those who must use broken versions
// of VC++ is to use the function _is_empty. All others should use the
// correct is_empty name.
BOOST_FILESYSTEM_DECL bool _is_empty( const path & ph ); // deprecated
# if !defined( BOOST_MSVC ) || BOOST_MSVC > 1300
inline bool is_empty( const path & ph ) { return _is_empty( ph ); }
# endif
BOOST_FILESYSTEM_DECL std::time_t last_write_time( const path & ph );
BOOST_FILESYSTEM_DECL void last_write_time( const path & ph, const std::time_t new_time );
// operations --------------------------------------------------------------//
BOOST_FILESYSTEM_DECL void create_directory( const path & directory_ph );
BOOST_FILESYSTEM_DECL bool remove( const path & ph );
BOOST_FILESYSTEM_DECL unsigned long remove_all( const path & ph );
BOOST_FILESYSTEM_DECL void rename( const path & from_path,
const path & to_path );
BOOST_FILESYSTEM_DECL void copy_file( const path & from_file_ph,
const path & to_file_ph );
BOOST_FILESYSTEM_DECL path current_path();
BOOST_FILESYSTEM_DECL const path & initial_path();
BOOST_FILESYSTEM_DECL path system_complete( const path & ph );
BOOST_FILESYSTEM_DECL path complete( const path & ph, const path & base = initial_path() );
// directory_iterator helpers ----------------------------------------------//
// forwarding functions avoid need for BOOST_FILESYSTEM_DECL for class
// directory_iterator, and so avoid iterator_facade DLL template problems
namespace detail
{
class dir_itr_imp;
// shared_ptr provides shallow-copy semantics required for InputIterators
typedef boost::shared_ptr< dir_itr_imp > dir_itr_imp_ptr;
BOOST_FILESYSTEM_DECL void dir_itr_init( dir_itr_imp_ptr & m_imp,
const path & dir_path );
BOOST_FILESYSTEM_DECL path & dir_itr_dereference(
const dir_itr_imp_ptr & m_imp );
BOOST_FILESYSTEM_DECL void dir_itr_increment( dir_itr_imp_ptr & m_imp );
} // namespace detail
// directory_iterator ------------------------------------------------------//
class directory_iterator
: public boost::iterator_facade<
directory_iterator,
path,
boost::single_pass_traversal_tag >
{
public:
directory_iterator(){} // creates the "end" iterator
explicit directory_iterator( const path & p )
{ detail::dir_itr_init( m_imp, p ); }
/*
The *r++ requirement doesn't appear to apply to the new single_pass_traversal category
Thus I'm leaving the proxy out pending confirmation from the N1477 authors
struct path_proxy // allows *r++ to work, as required by 24.1.1
{
path pv;
explicit path_proxy( const path & p ) : pv(p) {}
path operator*() const { return pv; }
};
path_proxy operator++(int)
{
path_proxy pp( m_deref() );
++*this;
return pp;
}
*/
private:
detail::dir_itr_imp_ptr m_imp;
friend class boost::iterator_core_access;
reference dereference() const
{ return detail::dir_itr_dereference( m_imp ); }
void increment()
{ detail::dir_itr_increment( m_imp ); }
bool equal( const directory_iterator & rhs ) const
{ return m_imp == rhs.m_imp; }
};
} // namespace filesystem
} // namespace boost
#include <boost/config/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
#endif // BOOST_FILESYSTEM_DIRECTORY_HPP
| [
"[email protected]"
] | |
734e0fb23e48a3c710f10001ff1d869982b82fbb | 0bd092c0dacfaefbe203383dd5621c4a474a4524 | /Snake/SpriteRender.h | 56b9eea791b7c3111160c861106dbe460202d088 | [] | no_license | CookiesChen/OpenGL-Snake | 49478123594eccac90092e82c08b3ffd78376e1b | 7d35365f2b6d8c8e0405e0f8de4a1fc8c3654c45 | refs/heads/master | 2020-05-27T16:04:34.623418 | 2019-05-26T14:27:20 | 2019-05-26T14:27:20 | 188,692,464 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 700 | h | #ifndef SPRITE_RENDERER_H
#define SPRITE_RENDERER_H
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "Texture.h"
#include "Shader.h"
#include "Model.h"
class SpriteRender
{
public:
// Constructor (inits shaders/shapes)
SpriteRender(Shader& shader);
// Destructor
~SpriteRender();
// Renders a defined quad textured with given sprite
void DrawSprite(Model& myModel, glm::vec3 position, GLfloat scale_factor, GLint direction);
private:
// Render state
Shader shader;
GLuint quadVAO;
// Initializes and configures the quad's buffer and vertex attributes
void initRenderData();
};
#endif | [
"[email protected]"
] | |
3e057d10401dae64c8a569e4a2fcf19d953377dd | 53436ae6ea4741ae28799167406f9b2a9b3dd0d1 | /src/RcppExports.cpp | 1a1b395ece2a0731efbb50fc1d3d67c1ea95ee69 | [
"MIT"
] | permissive | nt-williams/formatix | db91723dcce625d8caedd8549e2bbcfd4a4b704b | 5d7ff39b1569d74097c99b33090c3b907a7e9512 | refs/heads/master | 2020-12-18T11:44:20.730117 | 2020-03-31T17:12:10 | 2020-03-31T17:12:10 | 235,367,322 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 821 | cpp | // Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
// DataFrameToList
List DataFrameToList(DataFrame df);
RcppExport SEXP _formatix_DataFrameToList(SEXP dfSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< DataFrame >::type df(dfSEXP);
rcpp_result_gen = Rcpp::wrap(DataFrameToList(df));
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_formatix_DataFrameToList", (DL_FUNC) &_formatix_DataFrameToList, 1},
{NULL, NULL, 0}
};
RcppExport void R_init_formatix(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}
| [
"[email protected]"
] | |
d8713c357205fe100a1107cda36f360b661d4431 | c65f5b2e5c01c946a363deec95524a6a356f20c3 | /tensorflow/lite/delegates/gpu/metal/kernels/max_unpooling.cc | 77379576ab9aad3c9f2194ff885663bb62f82245 | [
"Apache-2.0"
] | permissive | harryboneuk/tensorflow | 776b5b721934773018dea1095d204e466215cc76 | d514a6c13f076b1cdc2fa5c0b3494e37e5c94d71 | refs/heads/master | 2023-01-21T11:26:52.356388 | 2020-12-03T17:43:27 | 2020-12-03T17:43:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,383 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/delegates/gpu/metal/kernels/max_unpooling.h"
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "absl/strings/substitute.h"
#include "tensorflow/lite/delegates/gpu/common/model.h"
#include "tensorflow/lite/delegates/gpu/common/operations.h"
#include "tensorflow/lite/delegates/gpu/common/shape.h"
#include "tensorflow/lite/delegates/gpu/common/types.h"
#include "tensorflow/lite/delegates/gpu/common/util.h"
#include "tensorflow/lite/delegates/gpu/metal/compute_task_descriptor.h"
namespace tflite {
namespace gpu {
namespace metal {
namespace {
std::string GetMaxUnpoolingCode(const HW& kernel_size) {
std::string shader_source = R"(
#include <metal_stdlib>
using namespace metal;
constant int window_w = $0;
struct uniforms {
int2 src_size;
int2 dst_size;
int2 stride;
int2 offset;
};
$$0
kernel void ComputeFunction(
$$1
uint3 gid[[thread_position_in_grid]]) {
int X = static_cast<int>(gid.x);
int Y = static_cast<int>(gid.y);
if (X >= params.dst_size.x || Y >= params.dst_size.y) {
return;
}
int src_x = (X + params.offset.x) / params.stride.x;
int src_y = (Y + params.offset.y) / params.stride.y;
bool outside = src_x < 0 || src_y < 0 ||
src_x >= params.src_size.x || src_y >= params.src_size.y;
int src_index = (gid.z * params.src_size.y + src_y) * params.src_size.x + src_x;
int linear_index = (gid.z * params.dst_size.y + Y) * params.dst_size.x + X;
int4 indexes = outside ? int4(0) : int4(src_indices_buffer[src_index]);
FLT4 src_color = outside ? FLT4(0.0f) : src_buffer[src_index];
int t_x = X - (src_x * params.stride.x - params.offset.x);
int t_y = Y - (src_y * params.stride.y - params.offset.y);
int t_index = t_y * window_w + t_x;
FLT4 value;
value.x = t_index == indexes.x ? src_color.x : 0.0;
value.y = t_index == indexes.y ? src_color.y : 0.0;
value.z = t_index == indexes.z ? src_color.z : 0.0;
value.w = t_index == indexes.w ? src_color.w : 0.0;
$$2
output_buffer[linear_index] = value;
}
)";
return absl::Substitute(shader_source, kernel_size.w);
}
} // namespace
ComputeTaskDescriptor MaxUnpooling(const MaxUnpooling2DAttributes& params) {
ComputeTaskDescriptor desc;
desc.shader_source = GetMaxUnpoolingCode(params.kernel);
desc.AddSrcTensor("src_buffer");
desc.AddSrcTensor("src_indices_buffer");
desc.AddDstTensor("output_buffer");
desc.uniform_buffers = {
{"constant uniforms& params",
[params](const std::vector<BHWC>& src_shapes,
const std::vector<BHWC>& dst_shapes) {
std::vector<int> uniform_params{
src_shapes[0].w,
src_shapes[0].h,
dst_shapes[0].w,
dst_shapes[0].h,
params.strides.w,
params.strides.h,
params.padding.prepended.w,
params.padding.prepended.h,
};
return GetByteBuffer(uniform_params);
}},
};
desc.resize_function = [params](const std::vector<BHWC>& src_shapes,
const std::vector<BHWC>& dst_shapes) {
const uint3 groups_size{16, 16, 1};
int groups_x = DivideRoundUp(dst_shapes[0].w, groups_size.x);
int groups_y = DivideRoundUp(dst_shapes[0].h, groups_size.y);
int groups_z = DivideRoundUp(dst_shapes[0].c, 4);
return std::make_pair(groups_size, uint3{groups_x, groups_y, groups_z});
};
return desc;
}
} // namespace metal
} // namespace gpu
} // namespace tflite
| [
"[email protected]"
] | |
e8894ba4f804db003ea76d7dbf2d8a2f0d06a76e | a964c0239d4c5663c85bfb067db385757b5227d7 | /SnowScene/Sky.cpp | 21ebb314f9835a31a461a849a3ba9e2b119877e5 | [] | no_license | HuangJavier/3D-Base | 286275cd587a59799782775182951dfaf9fd8a9e | b51855a95d4f01b64253c72f803d12f921b1215e | refs/heads/master | 2021-05-08T13:29:35.048844 | 2018-02-08T16:10:30 | 2018-02-08T16:10:56 | 120,013,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,936 | cpp | //***************************************************************************************
// Sky.cpp
//***************************************************************************************
#include "Sky.h"
#include "GeometryGenerator.h"
#include "Camera.h"
#include "Vertex.h"
#include "Effect.h"
Sky::Sky(ID3D11Device* device, const std::wstring& cubemapFilename, float skySphereRadius)
{
// Load texture from file.
HR(DirectX::CreateDDSTextureFromFile(device, cubemapFilename.c_str(), nullptr, &mCubeMapSRV));
// Draw a sphere for sky box.
GeometryGenerator::MeshData sphere;
GeometryGenerator geoGen;
geoGen.CreateSphere(skySphereRadius, 30, 30, sphere);
// Store vertices of the sphere.
std::vector<XMFLOAT3> vertices(sphere.Vertices.size());
for(size_t i = 0; i < sphere.Vertices.size(); ++i)
{
vertices[i] = sphere.Vertices[i].Position;
}
// Create vertex buffer.
D3D11_BUFFER_DESC vbd;
vbd.Usage = D3D11_USAGE_IMMUTABLE;
vbd.ByteWidth = sizeof(XMFLOAT3) * vertices.size();
vbd.BindFlags = D3D11_BIND_VERTEX_BUFFER;
vbd.CPUAccessFlags = 0;
vbd.MiscFlags = 0;
vbd.StructureByteStride = 0;
D3D11_SUBRESOURCE_DATA vinitData;
vinitData.pSysMem = &vertices[0];
HR(device->CreateBuffer(&vbd, &vinitData, &mVB));
// Create index buffer.
mIndexCount = sphere.Indices.size();
D3D11_BUFFER_DESC ibd;
ibd.Usage = D3D11_USAGE_IMMUTABLE;
ibd.ByteWidth = sizeof(USHORT) * mIndexCount;
ibd.BindFlags = D3D11_BIND_INDEX_BUFFER;
ibd.CPUAccessFlags = 0;
ibd.StructureByteStride = 0;
ibd.MiscFlags = 0;
std::vector<USHORT> indices16;
indices16.assign(sphere.Indices.begin(), sphere.Indices.end());
D3D11_SUBRESOURCE_DATA iinitData;
iinitData.pSysMem = &indices16[0];
HR(device->CreateBuffer(&ibd, &iinitData, &mIB));
}
Sky::~Sky()
{
ReleaseCOM(mVB);
ReleaseCOM(mIB);
ReleaseCOM(mCubeMapSRV);
}
ID3D11ShaderResourceView* Sky::CubeMapSRV()
{
return mCubeMapSRV;
}
void Sky::Draw(ID3D11DeviceContext* dc, const Camera& camera)
{
// Center Sky about eye in world space
XMFLOAT3 eyePos = camera.GetPosition();
XMMATRIX T = XMMatrixTranslation(eyePos.x, eyePos.y, eyePos.z);
XMMATRIX WVP = XMMatrixMultiply(T, camera.ViewProj());
Effects::SkyFX->SetWorldViewProj(WVP);
Effects::SkyFX->SetCubeMap(mCubeMapSRV);
// Setting vertex buffers and index buffers.
UINT stride = sizeof(XMFLOAT3);
UINT offset = 0;
dc->IASetVertexBuffers(0, 1, &mVB, &stride, &offset);
dc->IASetIndexBuffer(mIB, DXGI_FORMAT_R16_UINT, 0);
dc->IASetInputLayout(InputLayouts::Pos);
dc->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
D3DX11_TECHNIQUE_DESC techDesc;
Effects::SkyFX->SkyTech->GetDesc( &techDesc );
// Render the sky box.
for(UINT p = 0; p < techDesc.Passes; ++p)
{
ID3DX11EffectPass* pass = Effects::SkyFX->SkyTech->GetPassByIndex(p);
pass->Apply(0, dc);
dc->DrawIndexed(mIndexCount, 0, 0);
}
} | [
"[email protected]"
] | |
bf25276dea5078d771b8387eee20e6e359428a92 | b215b52973d879e4f72390cfe1c7cc57e7f26569 | /qt/intTableModel/moc_intTableModel.cpp | 5d9068bcebfa8b0b25b79d0fae67cad8b2bb50ef | [] | no_license | chemikadze/oldschool | 41d9479b25afe81e9afe093658a54c96051995e7 | 416f0825ad6dacef2158c819e41be58ec73e4a75 | refs/heads/master | 2021-01-18T13:45:50.274717 | 2013-12-21T23:30:08 | 2013-12-21T23:43:37 | 15,367,414 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,134 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'intTableModel.h'
**
** Created: Thu Feb 25 01:00:29 2010
** by: The Qt Meta Object Compiler version 62 (Qt 4.6.2)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "intTableModel.h"
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'intTableModel.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 62
#error "This file was generated using the moc from 4.6.2. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
static const uint qt_meta_data_intTableModel[] = {
// content:
4, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
static const char qt_meta_stringdata_intTableModel[] = {
"intTableModel\0"
};
const QMetaObject intTableModel::staticMetaObject = {
{ &QAbstractTableModel::staticMetaObject, qt_meta_stringdata_intTableModel,
qt_meta_data_intTableModel, 0 }
};
#ifdef Q_NO_DATA_RELOCATION
const QMetaObject &intTableModel::getStaticMetaObject() { return staticMetaObject; }
#endif //Q_NO_DATA_RELOCATION
const QMetaObject *intTableModel::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject;
}
void *intTableModel::qt_metacast(const char *_clname)
{
if (!_clname) return 0;
if (!strcmp(_clname, qt_meta_stringdata_intTableModel))
return static_cast<void*>(const_cast< intTableModel*>(this));
return QAbstractTableModel::qt_metacast(_clname);
}
int intTableModel::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QAbstractTableModel::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
return _id;
}
QT_END_MOC_NAMESPACE
| [
"[email protected]"
] | |
1520a56f94630807e070ae9db7c7e9701ebfacab | ee5098863c91ddb53f2bcf13f9c0f5b06c049bdb | /src/PID.cpp | 1b931916fef56ab57445f6eb42276c2d31fddd93 | [
"MIT"
] | permissive | ligenchang/t2_p4_CarND-PID-Control-Project | b7a889755b0bcae7e980515655ac1700be3beeb5 | e65681de459efdeb5abeb072fe3a3cd6bab4f2e1 | refs/heads/master | 2020-03-12T22:45:11.818570 | 2018-04-24T13:23:01 | 2018-04-24T13:23:01 | 130,853,042 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,037 | cpp | #include "PID.h"
#include <math.h>
using namespace std;
#include <iostream>
/*
* TODO: Complete the PID class.
*/
PID::PID() {}
PID::~PID() {}
void PID::Init(double _Kp, double _Ki, double _Kd) {
Kp=_Kp;
Ki=_Ki;
Kd=_Kd;
best_err=100;
Dp=0.5;
Di=0.5;
Dd=0.5;
dp = {Dp,Di,Dd};
p = {Kp,Ki,Kd};
}
void PID::UpdateError(double cte) {
d_error = (cte - p_error);
p_error = cte;
i_error += cte;
}
double PID::TotalError() {
std::cout << "total error " << -Kp * p_error - Kd * d_error - Ki * i_error<< std::endl;
return -Kp * p_error - Kd * d_error - Ki * i_error;
}
void PID::Twiddle(double current_error) {
std::cout << "current_error " << current_error<< std::endl;
std::cout << "best_err" << best_err<< std::endl;
std::cout << "state " << state<< std::endl;
std::cout << "mystate " << mystate<< std::endl;
std::cout << "Kp " << Kp<< std::endl;
std::cout << "Ki " << Ki<< std::endl;
std::cout << "Kd " << Kd<< std::endl;
if (curr_step % (n_steps+2*n_steps) > n_steps)
{
cout << "9999999999999999999999: " << curr_step % (n_steps+2*n_steps) << endl;
err += pow(current_error,2);
}
if(mystate==2)
{
if( fabs(err) < fabs(best_err)) {
best_err = current_error;
if(state==1)
Dp *= 1.1;
else if(state==2)
Di*=1.1;
else if(state==3)
Dd*=1.1;
} else {
if(state==1)
{
Dp*= .9;
Kp += Dp;
}
else if(state==2)
{
Di*= .9;
Ki += Di;
}
else if(state==3)
{
Dd*= .9;
Kd += Dd;
}
// Di*= .9;
// Dd*= .9;
}
if (state==1)
state=2;
else if (state==2)
state=3;
else if (state==3)
state=1;
mystate=1;
return;
}
mystate=1;
if(state==1)
Kp += Dp;
else if(state==2)
Ki += Di;
else if(state==3)
Kd += Dd;
if( fabs(err) < fabs(best_err)) {
best_err = current_error;
if(state==1)
Dp *= 1.1;
else if(state==2)
Di*=1.1;
else if(state==3)
Dd*=1.1;
if (state==1)
state=2;
else if (state==2)
state=3;
else if (state==3)
state=1;
} else {
mystate=2;
if(state==1)
{
Dp*= .9;
Kp -= 2*Dp;
}
else if(state==2)
{
Di*= .9;
Ki -= 2*Di;
}
else if(state==3)
{
Dd*= .9;
Kd -= 2*Dd;
}
}
curr_step++;
}
| [
"[email protected]"
] | |
0ff705801e1644534ed5b0181f3bb87d508f380b | 9a646821b5a9cda524de716caf4225a733527876 | /LakhovKirill/Task5/include/Connector.h | 4c7bf675aaac7b1e7bd00c30be6901d28239deb4 | [] | no_license | SemyonBevzuk/Programming_practice_381908-1-2 | 5cc584508de1ef2871cffad20b293d33b7a41609 | d09de61f3ea11cbc792ba117e0e3ca0171e32310 | refs/heads/master | 2021-01-01T14:47:13.137338 | 2020-06-02T12:36:11 | 2020-06-02T12:36:11 | 239,323,892 | 0 | 19 | null | 2020-06-02T12:36:12 | 2020-02-09T15:08:11 | C++ | UTF-8 | C++ | false | false | 854 | h | //
// Created by Kirill on 23.04.2020.
//
#ifndef TASK5_CONNECTOR_H
#define TASK5_CONNECTOR_H
#include "string"
#include <SQLiteCpp/SQLiteCpp.h>
#include "vector"
#include "Hall.h"
#include "SessionTemplate.h"
#include "Session.h"
using namespace std;
using namespace SQLite;
class Connector {
public:
Connector(const string &database = "cinema.db3");
Database connect();
void initTemplateTable();
void initSessionTable();
void initHallTable();
int count(const string &table);
Hall getHall(int id);
SessionTemplate getSessionTemplate(int id);
void save(const Session &session);
vector<Session> getSessionsByDate(const DateTime &date);
private:
string database;
string table;
static int rand(int a, int b);
static struct tm *currentDate(int add = 0);
};
#endif //TASK5_CONNECTOR_H
| [
"[email protected]"
] | |
b1c4dcc20110d1e58e9669146b28168f2a5f8d9d | a2afa516576b661b1e4bae5fad35a9441e7c94b6 | /1847/1.cpp | e1b481c26e55b9093f9b98561782c6dcb587b05e | [] | no_license | airbornemihir/poj | dbb94dcfd1929a359a0f0e0e9a88302b65c633a3 | 58afbd70eff5e9e5602ef3bf91b96af19cfe6cb7 | refs/heads/master | 2022-01-28T23:07:34.684217 | 2022-01-13T09:14:12 | 2022-01-13T10:24:42 | 17,974,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,746 | cpp | #include <cstdio>
struct edge {
unsigned int src;
unsigned int dst;
unsigned int weight;
edge(unsigned int src,
unsigned int dst,
unsigned int weight):
src(src),
dst(dst),
weight(weight) {}
};
#include <map>
typedef std::multimap<unsigned int, edge> weight_edge_map;
#include <vector>
typedef std::vector<bool> VB;
typedef std::vector<unsigned int> VU;
#include <cassert>
int main() {
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
unsigned int N, A, B;
scanf("%u", &N);
scanf("%u", &A);
scanf("%u", &B);
weight_edge_map m;
for (unsigned int i1 = 1; i1 <= N; ++i1) {
unsigned int Ki;
scanf("%u", &Ki);
unsigned int src = i1, dst, weight;
for (unsigned int i2 = 1; i2 <= Ki; ++i2) {
scanf("%u", &dst);
weight = (i2 <= 1) ? 0 : 1;
m.insert(weight_edge_map::value_type(weight, edge(src, dst, weight)));
}
}
VB seen(N, false);
std::vector<edge *> backtracker(N, NULL);
seen[A - 1] = true;
backtracker[A - 1] = NULL;
weight_edge_map::iterator i1 = m.begin();
while ((!seen[B - 1]) && (i1 != m.end())) {
if (seen[i1->second.src - 1]) {
if (!seen[i1->second.dst - 1]) {
seen[i1->second.dst - 1] = true;
backtracker[i1->second.dst - 1] =
new edge(i1->second.src,
i1->second.dst,
i1->second.weight);
}
m.erase(i1);
i1 = m.begin();
} else {
++i1;
}
}
if (seen[B - 1]) {
unsigned int cost = 0;
for (unsigned int i1 = B;
backtracker[i1 - 1] != NULL;
i1 = backtracker[i1 - 1]->src) {
cost += backtracker[i1 - 1]->weight;
}
printf("%u\n", cost);
} else {
printf("-1\n");
}
// fclose(stdout);
// fclose(stdin);
return 0;
}
| [
"[email protected]"
] | |
014f8c9e71f7394cad6f2f23f6cf527515afcf8a | 3707b62980338125a5d96a09385387cfa20438aa | /src/main.cpp | 4d4edd80d96ec24b204367b6585d66c6053397ba | [] | no_license | illantalex/power_meter_http | b7e1fbc5dd359ad36c37da80fcc4c9b4801e6559 | 54ab1f1190323585e02b8bc1b35da03a6993c238 | refs/heads/master | 2023-01-16T05:28:08.832625 | 2020-11-20T16:09:26 | 2020-11-20T16:09:26 | 313,971,981 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,503 | cpp | #include <ArduinoJson.h>
#include <HttpClient.h>
#include <PZEM004Tv30.h>
#include <SPI.h>
#include <UIPEthernet.h>
// Name of the server we want to connect to
const char server[] = "192.168.1.103";
// Mac address of the Ethernet
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
char buffer_http[32];
// Path to download (this is the bit after the hostname in the URL
// that you want to download
const char pathMeasure[] = "/measurement";
const char pathTime[] = "/service/time";
// Number of milliseconds to wait without receiving any data before we give up
// const int kNetworkTimeout = 30 * 1000;
// Number of milliseconds to wait if no data is available before trying again
const int kNetworkDelay = 1000;
uint32_t timeInUnixFormat = 0;
EthernetClient client;
HttpClient http(client);
uint32_t getRequest(const char path[]) {
if (http.get(server, path)) Serial.println("request failed");
Serial.print("Status code: ");
Serial.println(http.responseStatusCode());
http.skipResponseHeaders();
uint32_t contentLen = http.contentLength();
Serial.print("Body length: ");
Serial.println(contentLen);
for (uint32_t i = 0; i < contentLen && (http.available() || http.connected()); ++i) {
if (http.available()) {
buffer_http[i] = http.read();
} else {
Serial.println("No data available, please wait...");
delay(kNetworkDelay);
}
}
http.stop();
return contentLen;
}
uint32_t getTime() {
return timeInUnixFormat + millis() / 1000;
}
void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
Serial.println("start");
while (Ethernet.begin(mac) != 1) {
Serial.println("Error getting IP address via DHCP, trying again...");
delay(15000);
}
Serial.print("localIP: ");
Serial.println(Ethernet.localIP());
Serial.print("subnetMask: ");
Serial.println(Ethernet.subnetMask());
Serial.print("gatewayIP: ");
Serial.println(Ethernet.gatewayIP());
Serial.print("dnsServerIP: ");
Serial.println(Ethernet.dnsServerIP());
int mill1 = millis();
// int timeLen = 10;
int timeLen = getRequest(pathTime);
int mill2 = millis();
// And just stop, now that we've tried a download
for (int i = 0; i < timeLen; ++i) {
timeInUnixFormat *= 10;
timeInUnixFormat += buffer_http[i] - '0';
}
timeInUnixFormat -= (mill1 + mill2) / 2000;
Serial.println();
Serial.println(timeInUnixFormat);
Serial.println(getTime());
delay(10000);
Serial.println(getTime());
}
void loop() {
}
| [
"[email protected]"
] | |
6d858dc640cc8c4b290da59c774bbeb5345012b3 | bf19f77fdef85e76a7ebdedfa04a207ba7afcada | /Tech Demo/TMNT Tactics Tech Demo/Source/CParticleSystem.h | 31f27f797b6b80adde32e9c3b980ffe65b3f02da | [] | no_license | marvelman610/tmntactis | 2aa3176d913a72ed985709843634933b80d7cb4a | a4e290960510e5f23ff7dbc1e805e130ee9bb57d | refs/heads/master | 2020-12-24T13:36:54.332385 | 2010-07-12T08:08:12 | 2010-07-12T08:08:12 | 39,046,976 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,615 | h | #pragma once
#include "SGD Wrappers/CSGD_Direct3D.h"
#include "SGD Wrappers/CSGD_TextureManager.h"
#include "CGame.h"
#include <ctime>
#include <fstream>
#include <string>
using namespace std;
#define RandomFloat(min,max) (((rand()/(float)RAND_MAX)*((max)-(min)))+(min))
struct VERTEX
{
D3DXVECTOR3 pos;
D3DXVECTOR2 uv;
float size;
D3DCOLOR color;
};
struct PARTICLE
{
D3DXVECTOR3 pos;
D3DXVECTOR3 vel;
int life;
float size;
D3DCOLOR color;
};
class CParticleSystem
{
public:
PARTICLE *particles;
IDirect3DVertexDeclaration9 *vertexDecl;
IDirect3DVertexBuffer9 *particleBuff;
IDirect3DTexture9 *texture;
int m_nImageID;
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Function : Constructor
//
// Purpose : To initialize values so there arent random access problems with the variables
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
CParticleSystem(void)
{
srand(unsigned int(time(0)));
particles = NULL;
vertexDecl = NULL;
particleBuff = NULL;
texture = NULL;
m_nImageID = CSGD_TextureManager::GetInstance()->LoadTexture("source//SGD_Ship.bmp", D3DCOLOR_XRGB(0,0,0));
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Function : Init Geometry
//
// Purpose : To set up the vertex declaration for the point sprites in 3d space
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
void InitGeometry(void)
{
D3DVERTEXELEMENT9 decl[]=
{
{0,0,D3DDECLTYPE_FLOAT3, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_POSITION, 0},
{0,12,D3DDECLTYPE_FLOAT2, D3DDECLMETHOD_DEFAULT, D3DDECLUSAGE_TEXCOORD, 0},
{0,20,D3DDECLTYPE_FLOAT1,D3DDECLMETHOD_DEFAULT,D3DDECLUSAGE_PSIZE, 0},
{0,24,D3DDECLTYPE_D3DCOLOR,D3DDECLMETHOD_DEFAULT,D3DDECLUSAGE_COLOR,0},
D3DDECL_END()
};
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->CreateVertexDeclaration(decl, &vertexDecl);
D3DXCreateTextureFromFile(CSGD_Direct3D::GetInstance()->GetDirect3DDevice(), "source\\SGD_Ship.bmp", &texture);
//CSGD_TextureManager::GetInstance()->Load(
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Function : InitParticle
//
// Purpose : Initializing the particle list
////////////////////////////////////////////////////////////////////////////////////////////////////////////
void InitParticle(void)
{
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->CreateVertexBuffer(100*sizeof(VERTEX),
D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY | D3DUSAGE_POINTS, 0,
D3DPOOL_DEFAULT, &particleBuff, NULL);
//loop through all the particles
for(int i = 0; i < 100; i++)
{
particles[i].pos = D3DXVECTOR3(100,100,0);//start position
float x = (rand()%100)*.001f;
float y = (rand()%100)*.001f;
float z = (rand()%100)*.001f;
particles[i].vel = D3DXVECTOR3(RandomFloat(-0.1f, 0.1f),RandomFloat(-0.1f, 0.1f),RandomFloat(-0.1f, 0.1f));
particles[i].life = rand()%100;
particles[i].size = (float)(rand()%10);
particles[i].color = D3DCOLOR_ARGB(rand()%255, rand()%55, rand()%55, rand()%55);
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Function : UpdateParticle
//
// Purpose : updates the particle position, life, color and velocity
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void UpdateParticle(void)
{
int x = 0;
for(int i = 0; i < 100; i++)
{
particles[i].pos += particles[i].vel;
particles[i].life++;
//particles[i].size -= 0.05f;
if(particles[i].life >100)
{
particles[i].vel = D3DXVECTOR3(RandomFloat(-0.01f, 0.01f),RandomFloat(-0.1f, 0.1f),RandomFloat(-0.01f, 0.01f));
particles[i].life = 0;
particles[i].pos = D3DXVECTOR3(100,100,0);
particles[i].color = D3DCOLOR_ARGB(rand()%255, rand()%55, rand()%55, rand()%55);
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////
// Function : DrawParticle
//
// Purpose : To render the particle on the screen
///////////////////////////////////////////////////////////////////////////////////////////////////////////
void DrawParticle(void)
{
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetVertexDeclaration(vertexDecl);
//draw point sprites transparent
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_ZWRITEENABLE, false);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_ALPHATESTENABLE, false);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_ALPHABLENDENABLE, true);
//set the blend modes
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_SRCBLEND, D3DBLEND_SRCALPHA);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_DESTBLEND, D3DBLEND_ONE);
//set up the point sprites
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSPRITEENABLE, true);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSCALEENABLE, true);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSIZE, 1);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSIZE_MIN, 1);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSIZE_MAX, 100);
// new size = base size * sqrt(1/(A+B*Dis+C*Dis*Dis))
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSCALE_A, 0);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSCALE_B, 0);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetRenderState(D3DRS_POINTSCALE_C, 1);
//use alpha value of vertex color with texture
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetTextureStageState(0,D3DTSS_ALPHAOP, D3DTOP_MODULATE);
//rewrite the dynamic vertex buffer
VERTEX *pvbuff;
particleBuff->Lock(0,100*sizeof(VERTEX), (void**)&pvbuff, D3DLOCK_DISCARD);
for(int i = 0; i < 100; i++)
{
pvbuff->pos = particles[i].pos;
pvbuff->size = particles[i].size;
pvbuff->color = particles[i].color;
pvbuff++;
CSGD_TextureManager::GetInstance()->Draw(m_nImageID, pvbuff->pos.x, pvbuff->pos.y, 0.0f,0.0f,NULL, 0.0f,0.0f,0.0f,pvbuff->color);
}
particleBuff->Unlock();
//draw
D3DXMATRIX transform;
D3DXMatrixIdentity(&transform);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetTransform(D3DTS_WORLD, &transform);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetTexture(0,texture);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetStreamSource(0,particleBuff,0,sizeof(VERTEX));
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->DrawPrimitive(D3DPT_POINTLIST,0,100);
CSGD_Direct3D::GetInstance()->GetDirect3DDevice()->SetTextureStageState(0,D3DTSS_ALPHAOP,D3DTOP_SELECTARG1);
}
//////////////////////////////////////////////////////////////////////////////////////////////////
//
// Destructor cleans up memory
//////////////////////////////////////////////////////////////////////////////////////////////////
~CParticleSystem(void)
{
if(vertexDecl)
{
vertexDecl->Release();
}
if(particleBuff)
{
particleBuff->Release();
}
if(texture)
{
texture->Release();
}
}
////////////////////////////////////////////////////////////////////
// Function : Load
//
// Purpose : to load in binary file information and create a particle
//////////////////////////////////////////////////////////////////////
void Load(void)
{
//read in all values
try
{
fstream fs("save.dat", ios::in | ios::binary /*| ios::app*/);//attempt to open file
fs.exceptions(~ios_base::goodbit);
int numparticles;
fs.read(reinterpret_cast<char*>(&numparticles), sizeof(int));
particles = new PARTICLE[numparticles];
float emitterposx;
fs.read(reinterpret_cast<char*>(&emitterposx), sizeof(float));
float emitterposy;
fs.read(reinterpret_cast<char*>(&emitterposy), sizeof(float));
float particleoffsetx;
fs.read(reinterpret_cast<char*>(&particleoffsetx), sizeof(float));
float particleoffsety;
fs.read(reinterpret_cast<char*>(&particleoffsety), sizeof(float));
float emittervelx;
fs.read(reinterpret_cast<char*>(&emittervelx), sizeof(float));
float emittervely;
fs.read(reinterpret_cast<char*>(&emittervely), sizeof(float));
float emitterforcex;
fs.read(reinterpret_cast<char*>(&emitterforcex), sizeof(float));
float emitterforcey;
fs.read(reinterpret_cast<char*>(&emitterforcey), sizeof(float));
char buffer[128];
fs.read(reinterpret_cast<char*>(&buffer), sizeof(buffer));
//set texture
for(int i = 0; i < numparticles; i++)
{
//set position etc
particles[i].pos.x = emitterposx + RandomFloat(-particleoffsetx, particleoffsetx);
particles[i].pos.y = emitterposy + RandomFloat(-particleoffsety, particleoffsety);
float particlevelx;
fs.read(reinterpret_cast<char*>(&particlevelx), sizeof(float));
particles[i].vel.x = particlevelx;
float particlevely;
fs.read(reinterpret_cast<char*>(&particlevely), sizeof(float));
particles[i].vel.y = particlevely;
//gravity
float gravx;
fs.read(reinterpret_cast<char*>(&gravx), sizeof(float));
float gravy;
fs.read(reinterpret_cast<char*>(&gravy), sizeof(float));
bool bgrav;
fs.read(reinterpret_cast<char*>(&bgrav), sizeof(bool));
//color
int a;
fs.read(reinterpret_cast<char*>(&a), sizeof(int));
int r;
fs.read(reinterpret_cast<char*>(&r), sizeof(int));
int g;
fs.read(reinterpret_cast<char*>(&g), sizeof(int));
int b;
fs.read(reinterpret_cast<char*>(&b), sizeof(int));
//
bool randlife;
fs.read(reinterpret_cast<char*>(&randlife), sizeof(bool));
int particlesize;
fs.read(reinterpret_cast<char*>(&particlesize), sizeof(int));
if(randlife == true)
{
particles[i].life = rand()%100;
}
//fade out
bool alphadown;
fs.read(reinterpret_cast<char*>(&alphadown), sizeof(bool));
}
}
catch (ios_base::failure &)
{
if (fs.eof())
{fs.close();return;}
}
}; | [
"AllThingsCandid@7dc79cba-3e6d-11de-b8bc-ddcf2599578a"
] | AllThingsCandid@7dc79cba-3e6d-11de-b8bc-ddcf2599578a |
2725d865a016097152050fad41e7ac3a326ce84b | cfe29794d9e0e7889afe8acb91e12b5ef1f7a9bd | /source/tests/jacdac_tests_dut.cpp | 3fe570dbe5bc69e05d4e05226fdf486f0f9bb4c7 | [
"MIT"
] | permissive | lancaster-university/jacdac-compliance | 1e76d3fbfcf474e56b4d699dd81ff5ab90d6a617 | c6beca9df2fbdc4a1e97a6bf463d0c1e23471a93 | refs/heads/master | 2020-04-16T13:59:34.589403 | 2019-03-19T23:23:19 | 2019-03-19T23:23:19 | 165,650,542 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,984 | cpp | #include "compliance_interface.h"
#include "jacdac_tests.h"
#include "CodalDmesg.h"
#ifdef DEVICE_UNDER_TEST
volatile int tx_rx = 0;
volatile int error = 0;
void on_reset_gpio_high()
{
device_reset();
}
void on_tx_rx_gpio_high()
{
tx_rx = 1;
}
void on_error_gpio_high()
{
error = 1;
}
JACDAC_TEST(0)
{
// empty, no packet transferred.
return 0;
}
/**
* packet_received_from_tester
*
* toggles the tx_rx line to indicate a packet has been received.
**/
JACDAC_TEST(1)
{
DMESG("TEST 1");
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
/**
* send_packet_to_tester
* Sends a jacdac packet to the tester.
**/
JACDAC_TEST(2)
{
DMESG("TEST 2");
while(get_tx_rx_gpio(JACDAC_GPIO_PULL_MODE_DOWN) == !LINE_ACTIVE_VALUE);
int testNumber = 2;
jacdac_send((uint8_t*)&testNumber, sizeof(int));
return 0;
}
/**
* packet with an incorrect crc sent from tester
* toggles the error line to indicate a packet has been received.
**/
JACDAC_TEST(3)
{
// empty, error should trigger the next test
return 0;
}
/**
* bus is driven low for an incorrect amount of time, then a packet is sent.
*
* This tests error detection and recovery.
**/
JACDAC_TEST(4)
{
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
/**
* bus is driven low for a really long amount of time, then a packet is sent.
*
* This tests error detection and recovery.
**/
JACDAC_TEST(5)
{
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
/**
* bus is driven low for 10 us, wait 40 us, send junk. After erroring, tester sends packet.
*
* This tests error detection and recovery.
**/
JACDAC_TEST(6)
{
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
/**
* bus is driven low for 10 us, wait 40 us, send 3 junk bytes, (header timeout test)
*
* This tests error detection and recovery.
**/
JACDAC_TEST(7)
{
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
/**
* bus is driven low for 10 us, line twiddled for three bytes, then an actual packet is sent immediately
*
* This tests error detection and recovery.
**/
JACDAC_TEST(8)
{
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
/**
* bus is driven low for 10 us, packet after 300 us
*
* This tests error detection and recovery.
**/
JACDAC_TEST(9)
{
set_tx_rx_gpio(LINE_ACTIVE_VALUE);
wait_us(10);
set_tx_rx_gpio(!LINE_ACTIVE_VALUE);
return 0;
}
// hold line low, ask device to send...
JACDAC_TEST(10)
{
while(get_tx_rx_gpio(JACDAC_GPIO_PULL_MODE_NONE) == !LINE_ACTIVE_VALUE);
wait_us(100);
int testNumber = 10;
jacdac_send((uint8_t*)&testNumber, sizeof(int));
return 0;
}
#endif
| [
"[email protected]"
] | |
e3a88ed9d139e15c808c8a5804c0a8ae0037e313 | 551d15d28066bc3c56045ff2009423f147ef0d9c | /cpp/面试题01.03.URL化.cpp | 2f1aa575c410b03e0760a0348440d0edcf14d02b | [] | no_license | tesion99/LeetCode | 6d393dcb5721f2e9df7a239b8f8823fcfba95c49 | 823d3b7d298bbbb2d72a1b0e96c8e6a20bb84e40 | refs/heads/master | 2021-07-11T12:34:11.243119 | 2020-08-22T14:51:10 | 2020-08-22T14:51:10 | 171,787,201 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,396 | cpp | /*
URL化。编写一种方法,将字符串中的空格全部替换为%20。假定该字符串尾部有足够的空间存放新增字符,并且知道字符串的“真实”长度。(注:用Java实现的话,请使用字符数组实现,以便直接在数组上操作。)
示例1:
输入:"Mr John Smith ", 13
输出:"Mr%20John%20Smith"
示例2:
输入:" ", 5
输出:"%20%20%20%20%20"
提示:
字符串长度在[0, 500000]范围内。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/string-to-url-lcci
*/
// 先统计空格个数
// 根据空格个数,从尾部确定每个字符的新索引位置,然后进行移动
class Solution {
public:
string replaceSpaces(string S, int length) {
int space = 0;
for (int i = 0; i < length; ++i) {
if (S[i] == ' ') ++space;
}
if (space == 0) return S;
int new_len = length + space * 2;
int offset = new_len - 1;
for (int i = length - 1; i >= 0 && space > 0; --i) {
if (S[i] != ' ') {
S[offset] = S[i];
--offset;
} else {
S[offset] = '0';
S[offset - 1] = '2';
S[offset - 2] = '%';
offset -= 3;
--space;
}
}
return S.substr(0, new_len);
}
};
| [
"[email protected]"
] | |
6d02078ceee65981ed56fa618ef3dd45fe4d0657 | 7ec00adb99b922e07433f95b96e1483a8af95a2c | /examples/DisplayLifi_example/DisplayLifi_example.ino | 3d24f18cab47b2c2487402c1f91642503c10c90a | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | ikeyasu/DisplayLiFi | 55a8c19a19da6f1570a75e3183e1776d34482052 | 786b6c50ee0ac792e52325504d3485afcfe36633 | refs/heads/master | 2021-01-13T01:08:38.866552 | 2015-12-29T16:13:27 | 2015-12-29T16:13:27 | 28,771,425 | 5 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 409 | ino | #include "DisplayLiFi.h"
#define LED 4
void leaderCodeListener(char* receivedString) {
Serial.print("L:");
Serial.println(receivedString);
}
DisplayLiFi lifi = DisplayLiFi(A0, leaderCodeListener);
void setup() {
pinMode(LED, OUTPUT);
Serial.begin(115200);
delay(100);
Serial.println("");
Serial.println("TEST");
lifi.startCalibration(5000);
}
void loop() {
lifi.loop();
//delay(3);
}
| [
"[email protected]"
] | |
2c564979f05dd20404c65fea69419f930d68648e | 9644f19ffdac3a5d0eec4c8f802a9ab998719f82 | /Online Judges/TJU/2498.cpp | 46ee4a5f8981b0524756682da31734bf720f186c | [] | no_license | ypizarroza1990/ACM | ca472a3773be0c925cc312960aa82046fc4057fa | 3a5a81a66540bcdae9960b497d9cf8ef4c8a50f0 | refs/heads/master | 2021-01-18T19:14:19.920891 | 2020-02-18T19:18:10 | 2020-02-18T19:18:10 | 56,805,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 689 | cpp | #include <bits/stdc++.h>
#define MAX 12009
#define ifc(x)(flag[x>>6]&(1<<((x>>1)&31)))
#define isc(x)(flag[x>>6]|=(1<<((x>>1)&31)))
#define P(x)(x)*(x)
using namespace std;
typedef long long i64;
template <class T > string to_str(const T &n){
stringstream ss;ss<<n;return ss.str();
}
int n,m,pw[100],len;
void power(int b,int e){
pw[len++]=1;
int res;
for(int i=1;i<=e;i++){
res=0;
for(int j=0;j<len;j++){
res=pw[j]*b+res;
pw[j]=res%1000;
res/=1000;
}
if(res){
pw[len++]=res;
}
}
}
int main() {
while(scanf("%d%d",&n,&m),n+m){
len=0;
power(n,m);
printf("%d",pw[len-1]);
for(int i=len-2;i>=0;i--)
printf("%.3d",pw[i]);
printf("\n");
}
return 0;
}
| [
"[email protected]"
] | |
09b65492310e21ee96e030f43488dc8ec38b2f6d | b034dff5726afd3ec88fc3f8434b83080fd68b12 | /HttpPostMfc/HttpPostMfc.h | aaba492656519ca9f16219ea86b4b20ad3f1054c | [] | no_license | deaconwu/VehicleMonitor | 0faeb3fce1c33aa1046c4d73d12e29888409e11c | d0502fb037fcec5bbf16f04556753a4aa5845ca9 | refs/heads/master | 2023-03-11T15:56:21.951937 | 2021-02-26T07:14:46 | 2021-02-26T07:14:46 | 318,038,581 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 474 | h |
// HttpPostMfc.h: PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'pch.h' before including this file for PCH"
#endif
#include "resource.h" // 主符号
// CHttpPostMfcApp:
// 有关此类的实现,请参阅 HttpPostMfc.cpp
//
class CHttpPostMfcApp : public CWinApp
{
public:
CHttpPostMfcApp();
// 重写
public:
virtual BOOL InitInstance();
// 实现
DECLARE_MESSAGE_MAP()
};
extern CHttpPostMfcApp theApp;
| [
"[email protected]"
] | |
a72f2452a23103666f9ba8994c552a978fd5b789 | b61c6d07a7330f9bc0d22a41f86d869a818afeb6 | /ThunderJBolt/LevelSelectScene.h | 5b1f6e7c4227fc32ad81630effb83c64236fbfb1 | [] | no_license | HolicXXX/GameDevelopmentPractices | 57341d36cd3acb95e64db5e6d2f58d8b0ba5380b | d8977075d84b78bc0cabcf98e431588210f7e5c6 | refs/heads/master | 2021-05-15T06:21:50.639074 | 2017-12-18T07:54:47 | 2017-12-18T07:54:47 | 114,593,375 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 260 | h | #ifndef _LEVELSELECTSCENE_H_
#define _LEVELSELECTSCENE_H_
#include "cocos2d.h"
class LevelSelectScene : public cocos2d::Layer
{
public:
static cocos2d::Scene* createScene();
static LevelSelectScene* create();
virtual bool init();
};
#endif | [
"[email protected]"
] | |
ea5d3997b82ca3869d35383c2701fc9fba90e284 | fedab0f33c77be6c21d34ebc39f5174c199c142a | /move_base_test/src/simple_navigation_goals/src/cmd_vel_to_turtlebot.cpp | 0d048b3b144d7341e45da574cd8c391002868277 | [] | no_license | JamesVal/navigation_with_turtlesim | 0638ae3615ee2c342782c97399a6bf60da959913 | dfbf4d4b482b19fb259a42ffa5425baecba3d622 | refs/heads/master | 2020-03-21T09:53:47.954288 | 2018-06-24T12:26:58 | 2018-06-24T12:26:58 | 138,423,160 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 459 | cpp | #include "ros/ros.h"
#include "geometry_msgs/Twist.h"
ros::Publisher turtle_pub;
void cmdVelCallback(const geometry_msgs::Twist::ConstPtr& msg)
{
turtle_pub.publish(msg);
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "cmd_vel_to_turtlebot");
ros::NodeHandle n;
ros::Subscriber sub = n.subscribe("/cmd_vel", 1000, cmdVelCallback);
turtle_pub = n.advertise<geometry_msgs::Twist>("turtle1/cmd_vel", 1000);
ros::spin();
return 0;
}
| [
"[email protected]"
] | |
31a1a9cf088065469b51fe96e4dc98a46be62337 | a4d8cb480cbdb196e79ce482f5f9221fc74855e2 | /2010/201005/20100530_mult_connect.cpp | 5c376ed53101d09eddf573dd3db2ef4ab95ce40f | [] | no_license | bonly/exercise | 96cd21e5aa65e2f4c8ba18adda63c28a5634c033 | dccf193a401c386719b8dcd7440d1f3bb74cb693 | refs/heads/master | 2020-05-06T13:51:29.957349 | 2018-02-10T16:14:52 | 2018-02-10T16:14:52 | 3,512,855 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,966 | cpp | /**
* @file 20100530_mult_connect.cpp
* @brief
*
* @author bonly
* @date 2012-7-17 bonly created
*/
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <boost/asio.hpp>
#include <boost/bind.hpp>
using boost::asio::ip::tcp;
using namespace std;
static int id = 1;
const char message[] = "test write string...";
class echo_session
{
public:
echo_session(boost::asio::io_service& io_service) :
socket_(io_service),io_(io_service)
{
id_ = id;
++id;
}
void start(const std::string& ip, const std::string& port)
{
//解析主机地址
tcp::resolver resolver(io_);
tcp::resolver::query query(tcp::v4(), ip, port);
tcp::resolver::iterator iterator = resolver.resolve(query);
//异步连接
socket_.async_connect(
*iterator,
boost::bind(&echo_session::handle_connect, this,
boost::asio::placeholders::error));
}
private:
void handle_connect(const boost::system::error_code& error)
{
if (!error)
{
//连接成功,发送message中的数据
boost::asio::async_write(
socket_,
boost::asio::buffer(message, sizeof(message)),
boost::bind(&echo_session::handle_write, this,
boost::asio::placeholders::error));
}
else
cout << error << endl;
}
void handle_write(const boost::system::error_code& error)
{
if (!error)
{
//写入完毕,接收服务器回射的消息
boost::asio::async_read(
socket_,
boost::asio::buffer(buf_, sizeof(buf_)),
boost::bind(
&echo_session::handle_read,
this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
}
else
cout << error << endl;
}
void handle_read(const boost::system::error_code& error,
size_t bytes_transferred)
{
if (!error)
{
//读取完毕,在终端显示
cout << id_ << ":receive:" << bytes_transferred << "," << buf_
<< endl;
//周而复始...
handle_connect(error);
}
else
cout << error << endl;
}
int id_;
tcp::socket socket_;
boost::asio::io_service &io_;
char buf_[sizeof(message)];
};
int main(int argc, char* argv[])
{
const int session_num = 10000; //连接的数量
echo_session* sessions[session_num];
memset(sessions, 0, sizeof(sessions));
try
{
if (argc != 3)
{
std::cerr << "Usage: blocking_tcp_echo_client <host> <port>/n";
return 1;
}
boost::asio::io_service io_service;
//创建session_num个连接
for (int i = 0; i < session_num; ++i)
{
sessions[i] = new echo_session(io_service);
sessions[i]->start(argv[1], argv[2]);
}
//io_service主循环
io_service.run();
for (int i = 0; i < session_num; ++i)
if (sessions[i] != NULL)
delete sessions[i];
}
catch (std::exception& e)
{
for (int i = 0; i < session_num; ++i)
if (sessions[i] != NULL)
delete sessions[i];
std::cerr << "Exception: " << e.what() << "/n";
}
return 0;
}
| [
"[email protected]"
] | |
34e1ada85deaf4264f4530b32d3f1ee2aa11efc5 | b17703a2c53f6462262236124c2e467078b244b2 | /app/src/main/cpp/cppLib/iterator | 7aa2b06dd33c6c530e0bd9f9ad44cd34720a9d00 | [
"NCSA",
"MIT"
] | permissive | JoaoDias-223/Computer-Components-AR-Android-App | 8932879ea41581aa523408455ba102aece86089a | 9ec29ba20478f9335b5d6c78a5cfd63c7fea5596 | refs/heads/master | 2022-12-25T13:40:20.015336 | 2020-10-09T19:07:53 | 2020-10-09T19:07:53 | 297,498,016 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64,345 | // -*- C++ -*-
//===-------------------------- iterator ----------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCPP_ITERATOR
#define _LIBCPP_ITERATOR
/*
iterator synopsis
namespace std
{
template<class Iterator>
struct iterator_traits
{
typedef typename Iterator::difference_type difference_type;
typedef typename Iterator::value_type value_type;
typedef typename Iterator::pointer pointer;
typedef typename Iterator::reference reference;
typedef typename Iterator::iterator_category iterator_category;
};
template<class T>
struct iterator_traits<T*>
{
typedef ptrdiff_t difference_type;
typedef T value_type;
typedef T* pointer;
typedef T& reference;
typedef random_access_iterator_tag iterator_category;
};
template<class T>
struct iterator_traits<const T*>
{
typedef ptrdiff_t difference_type;
typedef T value_type;
typedef const T* pointer;
typedef const T& reference;
typedef random_access_iterator_tag iterator_category;
};
template<class Category, class T, class Distance = ptrdiff_t,
class Pointer = T*, class Reference = T&>
struct iterator
{
typedef T value_type;
typedef Distance difference_type;
typedef Pointer pointer;
typedef Reference reference;
typedef Category iterator_category;
};
struct input_iterator_tag {};
struct output_iterator_tag {};
struct forward_iterator_tag : public input_iterator_tag {};
struct bidirectional_iterator_tag : public forward_iterator_tag {};
struct random_access_iterator_tag : public bidirectional_iterator_tag {};
// 27.4.3, iterator operations
// extension: second argument not conforming to C++03
template <class InputIterator> // constexpr in C++17
constexpr void advance(InputIterator& i,
typename iterator_traits<InputIterator>::difference_type n);
template <class InputIterator> // constexpr in C++17
constexpr typename iterator_traits<InputIterator>::difference_type
distance(InputIterator first, InputIterator last);
template <class InputIterator> // constexpr in C++17
constexpr InputIterator next(InputIterator x,
typename iterator_traits<InputIterator>::difference_type n = 1);
template <class BidirectionalIterator> // constexpr in C++17
constexpr BidirectionalIterator prev(BidirectionalIterator x,
typename iterator_traits<BidirectionalIterator>::difference_type n = 1);
template <class Iterator>
class reverse_iterator
: public iterator<typename iterator_traits<Iterator>::iterator_category,
typename iterator_traits<Iterator>::value_type,
typename iterator_traits<Iterator>::difference_type,
typename iterator_traits<Iterator>::pointer,
typename iterator_traits<Iterator>::reference>
{
protected:
Iterator current;
public:
typedef Iterator iterator_type;
typedef typename iterator_traits<Iterator>::difference_type difference_type;
typedef typename iterator_traits<Iterator>::reference reference;
typedef typename iterator_traits<Iterator>::pointer pointer;
constexpr reverse_iterator();
constexpr explicit reverse_iterator(Iterator x);
template <class U> constexpr reverse_iterator(const reverse_iterator<U>& u);
template <class U> constexpr reverse_iterator& operator=(const reverse_iterator<U>& u);
constexpr Iterator base() const;
constexpr reference operator*() const;
constexpr pointer operator->() const;
constexpr reverse_iterator& operator++();
constexpr reverse_iterator operator++(int);
constexpr reverse_iterator& operator--();
constexpr reverse_iterator operator--(int);
constexpr reverse_iterator operator+ (difference_type n) const;
constexpr reverse_iterator& operator+=(difference_type n);
constexpr reverse_iterator operator- (difference_type n) const;
constexpr reverse_iterator& operator-=(difference_type n);
constexpr reference operator[](difference_type n) const;
};
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator==(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator<(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator!=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator>(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator>=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator<=(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr auto
operator-(const reverse_iterator<Iterator1>& x, const reverse_iterator<Iterator2>& y)
-> decltype(__y.base() - __x.base()); // constexpr in C++17
template <class Iterator>
constexpr reverse_iterator<Iterator>
operator+(typename reverse_iterator<Iterator>::difference_type n,
const reverse_iterator<Iterator>& x); // constexpr in C++17
template <class Iterator>
constexpr reverse_iterator<Iterator> make_reverse_iterator(Iterator i); // C++14, constexpr in C++17
template <class Container>
class back_insert_iterator
{
protected:
Container* container;
public:
typedef Container container_type;
typedef void value_type;
typedef void difference_type;
typedef void reference;
typedef void pointer;
explicit back_insert_iterator(Container& x);
back_insert_iterator& operator=(const typename Container::value_type& value);
back_insert_iterator& operator*();
back_insert_iterator& operator++();
back_insert_iterator operator++(int);
};
template <class Container> back_insert_iterator<Container> back_inserter(Container& x);
template <class Container>
class front_insert_iterator
{
protected:
Container* container;
public:
typedef Container container_type;
typedef void value_type;
typedef void difference_type;
typedef void reference;
typedef void pointer;
explicit front_insert_iterator(Container& x);
front_insert_iterator& operator=(const typename Container::value_type& value);
front_insert_iterator& operator*();
front_insert_iterator& operator++();
front_insert_iterator operator++(int);
};
template <class Container> front_insert_iterator<Container> front_inserter(Container& x);
template <class Container>
class insert_iterator
{
protected:
Container* container;
typename Container::iterator iter;
public:
typedef Container container_type;
typedef void value_type;
typedef void difference_type;
typedef void reference;
typedef void pointer;
insert_iterator(Container& x, typename Container::iterator i);
insert_iterator& operator=(const typename Container::value_type& value);
insert_iterator& operator*();
insert_iterator& operator++();
insert_iterator& operator++(int);
};
template <class Container, class Iterator>
insert_iterator<Container> inserter(Container& x, Iterator i);
template <class Iterator>
class move_iterator {
public:
typedef Iterator iterator_type;
typedef typename iterator_traits<Iterator>::difference_type difference_type;
typedef Iterator pointer;
typedef typename iterator_traits<Iterator>::value_type value_type;
typedef typename iterator_traits<Iterator>::iterator_category iterator_category;
typedef value_type&& reference;
constexpr move_iterator(); // all the constexprs are in C++17
constexpr explicit move_iterator(Iterator i);
template <class U>
constexpr move_iterator(const move_iterator<U>& u);
template <class U>
constexpr move_iterator& operator=(const move_iterator<U>& u);
constexpr iterator_type base() const;
constexpr reference operator*() const;
constexpr pointer operator->() const;
constexpr move_iterator& operator++();
constexpr move_iterator operator++(int);
constexpr move_iterator& operator--();
constexpr move_iterator operator--(int);
constexpr move_iterator operator+(difference_type n) const;
constexpr move_iterator& operator+=(difference_type n);
constexpr move_iterator operator-(difference_type n) const;
constexpr move_iterator& operator-=(difference_type n);
constexpr unspecified operator[](difference_type n) const;
private:
Iterator current; // exposition only
};
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator==(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator!=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator<(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator<=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator>(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr bool // constexpr in C++17
operator>=(const move_iterator<Iterator1>& x, const move_iterator<Iterator2>& y);
template <class Iterator1, class Iterator2>
constexpr auto // constexpr in C++17
operator-(const move_iterator<Iterator1>& x,
const move_iterator<Iterator2>& y) -> decltype(x.base() - y.base());
template <class Iterator>
constexpr move_iterator<Iterator> operator+( // constexpr in C++17
typename move_iterator<Iterator>::difference_type n,
const move_iterator<Iterator>& x);
template <class Iterator> // constexpr in C++17
constexpr move_iterator<Iterator> make_move_iterator(const Iterator& i);
template <class T, class charT = char, class traits = char_traits<charT>, class Distance = ptrdiff_t>
class istream_iterator
: public iterator<input_iterator_tag, T, Distance, const T*, const T&>
{
public:
typedef charT char_type;
typedef traits traits_type;
typedef basic_istream<charT,traits> istream_type;
constexpr istream_iterator();
istream_iterator(istream_type& s);
istream_iterator(const istream_iterator& x);
~istream_iterator();
const T& operator*() const;
const T* operator->() const;
istream_iterator& operator++();
istream_iterator operator++(int);
};
template <class T, class charT, class traits, class Distance>
bool operator==(const istream_iterator<T,charT,traits,Distance>& x,
const istream_iterator<T,charT,traits,Distance>& y);
template <class T, class charT, class traits, class Distance>
bool operator!=(const istream_iterator<T,charT,traits,Distance>& x,
const istream_iterator<T,charT,traits,Distance>& y);
template <class T, class charT = char, class traits = char_traits<charT> >
class ostream_iterator
: public iterator<output_iterator_tag, void, void, void ,void>
{
public:
typedef charT char_type;
typedef traits traits_type;
typedef basic_ostream<charT,traits> ostream_type;
ostream_iterator(ostream_type& s);
ostream_iterator(ostream_type& s, const charT* delimiter);
ostream_iterator(const ostream_iterator& x);
~ostream_iterator();
ostream_iterator& operator=(const T& value);
ostream_iterator& operator*();
ostream_iterator& operator++();
ostream_iterator& operator++(int);
};
template<class charT, class traits = char_traits<charT> >
class istreambuf_iterator
: public iterator<input_iterator_tag, charT,
typename traits::off_type, unspecified,
charT>
{
public:
typedef charT char_type;
typedef traits traits_type;
typedef typename traits::int_type int_type;
typedef basic_streambuf<charT,traits> streambuf_type;
typedef basic_istream<charT,traits> istream_type;
istreambuf_iterator() noexcept;
istreambuf_iterator(istream_type& s) noexcept;
istreambuf_iterator(streambuf_type* s) noexcept;
istreambuf_iterator(a-private-type) noexcept;
charT operator*() const;
pointer operator->() const;
istreambuf_iterator& operator++();
a-private-type operator++(int);
bool equal(const istreambuf_iterator& b) const;
};
template <class charT, class traits>
bool operator==(const istreambuf_iterator<charT,traits>& a,
const istreambuf_iterator<charT,traits>& b);
template <class charT, class traits>
bool operator!=(const istreambuf_iterator<charT,traits>& a,
const istreambuf_iterator<charT,traits>& b);
template <class charT, class traits = char_traits<charT> >
class ostreambuf_iterator
: public iterator<output_iterator_tag, void, void, void, void>
{
public:
typedef charT char_type;
typedef traits traits_type;
typedef basic_streambuf<charT,traits> streambuf_type;
typedef basic_ostream<charT,traits> ostream_type;
ostreambuf_iterator(ostream_type& s) noexcept;
ostreambuf_iterator(streambuf_type* s) noexcept;
ostreambuf_iterator& operator=(charT c);
ostreambuf_iterator& operator*();
ostreambuf_iterator& operator++();
ostreambuf_iterator& operator++(int);
bool failed() const noexcept;
};
template <class C> constexpr auto begin(C& c) -> decltype(c.begin());
template <class C> constexpr auto begin(const C& c) -> decltype(c.begin());
template <class C> constexpr auto end(C& c) -> decltype(c.end());
template <class C> constexpr auto end(const C& c) -> decltype(c.end());
template <class T, size_t N> constexpr T* begin(T (&array)[N]);
template <class T, size_t N> constexpr T* end(T (&array)[N]);
template <class C> auto constexpr cbegin(const C& c) -> decltype(std::begin(c)); // C++14
template <class C> auto constexpr cend(const C& c) -> decltype(std::end(c)); // C++14
template <class C> auto constexpr rbegin(C& c) -> decltype(c.rbegin()); // C++14
template <class C> auto constexpr rbegin(const C& c) -> decltype(c.rbegin()); // C++14
template <class C> auto constexpr rend(C& c) -> decltype(c.rend()); // C++14
template <class C> constexpr auto rend(const C& c) -> decltype(c.rend()); // C++14
template <class E> reverse_iterator<const E*> constexpr rbegin(initializer_list<E> il); // C++14
template <class E> reverse_iterator<const E*> constexpr rend(initializer_list<E> il); // C++14
template <class T, size_t N> reverse_iterator<T*> constexpr rbegin(T (&array)[N]); // C++14
template <class T, size_t N> reverse_iterator<T*> constexpr rend(T (&array)[N]); // C++14
template <class C> constexpr auto crbegin(const C& c) -> decltype(std::rbegin(c)); // C++14
template <class C> constexpr auto crend(const C& c) -> decltype(std::rend(c)); // C++14
// 24.8, container access:
template <class C> constexpr auto size(const C& c) -> decltype(c.size()); // C++17
template <class T, size_t N> constexpr size_t size(const T (&array)[N]) noexcept; // C++17
template <class C> constexpr auto empty(const C& c) -> decltype(c.empty()); // C++17
template <class T, size_t N> constexpr bool empty(const T (&array)[N]) noexcept; // C++17
template <class E> constexpr bool empty(initializer_list<E> il) noexcept; // C++17
template <class C> constexpr auto data(C& c) -> decltype(c.data()); // C++17
template <class C> constexpr auto data(const C& c) -> decltype(c.data()); // C++17
template <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept; // C++17
template <class E> constexpr const E* data(initializer_list<E> il) noexcept; // C++17
} // std
*/
#include "__config"
#include "iosfwd" // for forward declarations of vector and string.
#include "__functional_base"
#include "type_traits"
#include "cstddef"
#include "initializer_list"
#ifdef __APPLE__
#include <Availability.h>
#endif
#include "__debug"
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
struct _LIBCPP_TEMPLATE_VIS input_iterator_tag {};
struct _LIBCPP_TEMPLATE_VIS output_iterator_tag {};
struct _LIBCPP_TEMPLATE_VIS forward_iterator_tag : public input_iterator_tag {};
struct _LIBCPP_TEMPLATE_VIS bidirectional_iterator_tag : public forward_iterator_tag {};
struct _LIBCPP_TEMPLATE_VIS random_access_iterator_tag : public bidirectional_iterator_tag {};
template <class _Tp>
struct __has_iterator_category
{
private:
struct __two {char __lx; char __lxx;};
template <class _Up> static __two __test(...);
template <class _Up> static char __test(typename _Up::iterator_category* = 0);
public:
static const bool value = sizeof(__test<_Tp>(0)) == 1;
};
template <class _Iter, bool> struct __iterator_traits_impl {};
template <class _Iter>
struct __iterator_traits_impl<_Iter, true>
{
typedef typename _Iter::difference_type difference_type;
typedef typename _Iter::value_type value_type;
typedef typename _Iter::pointer pointer;
typedef typename _Iter::reference reference;
typedef typename _Iter::iterator_category iterator_category;
};
template <class _Iter, bool> struct __iterator_traits {};
template <class _Iter>
struct __iterator_traits<_Iter, true>
: __iterator_traits_impl
<
_Iter,
is_convertible<typename _Iter::iterator_category, input_iterator_tag>::value ||
is_convertible<typename _Iter::iterator_category, output_iterator_tag>::value
>
{};
// iterator_traits<Iterator> will only have the nested types if Iterator::iterator_category
// exists. Else iterator_traits<Iterator> will be an empty class. This is a
// conforming extension which allows some programs to compile and behave as
// the client expects instead of failing at compile time.
template <class _Iter>
struct _LIBCPP_TEMPLATE_VIS iterator_traits
: __iterator_traits<_Iter, __has_iterator_category<_Iter>::value> {};
template<class _Tp>
struct _LIBCPP_TEMPLATE_VIS iterator_traits<_Tp*>
{
typedef ptrdiff_t difference_type;
typedef typename remove_const<_Tp>::type value_type;
typedef _Tp* pointer;
typedef _Tp& reference;
typedef random_access_iterator_tag iterator_category;
};
template <class _Tp, class _Up, bool = __has_iterator_category<iterator_traits<_Tp> >::value>
struct __has_iterator_category_convertible_to
: public integral_constant<bool, is_convertible<typename iterator_traits<_Tp>::iterator_category, _Up>::value>
{};
template <class _Tp, class _Up>
struct __has_iterator_category_convertible_to<_Tp, _Up, false> : public false_type {};
template <class _Tp>
struct __is_input_iterator : public __has_iterator_category_convertible_to<_Tp, input_iterator_tag> {};
template <class _Tp>
struct __is_forward_iterator : public __has_iterator_category_convertible_to<_Tp, forward_iterator_tag> {};
template <class _Tp>
struct __is_bidirectional_iterator : public __has_iterator_category_convertible_to<_Tp, bidirectional_iterator_tag> {};
template <class _Tp>
struct __is_random_access_iterator : public __has_iterator_category_convertible_to<_Tp, random_access_iterator_tag> {};
template <class _Tp>
struct __is_exactly_input_iterator
: public integral_constant<bool,
__has_iterator_category_convertible_to<_Tp, input_iterator_tag>::value &&
!__has_iterator_category_convertible_to<_Tp, forward_iterator_tag>::value> {};
template<class _Category, class _Tp, class _Distance = ptrdiff_t,
class _Pointer = _Tp*, class _Reference = _Tp&>
struct _LIBCPP_TEMPLATE_VIS iterator
{
typedef _Tp value_type;
typedef _Distance difference_type;
typedef _Pointer pointer;
typedef _Reference reference;
typedef _Category iterator_category;
};
template <class _InputIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
void __advance(_InputIter& __i,
typename iterator_traits<_InputIter>::difference_type __n, input_iterator_tag)
{
for (; __n > 0; --__n)
++__i;
}
template <class _BiDirIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
void __advance(_BiDirIter& __i,
typename iterator_traits<_BiDirIter>::difference_type __n, bidirectional_iterator_tag)
{
if (__n >= 0)
for (; __n > 0; --__n)
++__i;
else
for (; __n < 0; ++__n)
--__i;
}
template <class _RandIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
void __advance(_RandIter& __i,
typename iterator_traits<_RandIter>::difference_type __n, random_access_iterator_tag)
{
__i += __n;
}
template <class _InputIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
void advance(_InputIter& __i,
typename iterator_traits<_InputIter>::difference_type __n)
{
__advance(__i, __n, typename iterator_traits<_InputIter>::iterator_category());
}
template <class _InputIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
typename iterator_traits<_InputIter>::difference_type
__distance(_InputIter __first, _InputIter __last, input_iterator_tag)
{
typename iterator_traits<_InputIter>::difference_type __r(0);
for (; __first != __last; ++__first)
++__r;
return __r;
}
template <class _RandIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
typename iterator_traits<_RandIter>::difference_type
__distance(_RandIter __first, _RandIter __last, random_access_iterator_tag)
{
return __last - __first;
}
template <class _InputIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
typename iterator_traits<_InputIter>::difference_type
distance(_InputIter __first, _InputIter __last)
{
return __distance(__first, __last, typename iterator_traits<_InputIter>::iterator_category());
}
template <class _InputIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
_InputIter
next(_InputIter __x,
typename iterator_traits<_InputIter>::difference_type __n = 1,
typename enable_if<__is_input_iterator<_InputIter>::value>::type* = 0)
{
_VSTD::advance(__x, __n);
return __x;
}
template <class _BidiretionalIter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
_BidiretionalIter
prev(_BidiretionalIter __x,
typename iterator_traits<_BidiretionalIter>::difference_type __n = 1,
typename enable_if<__is_bidirectional_iterator<_BidiretionalIter>::value>::type* = 0)
{
_VSTD::advance(__x, -__n);
return __x;
}
template <class _Tp, class = void>
struct __is_stashing_iterator : false_type {};
template <class _Tp>
struct __is_stashing_iterator<_Tp, typename __void_t<typename _Tp::__stashing_iterator_tag>::type>
: true_type {};
template <class _Iter>
class _LIBCPP_TEMPLATE_VIS reverse_iterator
: public iterator<typename iterator_traits<_Iter>::iterator_category,
typename iterator_traits<_Iter>::value_type,
typename iterator_traits<_Iter>::difference_type,
typename iterator_traits<_Iter>::pointer,
typename iterator_traits<_Iter>::reference>
{
private:
/*mutable*/ _Iter __t; // no longer used as of LWG #2360, not removed due to ABI break
static_assert(!__is_stashing_iterator<_Iter>::value,
"The specified iterator type cannot be used with reverse_iterator; "
"Using stashing iterators with reverse_iterator causes undefined behavior");
protected:
_Iter current;
public:
typedef _Iter iterator_type;
typedef typename iterator_traits<_Iter>::difference_type difference_type;
typedef typename iterator_traits<_Iter>::reference reference;
typedef typename iterator_traits<_Iter>::pointer pointer;
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator() : __t(), current() {}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
explicit reverse_iterator(_Iter __x) : __t(__x), current(__x) {}
template <class _Up>
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator(const reverse_iterator<_Up>& __u) : __t(__u.base()), current(__u.base()) {}
template <class _Up>
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator& operator=(const reverse_iterator<_Up>& __u)
{ __t = current = __u.base(); return *this; }
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
_Iter base() const {return current;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reference operator*() const {_Iter __tmp = current; return *--__tmp;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
pointer operator->() const {return _VSTD::addressof(operator*());}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator& operator++() {--current; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator operator++(int) {reverse_iterator __tmp(*this); --current; return __tmp;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator& operator--() {++current; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator operator--(int) {reverse_iterator __tmp(*this); ++current; return __tmp;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator operator+ (difference_type __n) const {return reverse_iterator(current - __n);}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator& operator+=(difference_type __n) {current -= __n; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator operator- (difference_type __n) const {return reverse_iterator(current + __n);}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator& operator-=(difference_type __n) {current += __n; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reference operator[](difference_type __n) const {return *(*this + __n);}
};
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __x.base() == __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __x.base() > __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __x.base() != __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator>(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __x.base() < __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator>=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __x.base() <= __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator<=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __x.base() >= __y.base();
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto
operator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
-> decltype(__y.base() - __x.base())
{
return __y.base() - __x.base();
}
#else
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
typename reverse_iterator<_Iter1>::difference_type
operator-(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y)
{
return __y.base() - __x.base();
}
#endif
template <class _Iter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator<_Iter>
operator+(typename reverse_iterator<_Iter>::difference_type __n, const reverse_iterator<_Iter>& __x)
{
return reverse_iterator<_Iter>(__x.base() - __n);
}
#if _LIBCPP_STD_VER > 11
template <class _Iter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator<_Iter> make_reverse_iterator(_Iter __i)
{
return reverse_iterator<_Iter>(__i);
}
#endif
template <class _Container>
class _LIBCPP_TEMPLATE_VIS back_insert_iterator
: public iterator<output_iterator_tag,
void,
void,
void,
void>
{
protected:
_Container* container;
public:
typedef _Container container_type;
_LIBCPP_INLINE_VISIBILITY explicit back_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {}
_LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(const typename _Container::value_type& __value_)
{container->push_back(__value_); return *this;}
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator=(typename _Container::value_type&& __value_)
{container->push_back(_VSTD::move(__value_)); return *this;}
#endif // _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator*() {return *this;}
_LIBCPP_INLINE_VISIBILITY back_insert_iterator& operator++() {return *this;}
_LIBCPP_INLINE_VISIBILITY back_insert_iterator operator++(int) {return *this;}
};
template <class _Container>
inline _LIBCPP_INLINE_VISIBILITY
back_insert_iterator<_Container>
back_inserter(_Container& __x)
{
return back_insert_iterator<_Container>(__x);
}
template <class _Container>
class _LIBCPP_TEMPLATE_VIS front_insert_iterator
: public iterator<output_iterator_tag,
void,
void,
void,
void>
{
protected:
_Container* container;
public:
typedef _Container container_type;
_LIBCPP_INLINE_VISIBILITY explicit front_insert_iterator(_Container& __x) : container(_VSTD::addressof(__x)) {}
_LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(const typename _Container::value_type& __value_)
{container->push_front(__value_); return *this;}
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator=(typename _Container::value_type&& __value_)
{container->push_front(_VSTD::move(__value_)); return *this;}
#endif // _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator*() {return *this;}
_LIBCPP_INLINE_VISIBILITY front_insert_iterator& operator++() {return *this;}
_LIBCPP_INLINE_VISIBILITY front_insert_iterator operator++(int) {return *this;}
};
template <class _Container>
inline _LIBCPP_INLINE_VISIBILITY
front_insert_iterator<_Container>
front_inserter(_Container& __x)
{
return front_insert_iterator<_Container>(__x);
}
template <class _Container>
class _LIBCPP_TEMPLATE_VIS insert_iterator
: public iterator<output_iterator_tag,
void,
void,
void,
void>
{
protected:
_Container* container;
typename _Container::iterator iter;
public:
typedef _Container container_type;
_LIBCPP_INLINE_VISIBILITY insert_iterator(_Container& __x, typename _Container::iterator __i)
: container(_VSTD::addressof(__x)), iter(__i) {}
_LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(const typename _Container::value_type& __value_)
{iter = container->insert(iter, __value_); ++iter; return *this;}
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY insert_iterator& operator=(typename _Container::value_type&& __value_)
{iter = container->insert(iter, _VSTD::move(__value_)); ++iter; return *this;}
#endif // _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY insert_iterator& operator*() {return *this;}
_LIBCPP_INLINE_VISIBILITY insert_iterator& operator++() {return *this;}
_LIBCPP_INLINE_VISIBILITY insert_iterator& operator++(int) {return *this;}
};
template <class _Container>
inline _LIBCPP_INLINE_VISIBILITY
insert_iterator<_Container>
inserter(_Container& __x, typename _Container::iterator __i)
{
return insert_iterator<_Container>(__x, __i);
}
template <class _Tp, class _CharT = char,
class _Traits = char_traits<_CharT>, class _Distance = ptrdiff_t>
class _LIBCPP_TEMPLATE_VIS istream_iterator
: public iterator<input_iterator_tag, _Tp, _Distance, const _Tp*, const _Tp&>
{
public:
typedef _CharT char_type;
typedef _Traits traits_type;
typedef basic_istream<_CharT,_Traits> istream_type;
private:
istream_type* __in_stream_;
_Tp __value_;
public:
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(0), __value_() {}
_LIBCPP_INLINE_VISIBILITY istream_iterator(istream_type& __s) : __in_stream_(_VSTD::addressof(__s))
{
if (!(*__in_stream_ >> __value_))
__in_stream_ = 0;
}
_LIBCPP_INLINE_VISIBILITY const _Tp& operator*() const {return __value_;}
_LIBCPP_INLINE_VISIBILITY const _Tp* operator->() const {return _VSTD::addressof((operator*()));}
_LIBCPP_INLINE_VISIBILITY istream_iterator& operator++()
{
if (!(*__in_stream_ >> __value_))
__in_stream_ = 0;
return *this;
}
_LIBCPP_INLINE_VISIBILITY istream_iterator operator++(int)
{istream_iterator __t(*this); ++(*this); return __t;}
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const istream_iterator& __x, const istream_iterator& __y)
{return __x.__in_stream_ == __y.__in_stream_;}
friend _LIBCPP_INLINE_VISIBILITY
bool operator!=(const istream_iterator& __x, const istream_iterator& __y)
{return !(__x == __y);}
};
template <class _Tp, class _CharT = char, class _Traits = char_traits<_CharT> >
class _LIBCPP_TEMPLATE_VIS ostream_iterator
: public iterator<output_iterator_tag, void, void, void, void>
{
public:
typedef _CharT char_type;
typedef _Traits traits_type;
typedef basic_ostream<_CharT,_Traits> ostream_type;
private:
ostream_type* __out_stream_;
const char_type* __delim_;
public:
_LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s) _NOEXCEPT
: __out_stream_(_VSTD::addressof(__s)), __delim_(0) {}
_LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT
: __out_stream_(_VSTD::addressof(__s)), __delim_(__delimiter) {}
_LIBCPP_INLINE_VISIBILITY ostream_iterator& operator=(const _Tp& __value_)
{
*__out_stream_ << __value_;
if (__delim_)
*__out_stream_ << __delim_;
return *this;
}
_LIBCPP_INLINE_VISIBILITY ostream_iterator& operator*() {return *this;}
_LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++() {return *this;}
_LIBCPP_INLINE_VISIBILITY ostream_iterator& operator++(int) {return *this;}
};
template<class _CharT, class _Traits>
class _LIBCPP_TEMPLATE_VIS istreambuf_iterator
: public iterator<input_iterator_tag, _CharT,
typename _Traits::off_type, _CharT*,
_CharT>
{
public:
typedef _CharT char_type;
typedef _Traits traits_type;
typedef typename _Traits::int_type int_type;
typedef basic_streambuf<_CharT,_Traits> streambuf_type;
typedef basic_istream<_CharT,_Traits> istream_type;
private:
mutable streambuf_type* __sbuf_;
class __proxy
{
char_type __keep_;
streambuf_type* __sbuf_;
_LIBCPP_INLINE_VISIBILITY __proxy(char_type __c, streambuf_type* __s)
: __keep_(__c), __sbuf_(__s) {}
friend class istreambuf_iterator;
public:
_LIBCPP_INLINE_VISIBILITY char_type operator*() const {return __keep_;}
};
_LIBCPP_INLINE_VISIBILITY
bool __test_for_eof() const
{
if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sgetc(), traits_type::eof()))
__sbuf_ = 0;
return __sbuf_ == 0;
}
public:
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR istreambuf_iterator() _NOEXCEPT : __sbuf_(0) {}
_LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT
: __sbuf_(__s.rdbuf()) {}
_LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT
: __sbuf_(__s) {}
_LIBCPP_INLINE_VISIBILITY istreambuf_iterator(const __proxy& __p) _NOEXCEPT
: __sbuf_(__p.__sbuf_) {}
_LIBCPP_INLINE_VISIBILITY char_type operator*() const
{return static_cast<char_type>(__sbuf_->sgetc());}
_LIBCPP_INLINE_VISIBILITY istreambuf_iterator& operator++()
{
__sbuf_->sbumpc();
return *this;
}
_LIBCPP_INLINE_VISIBILITY __proxy operator++(int)
{
return __proxy(__sbuf_->sbumpc(), __sbuf_);
}
_LIBCPP_INLINE_VISIBILITY bool equal(const istreambuf_iterator& __b) const
{return __test_for_eof() == __b.__test_for_eof();}
};
template <class _CharT, class _Traits>
inline _LIBCPP_INLINE_VISIBILITY
bool operator==(const istreambuf_iterator<_CharT,_Traits>& __a,
const istreambuf_iterator<_CharT,_Traits>& __b)
{return __a.equal(__b);}
template <class _CharT, class _Traits>
inline _LIBCPP_INLINE_VISIBILITY
bool operator!=(const istreambuf_iterator<_CharT,_Traits>& __a,
const istreambuf_iterator<_CharT,_Traits>& __b)
{return !__a.equal(__b);}
template <class _CharT, class _Traits>
class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator
: public iterator<output_iterator_tag, void, void, void, void>
{
public:
typedef _CharT char_type;
typedef _Traits traits_type;
typedef basic_streambuf<_CharT,_Traits> streambuf_type;
typedef basic_ostream<_CharT,_Traits> ostream_type;
private:
streambuf_type* __sbuf_;
public:
_LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT
: __sbuf_(__s.rdbuf()) {}
_LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT
: __sbuf_(__s) {}
_LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c)
{
if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sputc(__c), traits_type::eof()))
__sbuf_ = 0;
return *this;
}
_LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*() {return *this;}
_LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++() {return *this;}
_LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;}
_LIBCPP_INLINE_VISIBILITY bool failed() const _NOEXCEPT {return __sbuf_ == 0;}
#if !defined(__APPLE__) || \
(defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED > __MAC_10_8) || \
(defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_6_0)
template <class _Ch, class _Tr>
friend
_LIBCPP_HIDDEN
ostreambuf_iterator<_Ch, _Tr>
__pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,
const _Ch* __ob, const _Ch* __op, const _Ch* __oe,
ios_base& __iob, _Ch __fl);
#endif
};
template <class _Iter>
class _LIBCPP_TEMPLATE_VIS move_iterator
{
private:
_Iter __i;
public:
typedef _Iter iterator_type;
typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
typedef typename iterator_traits<iterator_type>::value_type value_type;
typedef typename iterator_traits<iterator_type>::difference_type difference_type;
typedef iterator_type pointer;
#ifndef _LIBCPP_CXX03_LANG
typedef typename iterator_traits<iterator_type>::reference __reference;
typedef typename conditional<
is_reference<__reference>::value,
typename remove_reference<__reference>::type&&,
__reference
>::type reference;
#else
typedef typename iterator_traits<iterator_type>::reference reference;
#endif
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator() : __i() {}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
explicit move_iterator(_Iter __x) : __i(__x) {}
template <class _Up>
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator(const move_iterator<_Up>& __u) : __i(__u.base()) {}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14 _Iter base() const {return __i;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reference operator*() const { return static_cast<reference>(*__i); }
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
pointer operator->() const { return __i;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator& operator++() {++__i; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator operator++(int) {move_iterator __tmp(*this); ++__i; return __tmp;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator& operator--() {--__i; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator operator--(int) {move_iterator __tmp(*this); --__i; return __tmp;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator operator+ (difference_type __n) const {return move_iterator(__i + __n);}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator& operator+=(difference_type __n) {__i += __n; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator operator- (difference_type __n) const {return move_iterator(__i - __n);}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator& operator-=(difference_type __n) {__i -= __n; return *this;}
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reference operator[](difference_type __n) const { return static_cast<reference>(__i[__n]); }
};
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator==(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() == __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator<(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() < __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator!=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() != __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator>(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() > __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator>=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() >= __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
bool
operator<=(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() <= __y.base();
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto
operator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
-> decltype(__x.base() - __y.base())
{
return __x.base() - __y.base();
}
#else
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
typename move_iterator<_Iter1>::difference_type
operator-(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y)
{
return __x.base() - __y.base();
}
#endif
template <class _Iter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator<_Iter>
operator+(typename move_iterator<_Iter>::difference_type __n, const move_iterator<_Iter>& __x)
{
return move_iterator<_Iter>(__x.base() + __n);
}
template <class _Iter>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
move_iterator<_Iter>
make_move_iterator(_Iter __i)
{
return move_iterator<_Iter>(__i);
}
// __wrap_iter
template <class _Iter> class __wrap_iter;
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
bool
operator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
bool
operator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
bool
operator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
bool
operator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
bool
operator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
bool
operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
auto
operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
-> decltype(__x.base() - __y.base());
#else
template <class _Iter1, class _Iter2>
_LIBCPP_INLINE_VISIBILITY
typename __wrap_iter<_Iter1>::difference_type
operator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
#endif
template <class _Iter>
_LIBCPP_INLINE_VISIBILITY
__wrap_iter<_Iter>
operator+(typename __wrap_iter<_Iter>::difference_type, __wrap_iter<_Iter>) _NOEXCEPT_DEBUG;
template <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY copy(_Ip, _Ip, _Op);
template <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY copy_backward(_B1, _B1, _B2);
template <class _Ip, class _Op> _Op _LIBCPP_INLINE_VISIBILITY move(_Ip, _Ip, _Op);
template <class _B1, class _B2> _B2 _LIBCPP_INLINE_VISIBILITY move_backward(_B1, _B1, _B2);
#if _LIBCPP_DEBUG_LEVEL < 2
template <class _Tp>
_LIBCPP_INLINE_VISIBILITY
typename enable_if
<
is_trivially_copy_assignable<_Tp>::value,
_Tp*
>::type
__unwrap_iter(__wrap_iter<_Tp*>);
#else
template <class _Tp>
inline _LIBCPP_INLINE_VISIBILITY
typename enable_if
<
is_trivially_copy_assignable<_Tp>::value,
__wrap_iter<_Tp*>
>::type
__unwrap_iter(__wrap_iter<_Tp*> __i);
#endif
template <class _Iter>
class __wrap_iter
{
public:
typedef _Iter iterator_type;
typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
typedef typename iterator_traits<iterator_type>::value_type value_type;
typedef typename iterator_traits<iterator_type>::difference_type difference_type;
typedef typename iterator_traits<iterator_type>::pointer pointer;
typedef typename iterator_traits<iterator_type>::reference reference;
private:
iterator_type __i;
public:
_LIBCPP_INLINE_VISIBILITY __wrap_iter() _NOEXCEPT_DEBUG
#if _LIBCPP_STD_VER > 11
: __i{}
#endif
{
#if _LIBCPP_DEBUG_LEVEL >= 2
__get_db()->__insert_i(this);
#endif
}
template <class _Up> _LIBCPP_INLINE_VISIBILITY __wrap_iter(const __wrap_iter<_Up>& __u,
typename enable_if<is_convertible<_Up, iterator_type>::value>::type* = 0) _NOEXCEPT_DEBUG
: __i(__u.base())
{
#if _LIBCPP_DEBUG_LEVEL >= 2
__get_db()->__iterator_copy(this, &__u);
#endif
}
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__wrap_iter(const __wrap_iter& __x)
: __i(__x.base())
{
__get_db()->__iterator_copy(this, &__x);
}
_LIBCPP_INLINE_VISIBILITY
__wrap_iter& operator=(const __wrap_iter& __x)
{
if (this != &__x)
{
__get_db()->__iterator_copy(this, &__x);
__i = __x.__i;
}
return *this;
}
_LIBCPP_INLINE_VISIBILITY
~__wrap_iter()
{
__get_db()->__erase_i(this);
}
#endif
_LIBCPP_INLINE_VISIBILITY reference operator*() const _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable iterator");
#endif
return *__i;
}
_LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable iterator");
#endif
return (pointer)_VSTD::addressof(*__i);
}
_LIBCPP_INLINE_VISIBILITY __wrap_iter& operator++() _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to increment non-incrementable iterator");
#endif
++__i;
return *this;
}
_LIBCPP_INLINE_VISIBILITY __wrap_iter operator++(int) _NOEXCEPT_DEBUG
{__wrap_iter __tmp(*this); ++(*this); return __tmp;}
_LIBCPP_INLINE_VISIBILITY __wrap_iter& operator--() _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__decrementable(this),
"Attempted to decrement non-decrementable iterator");
#endif
--__i;
return *this;
}
_LIBCPP_INLINE_VISIBILITY __wrap_iter operator--(int) _NOEXCEPT_DEBUG
{__wrap_iter __tmp(*this); --(*this); return __tmp;}
_LIBCPP_INLINE_VISIBILITY __wrap_iter operator+ (difference_type __n) const _NOEXCEPT_DEBUG
{__wrap_iter __w(*this); __w += __n; return __w;}
_LIBCPP_INLINE_VISIBILITY __wrap_iter& operator+=(difference_type __n) _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__addable(this, __n),
"Attempted to add/subtract iterator outside of valid range");
#endif
__i += __n;
return *this;
}
_LIBCPP_INLINE_VISIBILITY __wrap_iter operator- (difference_type __n) const _NOEXCEPT_DEBUG
{return *this + (-__n);}
_LIBCPP_INLINE_VISIBILITY __wrap_iter& operator-=(difference_type __n) _NOEXCEPT_DEBUG
{*this += -__n; return *this;}
_LIBCPP_INLINE_VISIBILITY reference operator[](difference_type __n) const _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__subscriptable(this, __n),
"Attempted to subscript iterator outside of valid range");
#endif
return __i[__n];
}
_LIBCPP_INLINE_VISIBILITY iterator_type base() const _NOEXCEPT_DEBUG {return __i;}
private:
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY __wrap_iter(const void* __p, iterator_type __x) : __i(__x)
{
__get_db()->__insert_ic(this, __p);
}
#else
_LIBCPP_INLINE_VISIBILITY __wrap_iter(iterator_type __x) _NOEXCEPT_DEBUG : __i(__x) {}
#endif
template <class _Up> friend class __wrap_iter;
template <class _CharT, class _Traits, class _Alloc> friend class basic_string;
template <class _Tp, class _Alloc> friend class _LIBCPP_TEMPLATE_VIS vector;
template <class _Iter1, class _Iter2>
friend
bool
operator==(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
friend
bool
operator<(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
friend
bool
operator!=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
friend
bool
operator>(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
friend
bool
operator>=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
template <class _Iter1, class _Iter2>
friend
bool
operator<=(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
friend
auto
operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
-> decltype(__x.base() - __y.base());
#else
template <class _Iter1, class _Iter2>
friend
typename __wrap_iter<_Iter1>::difference_type
operator-(const __wrap_iter<_Iter1>&, const __wrap_iter<_Iter2>&) _NOEXCEPT_DEBUG;
#endif
template <class _Iter1>
friend
__wrap_iter<_Iter1>
operator+(typename __wrap_iter<_Iter1>::difference_type, __wrap_iter<_Iter1>) _NOEXCEPT_DEBUG;
template <class _Ip, class _Op> friend _Op copy(_Ip, _Ip, _Op);
template <class _B1, class _B2> friend _B2 copy_backward(_B1, _B1, _B2);
template <class _Ip, class _Op> friend _Op move(_Ip, _Ip, _Op);
template <class _B1, class _B2> friend _B2 move_backward(_B1, _B1, _B2);
#if _LIBCPP_DEBUG_LEVEL < 2
template <class _Tp>
friend
typename enable_if
<
is_trivially_copy_assignable<_Tp>::value,
_Tp*
>::type
__unwrap_iter(__wrap_iter<_Tp*>);
#else
template <class _Tp>
inline _LIBCPP_INLINE_VISIBILITY
typename enable_if
<
is_trivially_copy_assignable<_Tp>::value,
__wrap_iter<_Tp*>
>::type
__unwrap_iter(__wrap_iter<_Tp*> __i);
#endif
};
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
return __x.base() == __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
"Attempted to compare incomparable iterators");
#endif
return __x.base() < __y.base();
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
return !(__x == __y);
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
return __y < __x;
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
return !(__x < __y);
}
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
return !(__y < __x);
}
template <class _Iter1>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG
{
return !(__x == __y);
}
template <class _Iter1>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator>(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG
{
return __y < __x;
}
template <class _Iter1>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator>=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG
{
return !(__x < __y);
}
template <class _Iter1>
inline _LIBCPP_INLINE_VISIBILITY
bool
operator<=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT_DEBUG
{
return !(__y < __x);
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
auto
operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
-> decltype(__x.base() - __y.base())
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
"Attempted to subtract incompatible iterators");
#endif
return __x.base() - __y.base();
}
#else
template <class _Iter1, class _Iter2>
inline _LIBCPP_INLINE_VISIBILITY
typename __wrap_iter<_Iter1>::difference_type
operator-(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT_DEBUG
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__less_than_comparable(&__x, &__y),
"Attempted to subtract incompatible iterators");
#endif
return __x.base() - __y.base();
}
#endif
template <class _Iter>
inline _LIBCPP_INLINE_VISIBILITY
__wrap_iter<_Iter>
operator+(typename __wrap_iter<_Iter>::difference_type __n,
__wrap_iter<_Iter> __x) _NOEXCEPT_DEBUG
{
__x += __n;
return __x;
}
template <class _Iter>
struct __libcpp_is_trivial_iterator
: public _LIBCPP_BOOL_CONSTANT(is_pointer<_Iter>::value) {};
template <class _Iter>
struct __libcpp_is_trivial_iterator<move_iterator<_Iter> >
: public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
template <class _Iter>
struct __libcpp_is_trivial_iterator<reverse_iterator<_Iter> >
: public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
template <class _Iter>
struct __libcpp_is_trivial_iterator<__wrap_iter<_Iter> >
: public _LIBCPP_BOOL_CONSTANT(__libcpp_is_trivial_iterator<_Iter>::value) {};
template <class _Tp, size_t _Np>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
_Tp*
begin(_Tp (&__array)[_Np])
{
return __array;
}
template <class _Tp, size_t _Np>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
_Tp*
end(_Tp (&__array)[_Np])
{
return __array + _Np;
}
#if !defined(_LIBCPP_CXX03_LANG)
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto
begin(_Cp& __c) -> decltype(__c.begin())
{
return __c.begin();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto
begin(const _Cp& __c) -> decltype(__c.begin())
{
return __c.begin();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto
end(_Cp& __c) -> decltype(__c.end())
{
return __c.end();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto
end(const _Cp& __c) -> decltype(__c.end())
{
return __c.end();
}
#if _LIBCPP_STD_VER > 11
template <class _Tp, size_t _Np>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator<_Tp*> rbegin(_Tp (&__array)[_Np])
{
return reverse_iterator<_Tp*>(__array + _Np);
}
template <class _Tp, size_t _Np>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator<_Tp*> rend(_Tp (&__array)[_Np])
{
return reverse_iterator<_Tp*>(__array);
}
template <class _Ep>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator<const _Ep*> rbegin(initializer_list<_Ep> __il)
{
return reverse_iterator<const _Ep*>(__il.end());
}
template <class _Ep>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
reverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il)
{
return reverse_iterator<const _Ep*>(__il.begin());
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
auto cbegin(const _Cp& __c) -> decltype(_VSTD::begin(__c))
{
return _VSTD::begin(__c);
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11
auto cend(const _Cp& __c) -> decltype(_VSTD::end(__c))
{
return _VSTD::end(__c);
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto rbegin(_Cp& __c) -> decltype(__c.rbegin())
{
return __c.rbegin();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto rbegin(const _Cp& __c) -> decltype(__c.rbegin())
{
return __c.rbegin();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto rend(_Cp& __c) -> decltype(__c.rend())
{
return __c.rend();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto rend(const _Cp& __c) -> decltype(__c.rend())
{
return __c.rend();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto crbegin(const _Cp& __c) -> decltype(_VSTD::rbegin(__c))
{
return _VSTD::rbegin(__c);
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
auto crend(const _Cp& __c) -> decltype(_VSTD::rend(__c))
{
return _VSTD::rend(__c);
}
#endif
#else // defined(_LIBCPP_CXX03_LANG)
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY
typename _Cp::iterator
begin(_Cp& __c)
{
return __c.begin();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY
typename _Cp::const_iterator
begin(const _Cp& __c)
{
return __c.begin();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY
typename _Cp::iterator
end(_Cp& __c)
{
return __c.end();
}
template <class _Cp>
inline _LIBCPP_INLINE_VISIBILITY
typename _Cp::const_iterator
end(const _Cp& __c)
{
return __c.end();
}
#endif // !defined(_LIBCPP_CXX03_LANG)
#if _LIBCPP_STD_VER > 14
template <class _Cont>
constexpr auto size(const _Cont& __c) -> decltype(__c.size()) { return __c.size(); }
template <class _Tp, size_t _Sz>
constexpr size_t size(const _Tp (&)[_Sz]) noexcept { return _Sz; }
template <class _Cont>
constexpr auto empty(const _Cont& __c) -> decltype(__c.empty()) { return __c.empty(); }
template <class _Tp, size_t _Sz>
constexpr bool empty(const _Tp (&)[_Sz]) noexcept { return false; }
template <class _Ep>
constexpr bool empty(initializer_list<_Ep> __il) noexcept { return __il.size() == 0; }
template <class _Cont> constexpr
auto data(_Cont& __c) -> decltype(__c.data()) { return __c.data(); }
template <class _Cont> constexpr
auto data(const _Cont& __c) -> decltype(__c.data()) { return __c.data(); }
template <class _Tp, size_t _Sz>
constexpr _Tp* data(_Tp (&__array)[_Sz]) noexcept { return __array; }
template <class _Ep>
constexpr const _Ep* data(initializer_list<_Ep> __il) noexcept { return __il.begin(); }
#endif
_LIBCPP_END_NAMESPACE_STD
#endif // _LIBCPP_ITERATOR
| [
"[email protected]"
] | ||
1bd7e78b12775576454ac0338ebd2ee3361ed80d | fe2836176ca940977734312801f647c12e32a297 | /LeetCode/EPFL/69.cpp | da00f322993da0a541c9fac6241352b6e5974d39 | [] | no_license | henrybear327/Sandbox | ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064 | d77627dd713035ab89c755a515da95ecb1b1121b | refs/heads/master | 2022-12-25T16:11:03.363028 | 2022-12-10T21:08:41 | 2022-12-10T21:08:41 | 53,817,848 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 331 | cpp | class Solution {
public:
int mySqrt(int x) {
long long int l = 0, r = 50000;
while(r - l > 1) {
long long int mid = l + (r - l) / 2; // [l, r)
if(mid * mid <= x) {
l = mid;
} else {
r = mid;
}
}
return l;
}
};
| [
"[email protected]"
] | |
bb4d582210b7b42232de19fa9f20df6746f21455 | 14348563938cf268fce5efd922295ee31af6dec9 | /src/addon.cc | 0bb2ecd08634e0b2388267f0ce5fdaa2bdd89b82 | [
"MIT"
] | permissive | gongfan99/node_napi_promise_example | bc9a0dc8b679ef1800cc086a81516fe7eea0419d | 3aceefb114b4b2fc93f3438dee5c569b98493bf6 | refs/heads/master | 2021-05-14T18:41:30.130445 | 2018-08-07T01:01:03 | 2018-08-07T01:01:03 | 116,084,809 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,382 | cc | #include <stdexcept>
#include <node_api.h>
#include "addon.h"
#define napiErrChk(status) \
if (status != napi_ok){ \
const napi_extended_error_info* err_info_ptr; \
napi_get_last_error_info(env, &err_info_ptr); \
throw std::runtime_error(err_info_ptr->error_message); \
}
#define processRuntimeError(deferred) \
napi_value error, error_code, error_msg; \
napi_create_string_utf8(env, "ERROR", NAPI_AUTO_LENGTH, &error_code); \
napi_create_string_utf8(env, e.what(), NAPI_AUTO_LENGTH, &error_msg); \
napi_create_error(env, error_code, error_msg, &error); \
napi_reject_deferred(env, deferred, error);
napi_value create_promise(napi_env env, napi_deferred& deferred, napi_async_execute_callback execute, napi_async_complete_callback complete, void* pArgArr){
napi_value promise;
napiErrChk(napi_create_promise(env, &deferred, &promise));
napi_async_work asyncWorkResult;
napi_value arg1, arg2;
napiErrChk(napi_create_object(env, &arg1));
napiErrChk(napi_create_object(env, &arg2));
napiErrChk(napi_create_async_work(env, arg1, arg2, execute, complete, pArgArr, &asyncWorkResult));
napiErrChk(napi_queue_async_work(env, asyncWorkResult));
return promise;
}
/*=============================================================*
* FUNCTION: example_method
*==============================================================*/
napi_deferred deferred_example_method;
void execute_example_method(napi_env env, void* data){
arg_example_method* _data = (arg_example_method*)data;
_data->output = _data->input1 * _data->input2;
}
void complete_example_method(napi_env env, napi_status status, void* data){
try {
napiErrChk(status);
arg_example_method* _data = (arg_example_method*)data;
napi_value ans;
napiErrChk(napi_create_double(env, _data->output, &ans));
napi_value result;
napiErrChk(napi_create_object(env, &result));
#define DECLARE_NAPI_MEMBER(name) \
{#name, 0, 0, 0, 0, name, napi_enumerable, 0}
napi_property_descriptor descriptors[] = {
DECLARE_NAPI_MEMBER(ans)
};
napiErrChk(napi_define_properties(env, result, sizeof(descriptors) / sizeof(descriptors[0]), descriptors));
napiErrChk(napi_resolve_deferred(env, deferred_example_method, result));
} catch(const std::runtime_error& e){
processRuntimeError(deferred_example_method); // promise is rejected with e.what()
}
deferred_example_method = NULL;
}
napi_value example_method(napi_env env, const napi_callback_info info){
static arg_example_method argArr;
try {
size_t argc = 2;
napi_value args[2];
napiErrChk(napi_get_cb_info(env, info, &argc, args, nullptr, nullptr));
napiErrChk(napi_get_value_double(env, args[0], &(argArr.input1)));
napiErrChk(napi_get_value_double(env, args[1], &(argArr.input2)));
return create_promise(env, deferred_example_method, execute_example_method, complete_example_method, &argArr);
} catch(const std::runtime_error&){
return NULL;
}
}
#define DECLARE_NAPI_METHOD(name) \
{#name, 0, name, 0, 0, 0, napi_default, 0}
napi_value Init(napi_env env, napi_value exports){
napi_status status;
napi_property_descriptor descriptors[] = {
DECLARE_NAPI_METHOD(example_method)
};
status = napi_define_properties(env, exports, sizeof(descriptors) / sizeof(descriptors[0]), descriptors);
return exports;
}
NAPI_MODULE(addon, Init) | [
"[email protected]"
] | |
6756813e74f103e50e305d4dda2d549ad3e96d02 | 5a8b9a20f7c498981eb4ea33c1cba4b9554440b4 | /Xindows/src/site/text/LineServices.cpp | 159aa396b37b9a4b6ba767b3f7a076f6125e6021 | [] | no_license | mensong/IE5.5_vs2008 | 82ae91b3e45d312589b6fb461ceef5608dfb2f6b | 6149654180d0f422355e38b0c5d8e84e6e8c6a0c | refs/heads/master | 2022-05-01T07:32:15.727457 | 2018-11-14T03:07:51 | 2018-11-14T03:07:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 386,478 | cpp |
#include "stdafx.h"
#include "LineServices.h"
#include "OneRun.h"
#include "LSMeasurer.h"
#include "MarginInfo.h"
#include "lsobj.h"
#include "fontlnk.h"
#include "selrensv.h"
#include "lsrender.h"
#include "msls/lsdefs.h"
#include "msls/lskysr.h"
#include "msls/lscontxt.h"
#include "msls/tatenak.h"
#include "msls/hih.h"
#include "msls/warichu.h"
#include "msls/robj.h"
#include "msls/lssetdoc.h"
#include "msls/lsensubl.h"
#include "msls/lshyph.h"
#include "msls/lsulinfo.h"
#include "msls/lspap.h"
#include "msls/lsenum.h"
#include "msls/lscrline.h"
#include "msls/lsqline.h"
#include "msls/lsffi.h"
#define ONERUN_NORMAL 0x00
#define ONERUN_SYNTHETIC 0x01
#define ONERUN_ANTISYNTH 0x02
enum KASHIDA_PRIORITY
{
KASHIDA_PRIORITY1, // SCRIPT_JUSTIFY_ARABIC_TATWEEL
KASHIDA_PRIORITY2, // SCRIPT_JUSTIFY_ARABIC_SEEN
KASHIDA_PRIORITY3, // SCRIPT_JUSTIFY_ARABIC_HA
KASHIDA_PRIORITY4, // SCRIPT_JUSTIFY_ARABIC_ALEF
KASHIDA_PRIORITY5, // SCRIPT_JUSTIFY_ARABIC_RA
KASHIDA_PRIORITY6, // SCRIPT_JUSTIFY_ARABIC_BARA
KASHIDA_PRIORITY7, // SCRIPT_JUSTIFY_ARABIC_BA
KASHIDA_PRIORITY8, // SCRIPT_JUSTIFY_ARABIC_NORMAL
KASHIDA_PRIORITY9, // Max - lowest priority
};
//-----------------------------------------------------------------------------
//
// Member: CLineFlags::AddLineFlag
//
// Synopsis: Set flags for a given cp.
//
//-----------------------------------------------------------------------------
LSERR CLineFlags::AddLineFlag(LONG cp, DWORD dwlf)
{
int c = _aryLineFlags.Size();
if(!c || cp>=_aryLineFlags[c-1]._cp)
{
CFlagEntry fe(cp, dwlf);
return (S_OK==_aryLineFlags.AppendIndirect(&fe)
? lserrNone : lserrOutOfMemory);
}
return lserrNone;
}
LSERR CLineFlags::AddLineFlagForce(LONG cp, DWORD dwlf)
{
CFlagEntry fe(cp, dwlf);
_fForced = TRUE;
return (S_OK==_aryLineFlags.AppendIndirect(&fe)
? lserrNone : lserrOutOfMemory);
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetLineFlags
//
// Synopsis: Given a cp, it computes all the flags which have been turned
// on till that cp.
//
//-----------------------------------------------------------------------------
DWORD CLineFlags::GetLineFlags(LONG cpMax)
{
DWORD dwlf;
LONG i;
dwlf = FLAG_NONE;
for(i=0; i<_aryLineFlags.Size(); i++)
{
if(_aryLineFlags[i]._cp >= cpMax)
{
if(_fForced)
{
continue;
}
else
{
break;
}
}
else
{
dwlf |= _aryLineFlags[i]._dwlf;
}
}
return dwlf;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::AddLineCount
//
// Synopsis: Adds a particular line count at a given cp. It also checks if the
// count has already been added at that cp. This is needed to solve
// 2 problems with maintaining line counts:
// 1) A run can be fetched multiple times. In this case we want to
// increment the counts just once.
// 2) LS can over fetch runs, in which case we want to disregard
// the counts of those runs which did not end up on the line.
//
//-----------------------------------------------------------------------------
LSERR CLineCounts::AddLineCount(LONG cp, LC_TYPE lcType, LONG count)
{
CLineCount lc(cp, lcType, count);
int i = _aryLineCounts.Size();
while(i--)
{
if(_aryLineCounts[i]._cp != cp)
{
break;
}
if(_aryLineCounts[i]._lcType == lcType)
{
return lserrNone;
}
}
return S_OK==_aryLineCounts.AppendIndirect(&lc)?lserrNone:lserrOutOfMemory;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetLineCount
//
// Synopsis: Finds a particular line count at a given cp.
//
//-----------------------------------------------------------------------------
LONG CLineCounts::GetLineCount(LONG cp, LC_TYPE lcType)
{
LONG count = 0;
for(LONG i=0; i<_aryLineCounts.Size(); i++)
{
if(_aryLineCounts[i]._lcType==lcType && _aryLineCounts[i]._cp<cp)
{
count += _aryLineCounts[i]._count;
}
}
return count;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetMaxLineValue
//
// Synopsis: Finds a particular line value uptil a given cp.
//
//-----------------------------------------------------------------------------
LONG CLineCounts::GetMaxLineValue(LONG cp, LC_TYPE lcType)
{
LONG value = LONG_MIN;
for(LONG i=0; i<_aryLineCounts.Size(); i++)
{
if(_aryLineCounts[i]._lcType==lcType && _aryLineCounts[i]._cp<cp)
{
value = max(value, _aryLineCounts[i]._count);
}
}
return value;
}
//-----------------------------------------------------------------------------
//
// Function: Deinit
//
// Synopsis: This function is called during the destruction of the
// COneRunFreeList. It frees up any allocated COneRun objects.
//
// Returns: nothing
//
//-----------------------------------------------------------------------------
void COneRunFreeList::Deinit()
{
COneRun* por;
COneRun* porNext;
por = _pHead;
while(por)
{
Assert(por->_pCF == NULL);
Assert(por->_pComplexRun == NULL);
porNext = por->_pNext;
delete por;
por = porNext;
}
}
//-----------------------------------------------------------------------------
//
// Function: GetFreeOneRun
//
// Synopsis: Gets a free one run object. If we already have some in the free
// list, then we need to use those, else allocate off the heap.
// If porClone is non-NULL then we will clone in that one run
// into the newly allocated one.
//
// Returns: The run
//
//-----------------------------------------------------------------------------
COneRun* COneRunFreeList::GetFreeOneRun(COneRun* porClone)
{
COneRun* por = NULL;
if(_pHead)
{
por = _pHead;
_pHead = por->_pNext;
}
else
{
por = new COneRun();
}
if(por)
{
if(porClone)
{
if(por != por->Clone(porClone))
{
SpliceIn(por);
por = NULL;
goto Cleanup;
}
}
else
{
memset(por, 0, sizeof(COneRun));
por->_bConvertMode = CVM_UNINITED;
}
}
Cleanup:
return por;
}
//-----------------------------------------------------------------------------
//
// Function: SpliceIn
//
// Synopsis: Returns runs which are no longer needed back to the free list.
// It also uninits all the runs.
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
void COneRunFreeList::SpliceIn(COneRun* pFirst)
{
Assert(pFirst);
COneRun* por = pFirst;
COneRun* porLast = NULL;
// Clear out the runs when they are put into the free list.
while(por)
{
porLast = por;
por->Deinit();
// TODO(SujalP): por->_pNext is valid after Deinit!!!! Change this so
// that this code does not depend on this.
por = por->_pNext;
}
Assert(porLast);
porLast->_pNext = _pHead;
_pHead = pFirst;
}
//-----------------------------------------------------------------------------
//
// Function: Init
//
//-----------------------------------------------------------------------------
void COneRunCurrList::Init()
{
_pHead = _pTail = NULL;
}
//-----------------------------------------------------------------------------
//
// Function: Deinit
//
//-----------------------------------------------------------------------------
void COneRunCurrList::Deinit()
{
Assert(_pHead==NULL && _pTail==NULL);
}
//-----------------------------------------------------------------------------
//
// Function: SpliceOut
//
// Synopsis: Removes a chunk of runs from pFirst to pLast from the current list.
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
void COneRunCurrList::SpliceOut(COneRun* pFirst, COneRun* pLast)
{
Assert(pFirst && pLast);
// If the first node being removed is the head node then
// let us deal with that
if(pFirst->_pPrev == NULL)
{
Assert(pFirst == _pHead);
_pHead = pLast->_pNext;
}
else
{
pFirst->_pPrev->_pNext = pLast->_pNext;
}
// If the last node being removed is the tail node then
// let us deal with that
if(pLast->_pNext == NULL)
{
Assert(pLast == _pTail);
_pTail = pFirst->_pPrev;
}
else
{
pLast->_pNext->_pPrev = pFirst->_pPrev;
}
// Clear the next and prev pointers in the spliced out portion
pFirst->_pPrev = NULL;
pLast->_pNext = NULL;
}
//-----------------------------------------------------------------------------
//
// Function: SpliceInAfterMe
//
// Synopsis: Adds pFirst into the currentlist after the position
// indicated by pAfterMe. If pAfterMe is NULL its added to the head.
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
void COneRunCurrList::SpliceInAfterMe(COneRun* pAfterMe, COneRun* pFirst)
{
COneRun** ppor;
ppor = (pAfterMe==NULL) ? &_pHead : &pAfterMe->_pNext;
pFirst->_pNext = *ppor;
*ppor = pFirst;
pFirst->_pPrev = pAfterMe;
COneRun* pBeforeMe = pFirst->_pNext;
ppor = pBeforeMe==NULL ? &_pTail : &pBeforeMe->_pPrev;
*ppor = pFirst;
}
//-----------------------------------------------------------------------------
//
// Function: SpliceInBeforeMe
//
// Synopsis: Adds the onerun identified by pFirst before the run
// identified by pBeforeMe. If pBeforeMe is NULL then it
// adds it at the tail.
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
void COneRunCurrList::SpliceInBeforeMe(COneRun* pBeforeMe, COneRun* pFirst)
{
COneRun** ppor;
ppor = pBeforeMe==NULL ? &_pTail : &pBeforeMe->_pPrev;
pFirst->_pPrev = *ppor;
*ppor = pFirst;
pFirst->_pNext = pBeforeMe;
COneRun* pAfterMe = pFirst->_pPrev;
ppor = pAfterMe == NULL ? &_pHead : &pAfterMe->_pNext;
*ppor = pFirst;
}
//-----------------------------------------------------------------------------
//
// Function: InitLineServices (global)
//
// Synopsis: Instantiates a instance of the CLineServices object and makes
// the requisite calls into the LineServices DLL.
//
// Returns: HRESULT
// *ppLS - pointer to newly allocated CLineServices object
//
//-----------------------------------------------------------------------------
HRESULT InitLineServices(CMarkup* pMarkup, BOOL fStartUpLSDLL, CLineServices** ppLS)
{
HRESULT hr = S_OK;
CLineServices* pLS;
// Create our Line Services interface object
pLS = new CLineServices(pMarkup);
if(!pLS)
{
hr = E_OUTOFMEMORY;
goto Cleanup;
}
pLS->_plsc = NULL;
if(fStartUpLSDLL)
{
hr = StartUpLSDLL(pLS, pMarkup);
if(hr)
{
delete pLS;
goto Cleanup;
}
}
// Return value
*ppLS = pLS;
Cleanup:
RRETURN(hr);
}
HRESULT StartUpLSDLL(CLineServices* pLS, CMarkup* pMarkup)
{
LSCONTEXTINFO lsci;
HRESULT hr = S_OK;
if(pMarkup != pLS->GetMarkup())
{
pLS->_treeInfo._tpFrontier.Reinit(pMarkup, 0);
}
if(pLS->_plsc)
{
goto Cleanup;
}
// Fetch the Far East object handlers
hr = pLS->SetupObjectHandlers();
if(hr)
{
goto Cleanup;
}
// Populate the LSCONTEXTINFO
lsci.version = 0;
lsci.cInstalledHandlers = CLineServices::LSOBJID_COUNT;
*(CLineServices::LSIMETHODS**)&lsci.pInstalledHandlers = pLS->s_rgLsiMethods;
lsci.lstxtcfg = pLS->s_lstxtcfg;
lsci.pols = (POLS)pLS;
*(CLineServices::LSCBK*)&lsci.lscbk = CLineServices::s_lscbk;
lsci.fDontReleaseRuns = TRUE;
// Call in to Line Services
hr = HRFromLSERR(LsCreateContext(&lsci, &pLS->_plsc));
if(hr)
{
goto Cleanup;
}
// Set Expansion/Compression tables
hr = pLS->SetModWidthPairs();
if(hr)
{
goto Cleanup;
}
Cleanup:
RRETURN(hr);
}
//-----------------------------------------------------------------------------
//
// Function: DeinitLineServices (global)
//
// Synopsis: Frees a CLineServes object.
//
// Returns: HRESULT
//
//-----------------------------------------------------------------------------
HRESULT DeinitLineServices(CLineServices* pLS)
{
HRESULT hr = S_OK;
if(pLS->_plsc)
{
hr = HRFromLSERR(LsDestroyContext(pLS->_plsc));
}
delete pLS;
RRETURN(hr);
}
//-----------------------------------------------------------------------------
//
// Function: SetupObjectHandlers (member)
//
// Synopsis: LineServices uses object handlers for special textual
// representation. There are six such objects in Trident,
// and for five of these, the callbacks are implemented by
// LineServices itself. The sixth object, our handle for
// embedded/nested objects, is implemented in lsobj.cxx.
//
// Returns: S_OK - Success
// E_FAIL - A LineServices error occurred
//
//-----------------------------------------------------------------------------
HRESULT CLineServices::SetupObjectHandlers()
{
HRESULT hr = E_FAIL;
::LSIMETHODS* pLsiMethod;
pLsiMethod = (::LSIMETHODS*)s_rgLsiMethods;
if(lserrNone != LsGetRubyLsimethods(pLsiMethod+LSOBJID_RUBY))
{
goto Cleanup;
}
if(lserrNone != LsGetTatenakayokoLsimethods(pLsiMethod+LSOBJID_TATENAKAYOKO))
{
goto Cleanup;
}
if(lserrNone != LsGetHihLsimethods(pLsiMethod+LSOBJID_HIH))
{
goto Cleanup;
}
if(lserrNone != LsGetWarichuLsimethods(pLsiMethod+LSOBJID_WARICHU))
{
goto Cleanup;
}
if(lserrNone != LsGetReverseLsimethods(pLsiMethod+LSOBJID_REVERSE))
{
goto Cleanup;
}
hr = S_OK;
Cleanup:
return hr;
}
//-----------------------------------------------------------------------------
//
// Function: NewPtr (member, LS callback)
//
// Synopsis: A client-side allocation routine for LineServices.
//
// Returns: Pointer to buffer allocated, or NULL if out of memory.
//
//-----------------------------------------------------------------------------
void* WINAPI CLineServices::NewPtr(DWORD cb)
{
void* p;
p = MemAlloc(cb);
MemSetName((p, "CLineServices::NewPtr"));
return p;
}
//-----------------------------------------------------------------------------
//
// Function: DisposePtr (member, LS callback)
//
// Synopsis: A client-side 'free' routine for LineServices
//
// Returns: Nothing.
//
//-----------------------------------------------------------------------------
void WINAPI CLineServices::DisposePtr(void* p)
{
MemFree(p);
}
//-----------------------------------------------------------------------------
//
// Function: ReallocPtr (member, LS callback)
//
// Synopsis: A client-side reallocation routine for LineServices
//
// Returns: Pointer to new buffer, or NULL if out of memory
//
//-----------------------------------------------------------------------------
void* WINAPI CLineServices::ReallocPtr(void* p, DWORD cb)
{
void* q = p;
HRESULT hr;
hr = MemRealloc(&q, cb);
return hr?NULL:q;
}
LSERR WINAPI CLineServices::GleanInfoFromTheRun(COneRun* por, COneRun** pporOut)
{
LSERR lserr = lserrNone;
const CCharFormat* pCF;
BOOL fWasTextRun = TRUE;
SYNTHTYPE synthCur = SYNTHTYPE_NONE;
LONG cp = por->Cp();
LONG nDirLevel;
LONG nSynthDirLevel;
COneRun* porOut = por;
BOOL fLastPtp = por->_ptp == _treeInfo._ptpLayoutLast;
BOOL fNodeRun = por->_ptp->IsNode();
CTreeNode* pNodeRun = fNodeRun ? por->_ptp->Branch() : NULL;
por->_fHidden = FALSE;
porOut->_fNoTextMetrics = FALSE;
if(_pMeasurer->_fMeasureFromTheStart && (cp-_cpStart)<_pMeasurer->_cchPreChars)
{
WhiteAtBOL(cp);
por->MakeRunAntiSynthetic();
goto Done;
}
// Take care of hidden runs. We will simply anti-synth them
if(por->_fCharsForNestedElement && por->GetCF()->IsDisplayNone())
{
Assert(!_fIsEditable);
if(IsFirstNonWhiteOnLine(cp))
{
WhiteAtBOL(cp, por->_lscch);
}
_lineCounts.AddLineCount(cp, LC_HIDDEN, por->_lscch);
por->MakeRunAntiSynthetic();
goto Done;
}
// BR with clear causes a break after the line break,
// where as clear on phrase or block elements should clear
// before the phrase or block element comes into scope.
// Clear on aligned elements is handled separately, so
// do not mark the line with clear flags for aligned layouts.
if(cp != _cpStart
&& fNodeRun
&& pNodeRun->Tag()!=ETAG_BR
&& !por->GetFF()->_fAlignedLayout
&& _pMeasurer->TestForClear(_pMarginInfo, cp-1, TRUE, por->GetFF()))
{
lserr = TerminateLine(por, TL_ADDEOS, &porOut);
Assert(lserr!=lserrNone || porOut->_synthType!=SYNTHTYPE_NONE);
goto Cleanup;
}
if(!por->_fCharsForNestedLayout && fNodeRun)
{
CElement* pElement = pNodeRun->Element();
BOOL fFirstOnLineInPre = FALSE;
const CCharFormat* pCF = por->GetCF();
// This run can never be hidden, no matter what the HTML says
Assert(!por->_fHidden);
if(!fLastPtp && IsFirstNonWhiteOnLine(cp))
{
WhiteAtBOL(cp);
// If we have a <BR> inside a PRE tag then we do not want to
// break if the <BR> is the first thing on this line. This is
// because there should have been a \r before the <BR> which
// caused one line break and we should not have the <BR> break
// another line. The only execption is when the <BR> is the
// first thing in the paragraph. In this case we *do* want to
// break (the exception was discovered via bug 47870).
if(_pPFFirst->HasPre(_fInnerPFFirst)
&& !(_lsMode==LSMODE_MEASURER?_li._fFirstInPara:_pli->_fFirstInPara))
{
fFirstOnLineInPre = TRUE;
}
}
if(por->_ptp->IsEdgeScope()
&& (_pFlowLayout->IsElementBlockInContext(pElement) || fLastPtp)
&& (!fFirstOnLineInPre
|| (por->_ptp->IsEndElementScope() && pElement->_fBreakOnEmpty && pElement->Tag()==ETAG_PRE))
&& pElement->Tag()!=ETAG_BR)
{
lserr = TerminateLine(por, (fLastPtp?TL_ADDEOS:TL_ADDLBREAK), &porOut);
if(lserr!=lserrNone || !porOut)
{
lserr = lserrOutOfMemory;
goto Done;
}
// Hide the run that contains the WCH_NODE for the end
// edge in the layout
por->_fHidden = TRUE;
if(fLastPtp)
{
if(IsFirstNonWhiteOnLine(cp)
&& (_fIsEditable || _pFlowLayout->GetContentTextLength()==0))
{
CCcs* pccs = GetCcs(por, _pci->_hdc, _pci);
if(pccs)
{
RecalcLineHeight(pccs, &_li);
}
// This line is not a dummy line. It has a height. The
// code later will treat it as a dummy line. Prevent
// that from happening.
_fLineWithHeight = TRUE;
}
goto Done;
}
// Bug66768: If we came here at BOL without the _fHasBulletOrNum flag being set, it means
// that the previous line had a <BR> and we will terminate this line at the </li> so that
// all it contains is the </li>. In this case we do infact want the line to have a height
// so users can type there.
else if(ETAG_LI==pElement->Tag()
&& por->_ptp->IsEndNode()
&& !_li._fHasBulletOrNum
&& IsFirstNonWhiteOnLine(cp))
{
CCcs* pccs = GetCcs(por, _pci->_hdc, _pci);
if(pccs)
{
RecalcLineHeight(pccs, &_li);
}
_fLineWithHeight = TRUE;
}
}
else if(por->_ptp->IsEndNode() && pElement->Tag()==ETAG_BR && !fFirstOnLineInPre)
{
_lineFlags.AddLineFlag(cp-1, FLAG_HAS_A_BR);
AssertSz(por->_ptp->IsEndElementScope(), "BR's cannot be proxied!");
Assert(por->_lscch == 1);
Assert(por->_lscchOriginal == 1);
lserr = TerminateLine(por, TL_ADDNONE, &porOut);
if(lserr != lserrNone)
{
goto Done;
}
if(!porOut)
{
porOut = por;
}
por->FillSynthData(SYNTHTYPE_LINEBREAK);
_pMeasurer->TestForClear(_pMarginInfo, cp, FALSE, por->GetFF());
if(IsFirstNonWhiteOnLine(cp))
{
_fLineWithHeight = TRUE;
}
}
// Handle premature Ruby end here
// Example: <RUBY>some text</RUBY>
else if(pElement->Tag()==ETAG_RUBY
&& por->_ptp->IsEndNode() // this is an end ruby tag
&& _fIsRuby // and we currently have an open ruby
&& !_fIsRubyText // and we have not yet closed it off
&& !IsFrozen())
{
COneRun* porTemp = NULL;
Assert(por->_lscch == 1);
Assert(por->_lscchOriginal == 1);
// if we got here then we opened a ruby but never ended the main
// text (i.e., with an RT). Now we want to end everything, so this
// involves first appending a synthetic to end the main text and then
// another one to end the (nonexistent) pronunciation text.
lserr = AppendILSControlChar(por, SYNTHTYPE_ENDRUBYMAIN, &porOut);
Assert(lserr!=lserrNone || porOut->_synthType!=SYNTHTYPE_NONE);
lserr = AppendILSControlChar(por, SYNTHTYPE_ENDRUBYTEXT, &porTemp);
Assert(lserr!=lserrNone || porTemp->_synthType!=SYNTHTYPE_NONE);
// We set this to FALSE because por will eventually be marked as
// "not processed yet", which means that the above condition will trip
// again unless we indicate that the ruby is now closed
_fIsRuby = FALSE;
}
else if(_fNoBreakForMeasurer
&& por->_ptp->IsEndNode()
&& (pElement->Tag()==ETAG_NOBR
|| pElement->Tag()==ETAG_WBR)
&& !IsFrozen())
{
// NOTES on WBR handling: By ending the NOBR ILS obj here, we create a
// break oportunity. When fetchrun gets called again, the check below
// will see (from the pcf) that the text still can't break, but that
// it's not within an ILS pfnFmt, so it will just start a new one. Also,
// since wbr is in the story, we can just substitute it, and don't need
// to create a synthetic char.
//
// BUGBUG (mikejoch) This will cause grief if the NOBR is overlapped with
// a reverse object. In fact there are numerous problems mixing NOBRs
// with reverse objects; this will need to be addressed separately.
// FUTURE (mikejoch) It would be a good idea to actually write a real word
// breaking function for NOBRs instead of terminating and restarting the
// object like this. Doing so would get rid of this elseif, reduce the
// synthetic store, and generally be clearer.
if(pElement->Tag() == ETAG_WBR)
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_EMBED_OR_WBR);
}
por->FillSynthData(SYNTHTYPE_ENDNOBR);
}
else
{
// A normal phrase element start or end run. Just make
// it antisynth so that it is hidden from LS
por->MakeRunAntiSynthetic();
}
if(!por->IsAntiSyntheticRun())
{
// Empty lines will need some height!
if(pElement->_fBreakOnEmpty)
{
if(IsFirstNonWhiteOnLine(cp))
{
// We provide a line height only if something in our whitespace
// is not providing some visual representation of height. So if our
// whitespace was either aligned or abspos'd then we do NOT provide
// any height since these sites provide some height of their own.
if(_lineCounts.GetLineCount(por->Cp(), LC_ALIGNEDSITES)==0
&& _lineCounts.GetLineCount(por->Cp(), LC_ABSOLUTESITES)==0)
{
CCcs* pccs = GetCcs(por, _pci->_hdc, _pci);
if(pccs)
{
RecalcLineHeight(pccs, &_li);
}
_fLineWithHeight = TRUE;
}
}
}
// If we have already decided to give the line a height then we want
// to get the text metrics else we do not want the text metrics. The
// reasons are explained in the blurb below.
if(!_fLineWithHeight)
{
// If we have not anti-synth'd the run, it means that we have terminated
// the line -- either due to a block element or due to a BR element. In either
// of these 2 cases, if the element did not have break on empty, then we
// do not want any of them to induce a descent. If it did have a break
// on empty then we have already computed the heights, so there is no
// need to do so again.
por->_fNoTextMetrics = TRUE;
}
}
if(pCF->IsRelative(por->_fInnerCF))
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_RELATIVE);
}
// Set the flag on the line if the current pcf has a background
// image or color
if(pCF->HasBgImage(por->_fInnerCF) || pCF->HasBgColor(por->_fInnerCF))
{
// NOTE(SujalP): If _cpStart has a background, and nothing else ends up
// on the line, then too we want to draw the background. But since the
// line is empty cpMost == _cpStart and hence GetLineFlags will not
// find this flag. To make sure that it does, we subtract 1 from the cp.
// (Bug 43714).
(cp==_cpStart) ? _lineFlags.AddLineFlagForce(cp-1, FLAG_HAS_BACKGROUND)
: _lineFlags.AddLineFlag(cp, FLAG_HAS_BACKGROUND);
}
if(pCF->_fBidiEmbed && _pBidiLine==NULL && !IsFrozen())
{
_pBidiLine = new CBidiLine(_treeInfo, _cpStart, _li._fRTL, _pli);
Assert(GetDirLevel(por->_lscpBase) == 0);
}
// Some cases here which we need to let thru for the orther glean code
// to look at........
goto Done;
}
// Figure out CHP, the layout info.
pCF = IsAdornment() ? _pCFLi : por->GetCF();
Assert(pCF);
if(pCF->IsVisibilityHidden())
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_NOBLAST);
}
// If we've transitioned directions, begin or end a reverse object.
if(_pBidiLine!=NULL &&
(nDirLevel=_pBidiLine->GetLevel(cp))!=(nSynthDirLevel=GetDirLevel(por->_lscpBase)))
{
if(!IsFrozen())
{
// Determine the type of synthetic character to add.
if(nDirLevel > nSynthDirLevel)
{
synthCur = SYNTHTYPE_REVERSE;
}
else
{
synthCur = SYNTHTYPE_ENDREVERSE;
}
// Add the new synthetic character.
lserr = AppendILSControlChar(por, synthCur, &porOut);
Assert(lserr!=lserrNone || porOut->_synthType!=SYNTHTYPE_NONE);
goto Cleanup;
}
}
else if(pCF->_bSpecialObjectFlagsVar != _bSpecialObjectFlagsVar)
{
if(!IsFrozen())
{
if(CheckForSpecialObjectBoundaries(por, &porOut))
{
goto Cleanup;
}
}
}
CHPFromCF( por, pCF );
por->_brkopt = (pCF->_fLineBreakStrict?fBrkStrict:0) | (pCF->_fNarrow?0:fCscWide);
// Note the relative stuff
if(!por->_fCharsForNestedLayout && pCF->IsRelative(por->_fInnerCF))
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_RELATIVE);
}
// Set the flag on the line if the current pcf has a background
// image or color
if(pCF->HasBgImage(por->_fInnerCF) || pCF->HasBgColor(por->_fInnerCF))
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_BACKGROUND);
}
if(!por->_fCharsForNestedLayout)
{
const TCHAR chFirst = por->_pchBase[0];
// Currently the only nested elements we have other than layouts are hidden
// elements. These are taken care of before we get here, so we should
// never be here with this flag on.
Assert(!por->_fCharsForNestedElement);
// A regular text run.
// Arye: Might be in edit mode on last empty line and trying
// to measure. Need to fail gracefully.
// AssertSz( *ppwchRun, "Expected some text.");
// Begin nasty exception code to deal with all the possible
// special characters in the run.
Assert(pCF != NULL);
if(_pBidiLine==NULL && (IsRTLChar(chFirst) || pCF->_fBidiEmbed))
{
if(!IsFrozen())
{
_pBidiLine = new CBidiLine(_treeInfo, _cpStart, _li._fRTL, _pli);
Assert(GetDirLevel(por->_lscpBase) == 0);
if(_pBidiLine!=NULL && _pBidiLine->GetLevel(cp)>0)
{
synthCur = SYNTHTYPE_REVERSE;
// Add the new synthetic character.
lserr = AppendILSControlChar(por, synthCur, &porOut);
Assert(lserr!=lserrNone || porOut->_synthType!=SYNTHTYPE_NONE);
goto Cleanup;
}
}
}
// Don't blast disabled lines.
if(pCF->_fDisabled)
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_NOBLAST);
}
// NB (cthrash) If an NBSP character is at the beginning of a
// text run, LS will convert that to a space before calling
// GetRunCharWidths. This implies that we will fail to recognize
// the presence of NBSP chars if we only check at GRCW. So an
// additional check is required here. Similarly, if our
if(chFirst == WCH_NBSP)
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_NBSP);
}
lserr = ChunkifyTextRun(por, &porOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
if(porOut != por)
{
goto Cleanup;
}
}
else
{
// It has to be some layout other than the layout we are measuring
Assert(por->Branch()->GetUpdatedLayout()
&& por->Branch()->GetUpdatedLayout()!=_pFlowLayout);
#ifdef _DEBUG
CElement* pElementLayout = por->Branch()->GetUpdatedLayout()->ElementOwner();
long cpElemStart = pElementLayout->GetFirstCp();
// Count the characters in this site, so LS can skip over them on this line.
Assert(por->_lscch == GetNestedElementCch(pElementLayout));
#endif
_fHasSites = _fMinMaxPass;
// We check if this site belongs on its own line.
// If so, we terminate this line with an EOS marker.
if(IsOwnLineSite(por))
{
// This guy belongs on his own line. But we only have to terminate the
// current line if he's not the first thing on this line.
if(cp != _cpStart)
{
Assert(!por->_fHidden);
// We're not first on line. Terminate this line!
lserr = TerminateLine(por, TL_ADDEOS, &porOut);
Assert(lserr!=lserrNone || porOut->_synthType!=SYNTHTYPE_NONE);
goto Cleanup;
}
// else we are first on line, so even though this guy needs to be
// on his own line, keep going, because he is!
}
// If we kept looking after a single line site in _fScanForCR and we
// came here, it means that we have another site after the single site and
// hence should terminate the line
else if(_fScanForCR && _fSingleSite)
{
lserr = TerminateLine(por, TL_ADDEOS, &porOut);
goto Cleanup;
}
// Whatever this is, it is under a different site, so we have
// to give LS an embedded object notice, and later recurse back
// to format this other site. For tables and spans and such, we have
// to count and skip over the characters in this site.
por->_lsCharProps.idObj = LSOBJID_EMBEDDED;
Assert(cp == cpElemStart-1);
// ppwchRun shouldn't matter for a LSOBJID_EMBEDDED, but chunkify
// objectrun might modify for putting in the symbols for aligned and
// abspos'd sites
fWasTextRun = FALSE;
lserr = ChunkifyObjectRun(por, &porOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
por = porOut;
}
lserr = SetRenderingHighlights(por);
if(lserr != lserrNone)
{
goto Cleanup;
}
if(fWasTextRun && !por->_fHidden)
{
lserr = CheckForUnderLine(por);
if(lserr != lserrNone)
{
goto Cleanup;
}
if(_chPassword)
{
lserr = CheckForPassword(por);
if(lserr != lserrNone)
{
goto Cleanup;
}
}
else
{
lserr = CheckForTransform(por);
if(lserr != lserrNone)
{
goto Cleanup;
}
}
}
Cleanup:
// Some characters we don't want contributing to the line height.
// Non-textual runs shouldn't, don't bother for hidden runs either.
//
// ALSO, we want text metrics if we had a BR or block element
// which was not break on empty
porOut->_fNoTextMetrics |= porOut->_fHidden || porOut->_lsCharProps.idObj!=LSOBJID_TEXT;
Done:
*pporOut = porOut;
return lserr;
}
BOOL IsPreLikeNode(CTreeNode* pNode)
{
ELEMENT_TAG eTag = pNode->Tag();
return (eTag==ETAG_PRE || eTag==ETAG_XMP || eTag==ETAG_PLAINTEXT || eTag==ETAG_LISTING);
}
//-----------------------------------------------------------------------------
//
// Function: CheckForSpecialObjectBoundaries
//
// Synopsis: This function checks to see whether special objects should
// be opened or closed based on the CF properties
//
// Returns: The one run to submit to line services via the pporOut
// parameter. Will only change this if necessary, and will
// return TRUE if that parameter changed.
//
//-----------------------------------------------------------------------------
BOOL WINAPI CLineServices::CheckForSpecialObjectBoundaries(COneRun* por, COneRun** pporOut)
{
BOOL fRet = FALSE;
LSERR lserr;
const CCharFormat* pCF = por->GetCF();
Assert(pCF);
if(pCF->_fIsRuby && !_fIsRuby)
{
Assert(!_fIsRubyText);
// Open up a new ruby here (we only enter here in the open ruby case,
// the ruby object is closed when we see an /RT)
_fIsRuby = TRUE;
#ifdef RUBY_OVERHANG
// We set this flag here so that LS will try to do modify the width of
// run, which will trigger a call to FetchRubyWidthAdjust
por->_lsCharProps.fModWidthOnRun = TRUE;
#endif
_yMaxHeightForRubyBase = 0;
_lineFlags.AddLineFlag(por->Cp(), FLAG_HAS_NOBLAST);
_lineFlags.AddLineFlag(por->Cp(), FLAG_HAS_RUBY);
lserr = AppendILSControlChar(por, SYNTHTYPE_RUBYMAIN, pporOut);
Assert(lserr!=lserrNone || (*pporOut)->_synthType!=SYNTHTYPE_NONE);
fRet = TRUE;
}
else if(pCF->_fIsRubyText != _fIsRubyText)
{
Assert(_fIsRuby);
// if _fIsRubyText is true, that means we have now arrived at text that
// is no longer Ruby Text. So, we should close the Ruby object by passing
// ENDRUBYTEXT to Line Services
if(_fIsRubyText)
{
_fIsRubyText = FALSE;
_fIsRuby = FALSE;
lserr = AppendILSControlChar(por, SYNTHTYPE_ENDRUBYTEXT, pporOut);
Assert(lserr!=lserrNone || (*pporOut)->_synthType!=SYNTHTYPE_NONE);
fRet = TRUE;
}
// if _fIsRubyText is false, that means that we are now entering text that
// is Ruby text. So, we must tell Line Services that we are no longer
// giving it main text.
else
{
_fIsRubyText = TRUE;
lserr = AppendILSControlChar(por, SYNTHTYPE_ENDRUBYMAIN, pporOut);
Assert(lserr!=lserrNone || (*pporOut)->_synthType!=SYNTHTYPE_NONE);
fRet = TRUE;
}
}
else
{
BOOL fNoBreak = pCF->HasNoBreak(por->_fInnerCF);
if(fNoBreak != !!_fNoBreakForMeasurer)
{
Assert(!IsFrozen());
// phrase elements inside PRE's which have layout will not have the HasPre bit turned
// on and hence we will still start a NOBR object for them. The problem then is that
// we need to terminate the line for '\r'. To do this we will have to scan the text.
// To minimize the scanning we find out if we are really in such a situation.
if(_pMarkup->SearchBranchForCriteriaInStory(por->Branch(), IsPreLikeNode))
{
_fScanForCR = TRUE;
goto Cleanup;
}
if(!IsOwnLineSite(por))
{
// Begin or end NOBR block.
// BUGBUG (paulpark) this won't work with nearby-nested bidi's and nobr's because
// the por's we cache in _arySynth are not accurately postioned.
lserr = AppendILSControlChar(por,
(fNoBreak?SYNTHTYPE_NOBR:SYNTHTYPE_ENDNOBR), pporOut);
Assert(lserr!=lserrNone || (*pporOut)->_synthType!=SYNTHTYPE_NONE);
fRet = TRUE;
}
}
}
Cleanup:
return fRet;
}
//-----------------------------------------------------------------------------
//
// Function: GetAutoNumberInfo (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetAutoNumberInfo(
LSKALIGN* plskalAnm, // OUT
PLSCHP plsChpAnm, // OUT
PLSRUN* pplsrunAnm, // OUT
WCHAR* pwchAdd, // OUT
PLSCHP plsChpWch, // OUT
PLSRUN* pplsrunWch, // OUT
BOOL* pfWord95Model, // OUT
long* pduaSpaceAnm, // OUT
long* pduaWidthAnm) // OUT
{
LSTRACE(GetAutoNumberInfo);
LSNOTIMPL(GetAutoNumberInfo);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetNumericSeparators (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetNumericSeparators(
PLSRUN plsrun, // IN
WCHAR* pwchDecimal, // OUT
WCHAR* pwchThousands) // OUT
{
LSTRACE(GetNumericSeparators);
// BUGBUG (cthrash) Should set based on locale.
*pwchDecimal = L'.';
*pwchThousands = L',';
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: CheckForDigit (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::CheckForDigit(
PLSRUN plsrun, // IN
WCHAR wch, // IN
BOOL* pfIsDigit) // OUT
{
LSTRACE(CheckForDigit);
// BUGBUG (mikejoch) IsCharDigit() doesn't check for international numbers.
*pfIsDigit = IsCharDigit(wch);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FetchPap (member, LS callback)
//
// Synopsis: Callback to fetch paragraph properties for the current line.
//
// Returns: lserrNone
// lserrOutOutMemory
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FetchPap(/*[in]*/LSCP lscp, /*[out]*/PLSPAP pap)
{
LSTRACE(FetchPap);
LSERR lserr = lserrNone;
const CParaFormat* pPF;
CTreePos* ptp;
CTreeNode* pNode;
LONG cp;
BOOL fInnerPF;
CComplexRun* pcr = NULL;
CElement* pElementFL = _pFlowLayout->ElementContent();
Assert(lscp <= _treeInfo._lscpFrontier);
if(lscp < _treeInfo._lscpFrontier)
{
COneRun* por = FindOneRun(lscp);
Assert(por);
if(!por)
{
goto Cleanup;
}
ptp = por->_ptp;
pPF = por->_pPF;
fInnerPF = por->_fInnerPF;
cp = por->Cp();
pcr = por->GetComplexRun();
}
else
{
// The problem is that we are at the end of the list
// and hence we cannot find the interesting one-run. In this
// case we have to use the frontier information. However,
// the frontier information maybe exhausted, so we need to
// refresh it by calling AdvanceTreePos() here.
if(!_treeInfo._cchRemainingInTreePos && !_treeInfo._fHasNestedElement)
{
if(!_treeInfo.AdvanceTreePos())
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
}
ptp = _treeInfo._ptpFrontier;
pPF = _treeInfo._pPF; // should we use CLineServices::_pPFFirst here???
fInnerPF = _treeInfo._fInnerPF;
cp = _treeInfo._cpFrontier;
}
Assert(ptp);
Assert(pPF);
// Set up paragraph properties
PAPFromPF(pap, pPF, fInnerPF, pcr);
pap->cpFirst = cp;
// BUGBUG SLOWBRANCH: GetBranch is **way** too slow to be used here.
pNode = ptp->GetBranch();
if(pNode->Element() == pElementFL)
{
pap->cpFirstContent = _treeInfo._cpLayoutFirst;
}
else
{
CTreeNode* pNodeBlock = _treeInfo._pMarkup->SearchBranchForBlockElement(pNode, _pFlowLayout);
if (pNodeBlock)
{
CElement* pElementPara = pNodeBlock->Element();
pap->cpFirstContent = (pElementPara==pElementFL) ?
_treeInfo._cpLayoutFirst : pElementPara->GetFirstCp();
}
else
{
pap->cpFirstContent = _treeInfo._cpLayoutFirst;
}
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: FetchTabs (member, LS callback)
//
// Synopsis: Callback to return tab positions for the current line.
//
// LineServices calls the callback when it encounters a tab in
// the line, but does not pass the plsrun. The cp is supposed to
// be used to locate the paragraph.
//
// Instead of allocating a buffer for the return value, we return
// a table that resides on the CLineServices object. The tab
// values are in twips.
//
// Returns:
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FetchTabs(
LSCP lscp, // IN
PLSTABS plstabs, // OUT
BOOL* pfHangingTab, // OUT
long* pduaHangingTab, // OUT
WCHAR* pwchHangingTabLeader ) // OUT
{
LSTRACE(FetchTabs);
LONG cTab = _pPFFirst->GetTabCount(_fInnerPFFirst);
// This tab might end up on the current line, so we can't blast.
_fSawATab = TRUE;
// Note: lDefaultTab is a constant defined in textedit.h
plstabs->duaIncrementalTab = lDefaultTab;
// BUGBUG (cthrash) What to do for hanging tabs? CSS? Auto?
*pfHangingTab = FALSE;
*pduaHangingTab = 0;
*pwchHangingTabLeader = 0;
AssertSz(cTab>=0&&cTab<=MAX_TAB_STOPS, "illegal tab count");
if(!_pPFFirst->HasTabStops(_fInnerPFFirst) && cTab<2)
{
if(cTab == 1)
{
plstabs->duaIncrementalTab = _pPFFirst->GetTabPos(_pPFFirst->_rgxTabs[0]);
}
plstabs->iTabUserDefMac = 0;
plstabs->pTab = NULL;
}
else
{
LSTBD* plstbd = _alstbd + cTab - 1;
while(cTab)
{
long uaPos;
long lAlign;
long lLeader;
_pPFFirst->GetTab(--cTab, &uaPos, &lAlign, &lLeader);
Assert(lAlign>=0 && lAlign<tomAlignBar && lLeader>=0 && lLeader<tomLines );
// NB (cthrash) To ensure that the LSKTAB cast is safe, we
// verify that that define's haven't changed values in
// CLineServices::InitTimeSanityCheck().
plstbd->lskt = LSKTAB(lAlign);
plstbd->ua = uaPos;
plstbd->wchTabLeader = s_achTabLeader[lLeader];
plstbd--;
}
plstabs->iTabUserDefMac = cTab;
plstabs->pTab = _alstbd;
}
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetBreakThroughTab (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetBreakThroughTab(
long uaRightMargin, // IN
long uaTabPos, // IN
long* puaRightMarginNew) // OUT
{
LSTRACE(GetBreakThroughTab);
LSNOTIMPL(GetBreakThroughTab);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: CheckParaBoundaries (member, LS callback)
//
// Synopsis: Callback to determine whether two cp's reside in different
// paragraphs (block elements in HTML terms).
//
// Returns: lserrNone
// *pfChanged - TRUE if cp's are in different block elements.
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::CheckParaBoundaries(
LSCP lscpOld, // IN
LSCP lscpNew, // IN
BOOL* pfChanged) // OUT
{
LSTRACE(CheckParaBoundaries);
*pfChanged = FALSE;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetRunCharWidths (member, LS callback)
//
// Synopsis: Callback to return character widths of text in the current run,
// represented by plsrun.
//
// Returns: lserrNone
// rgDu - array of character widths
// pduDu - sum of widths in rgDu, upto *plimDu characters
// plimDu - character count in rgDu
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetRunCharWidths(
PLSRUN plsrun, // IN
LSDEVICE lsDeviceID, // IN
LPCWSTR pwchRun, // IN
DWORD cwchRun, // IN
long du, // IN
LSTFLOW kTFlow, // IN
int* rgDu, // OUT
long* pduDu, // OUT
long* plimDu) // OUT
{
LSTRACE(GetRunCharWidths);
LSERR lserr = lserrNone;
pwchRun = plsrun->_fMakeItASpace ? _T(" ") : pwchRun;
const WCHAR* pch = pwchRun;
int* pdu = rgDu;
int* pduEnd = rgDu + cwchRun;
long duCumulative = 0;
LONG cpCurr = plsrun->Cp();
const CCharFormat* pCF = plsrun->GetCF();
CCcs* pccs;
CBaseCcs* pBaseCcs;
HDC hdc;
LONG duChar = 0;
Assert( cwchRun );
pccs = GetCcs(plsrun, _pci->_hdc, _pci);
if(!pccs)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
hdc = pccs->GetHDC();
pBaseCcs = pccs->GetBaseCcs();
// CSS
Assert(IsAdornment() || !plsrun->_fCharsForNestedElement);
// Add up the widths
while(pdu < pduEnd)
{
// The tight inner loop.
TCHAR ch = *pch++;
ProcessOneChar(cpCurr, pdu, rgDu, ch);
Verify(pBaseCcs->Include(hdc, ch, duChar));
duCumulative += *pdu++ = duChar;
if(duCumulative > du)
{
break;
}
}
if(GetLetterSpacing(pCF) || pCF->HasCharGrid(TRUE))
{
lserr = GetRunCharWidthsEx(plsrun, pwchRun, cwchRun,
du, rgDu, pduDu, plimDu);
}
else
{
*pduDu = duCumulative;
*plimDu = pdu - rgDu;
}
Cleanup:
return lserr;
}
LSERR CLineServices::GetRunCharWidthsEx(
PLSRUN plsrun,
LPCWSTR pwchRun,
DWORD cwchRun,
LONG du,
int* rgDu,
long* pduDu,
long* plimDu)
{
LONG lserr = lserrNone;
LONG duCumulative = 0;
LONG cpCurr = plsrun->Cp();
int* pdu = rgDu;
int* pduEnd = rgDu + cwchRun;
const CCharFormat* pCF = plsrun->GetCF();
LONG xLetterSpacing = GetLetterSpacing(pCF);
CCcs* pccs;
pccs = GetCcs(plsrun, _pci->_hdc, _pci);
if(!pccs)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
_lineFlags.AddLineFlagForce(cpCurr, FLAG_HAS_NOBLAST);
if(pCF->HasCharGrid(TRUE))
{
long lGridSize = GetCharGridSize();
switch(pCF->GetLayoutGridType(TRUE))
{
case styleLayoutGridTypeStrict:
case styleLayoutGridTypeFixed:
// we have strict or fixed layout grid for this run
{
if(plsrun->IsOneCharPerGridCell())
{
for(pdu=rgDu; pdu<pduEnd;)
{
if(xLetterSpacing < 0)
{
MeasureCharacter(pwchRun[pdu-rgDu], cpCurr, rgDu, pccs, pdu);
}
*pdu += xLetterSpacing;
*pdu = GetClosestGridMultiple(lGridSize, *pdu);
duCumulative += *pdu++;
if(duCumulative > du)
{
break;
}
}
}
else
{
BOOL fLastInChain = FALSE;
LONG duOuter = 0;
// Get width of this run
for(pdu=rgDu; pdu<pduEnd;)
{
if(xLetterSpacing < 0)
{
MeasureCharacter(pwchRun[pdu-rgDu], cpCurr, rgDu, pccs, pdu);
}
*pdu += xLetterSpacing;
duCumulative += *pdu++;
if(duCumulative > du)
{
duOuter = *(pdu-1);
duCumulative -= duOuter;
fLastInChain = TRUE;
break;
}
}
if(!fLastInChain)
{
// Fetch next run
COneRun* pNextRun = 0;
LPCWSTR lpcwstrJunk;
DWORD dwJunk;
BOOL fJunk;
LSCHP lschpJunk;
FetchRun(plsrun->_lscpBase + plsrun->_lscch, &lpcwstrJunk, &dwJunk, &fJunk, &lschpJunk,
&pNextRun);
fLastInChain = !plsrun->IsSameGridClass(pNextRun);
}
if(!fLastInChain)
{ // we are inside a runs chain with same grid properties
plsrun->_xWidth = duCumulative;
}
else
{ // we are at the end of runs chain with same grid properties
// Get width of runs chain
LONG duChainWidth = duCumulative;
COneRun* pFirstRun = plsrun;
while(pFirstRun->_pPrev)
{
while(pFirstRun->_pPrev && !pFirstRun->_pPrev->_ptp->IsText())
{
pFirstRun = pFirstRun->_pPrev;
}
if(plsrun->IsSameGridClass(pFirstRun->_pPrev))
{
duChainWidth += pFirstRun->_pPrev->_xWidth;
pFirstRun = pFirstRun->_pPrev;
}
else
{
break;
}
}
// Update width and draw offset of the chain
LONG duGrid = GetClosestGridMultiple(lGridSize, duChainWidth);
LONG lOffset = (duGrid - duChainWidth) / 2;
plsrun->_xWidth = duCumulative + duGrid - duChainWidth - lOffset;
plsrun->_xDrawOffset = lOffset;
COneRun* pPrevRun = plsrun->_pPrev;
while(pPrevRun)
{
while(pPrevRun && !pPrevRun->_ptp->IsText())
{
pPrevRun = pPrevRun->_pPrev;
}
if(plsrun->IsSameGridClass(pPrevRun))
{
pPrevRun->_xDrawOffset = lOffset;
pPrevRun = pPrevRun->_pPrev;
}
else
{
break;
}
}
duCumulative += duOuter + duGrid - duChainWidth;
}
}
}
break;
case styleLayoutGridTypeLoose:
default:
// we have loose layout grid or layout grid type is not set for this run
for(pdu=rgDu; pdu<pduEnd;)
{
if(xLetterSpacing < 0)
{
MeasureCharacter(pwchRun[pdu-rgDu], cpCurr, rgDu, pccs, pdu);
}
*pdu += xLetterSpacing;
*pdu += LooseTypeWidthIncrement(pwchRun[pdu-rgDu], (plsrun->_brkopt==fCscWide), lGridSize);
duCumulative += *pdu++;
if(duCumulative > du)
{
break;
}
}
}
}
else
{
// But we must be careful to deal with negative letter spacing,
// since that will cause us to have to actually get some character
// widths since the line length will be extended. If the
// letterspacing is positive, then we know all the letters we're
// gonna use have already been measured.
for(pdu=rgDu; pdu<pduEnd;)
{
if(xLetterSpacing < 0)
{
MeasureCharacter(pwchRun[pdu-rgDu], cpCurr, rgDu, pccs, pdu);
}
*pdu += xLetterSpacing;
duCumulative += *pdu++;
if(duCumulative > du)
{
break;
}
}
if(xLetterSpacing && pdu>=pduEnd && !_pCFLi)
{
LPCWSTR lpcwstrJunk;
DWORD dwJunk;
BOOL fJunk;
LSCHP lschpJunk;
COneRun* por;
int xLetterSpacingNextRun = 0;
lserr = FetchRun(plsrun->_lscpBase+plsrun->_lscch,
&lpcwstrJunk, &dwJunk, &fJunk, &lschpJunk, &por);
if(lserr==lserrNone && por->_ptp!=_treeInfo._ptpLayoutLast)
{
xLetterSpacingNextRun = GetLetterSpacing(por->GetCF());
}
if(xLetterSpacing != xLetterSpacingNextRun)
{
*(pdu-1) -= xLetterSpacing;
duCumulative -= xLetterSpacing;
}
}
}
*pduDu = duCumulative;
*plimDu = pdu - rgDu;
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: GetLineOrCharGridSize()
//
// Synopsis: This function finds out what the height or width of a grid cell
// is in pixels, making conversions if necessary. If this value has
// already been calculated, the calculated value is immediately returned
//
// Returns: long value of the width of a grid cell in pixels
//
//-----------------------------------------------------------------------------
long WINAPI CLineServices::GetLineOrCharGridSize(BOOL fGetCharGridSize)
{
const CUnitValue* pcuv;
CUnitValue::DIRECTION dir;
long* lGridSize = fGetCharGridSize ? &_lCharGridSize : &_lLineGridSize;
// If we already have a cached value, return that, or if we haven't set
// set up the ccs yet return zero
if(*lGridSize!=0 || !_pPFFirst)
{
goto Cleanup;
}
pcuv = fGetCharGridSize ? &(_pPFFirst->GetCharGridSize(TRUE)) : &(_pPFFirst->GetLineGridSize(TRUE));
// The uv should have some value, otherwise we shouldn't even be
// here making calculations for a non-existent grid.
switch(pcuv->GetUnitType())
{
case CUnitValue::UNIT_NULLVALUE:
break;
case CUnitValue::UNIT_ENUM:
// need to handle "auto" here
if(pcuv->GetUnitValue() == styleLayoutGridCharAuto && _pccsCache)
{
*lGridSize = fGetCharGridSize ? _pccsCache->GetBaseCcs()->_xMaxCharWidth :
_pccsCache->GetBaseCcs()->_yHeight;
}
else
{
*lGridSize = 0;
}
break;
case CUnitValue::UNIT_PERCENT:
*lGridSize = ((fGetCharGridSize?_xWrappingWidth:_pci->_sizeParent.cy) * pcuv->GetUnitValue()) / 10000;
break;
default:
dir = fGetCharGridSize ? CUnitValue::DIRECTION_CX : CUnitValue::DIRECTION_CY;
*lGridSize = pcuv->GetPixelValue(NULL, dir, fGetCharGridSize?_xWrappingWidth:_pci->_sizeParent.cy);
break;
}
if(pcuv->IsPercent() && _pFlowLayout && !fGetCharGridSize)
{
_pFlowLayout->GetDisplay()->SetVertPercentAttrInfo();
}
Cleanup:
return *lGridSize;
}
//-----------------------------------------------------------------------------
//
// Function: GetClosestGridMultiple
//
// Synopsis: This function just calculates the width of an object in lGridSize
// multiples. For example, if lGridSize is 12 and lObjSize is 16,
// this function would return 24. If lObjSize is 0, this function
// will return 0.
//
// Returns: long value of the width in pixels
//
//-----------------------------------------------------------------------------
long WINAPI CLineServices::GetClosestGridMultiple(long lGridSize, long lObjSize)
{
long lReturnWidth = lObjSize;
long lRemainder;
if(lObjSize==0 || lGridSize==0)
{
goto Cleanup;
}
lRemainder = lObjSize % lGridSize;
lReturnWidth = lObjSize + lGridSize - (lRemainder?lRemainder:lGridSize);
Cleanup:
return lReturnWidth;
}
//-----------------------------------------------------------------------------
//
// Function: CheckRunKernability (member, LS callback)
//
// Synopsis: Callback to test whether current runs should be kerned.
//
// We do not support kerning at this time.
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::CheckRunKernability(
PLSRUN plsrunLeft, // IN
PLSRUN plsrunRight, // IN
BOOL* pfKernable) // OUT
{
LSTRACE(CheckRunKernability);
*pfKernable = FALSE;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetRunCharKerning (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetRunCharKerning(
PLSRUN plsrun, // IN
LSDEVICE lsDeviceID, // IN
LPCWSTR pwchRun, // IN
DWORD cwchRun, // IN
LSTFLOW kTFlow, // IN
int* rgDu) // OUT
{
LSTRACE(GetRunCharKerning);
DWORD iwch = cwchRun;
int* pDu = rgDu;
while(iwch--)
{
*pDu++ = 0;
}
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetRunTextMetrics (member, LS callback)
//
// Synopsis: Callback to return text metrics of the current run
//
// Returns: lserrNone
// plsTxMet - LineServices textmetric structure (lstxm.h)
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetRunTextMetrics(
PLSRUN plsrun, // IN
LSDEVICE lsDeviceID, // IN
LSTFLOW kTFlow, // IN
PLSTXM plsTxMet) // OUT
{
LSTRACE(GetRunTextMetrics);
const CCharFormat* pCF;
CCcs* pccs;
CBaseCcs* pBaseCcs;
LONG lLineHeight;
LSERR lserr = lserrNone;
Assert(plsrun);
if(plsrun->_fNoTextMetrics)
{
ZeroMemory(plsTxMet, sizeof(LSTXM));
goto Cleanup;
}
pCF = plsrun->GetCF();
pccs = GetCcs(plsrun, _pci->_hdc, _pci);
if(!pccs)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
pBaseCcs = pccs->GetBaseCcs();
// Cache this in case we do width modification.
plsTxMet->fMonospaced = pBaseCcs->_fFixPitchFont ? TRUE : FALSE;
_fHasOverhang |= ((plsrun->_xOverhang=pBaseCcs->_xOverhang) != 0);
// Keep track of the line heights specified in all the
// runs so that we can adjust the line height at the end.
// Note that we don't want to include break character NEVER
// count towards height.
lLineHeight = RememberLineHeight(plsrun->Cp(), pCF, pBaseCcs);
if(_fHasSites)
{
Assert(_fMinMaxPass);
plsTxMet->dvAscent = 1;
plsTxMet->dvDescent = 0;
plsTxMet->dvMultiLineHeight = 1;
}
else
{
long dvAscent, dvDescent;
dvDescent = long(pBaseCcs->_yDescent) - pBaseCcs->_yOffset;
dvAscent = pBaseCcs->_yHeight - dvDescent;
plsTxMet->dvAscent = dvAscent;
plsTxMet->dvDescent = dvDescent;
plsTxMet->dvMultiLineHeight = lLineHeight;
}
if(pBaseCcs->_xOverhangAdjust)
{
_lineFlags.AddLineFlag(plsrun->Cp(), FLAG_HAS_NOBLAST);
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: GetRunUnderlineInfo (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
// Note(SujalP): Lineservices is a bit wierd. It will *always* want to try to
// merge runs and that to based on its own algorithm. That algorith however is
// not the one which IE40 implements. For underlining, IE 40 always has a
// single underline when we have mixed font sizes. The problem however is that
// this underline is too far away from the smaller pt text in the mixed size
// line (however within the dimensions of the line). When we give this to LS,
// it thinks that the UL is outside the rect of the small character and deems
// it incorrect and does not call us for a callback. To overcome this problem
// we tell LS that the UL is a 0 (baseline) but remember the distance ourselves
// in the PLSRUN.
//
// Also, since color of the underline can change from run-to-run, we
// return different underline types to LS so as to prevent it from
// merging such runs. This also helps avoid merging when we are drawing overlines.
// Overlines are drawn at different heigths (unlinke underlines) from pt
// size to pt size. (This probably is a bug -- but this is what IE40 does
// so lets just go with that for now).
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetRunUnderlineInfo(
PLSRUN plsrun, // IN
PCHEIGHTS heightsPres, // IN
LSTFLOW kTFlow, // IN
PLSULINFO plsUlInfo) // OUT
{
LSTRACE(GetRunUnderlineInfo);
BYTE bUnderlineType;
static BOOL s_fToggleSwitch = FALSE;
if (!plsrun->_dwImeHighlight)
{
bUnderlineType = CFU_CF1UNDERLINE;
}
else
{
// BUGBUG (cthrash) We need to switch between dotted and solid
// underlining when the text goes from unconverted to converted.
bUnderlineType = plsrun->_fUnderlineForIME ? CFU_UNDERLINEDOTTED : 0;
}
plsUlInfo->kulbase = bUnderlineType | (s_fToggleSwitch?CFU_SWITCHSTYLE:0);
s_fToggleSwitch = !s_fToggleSwitch;
plsUlInfo->cNumberOfLines = 1;
plsUlInfo->dvpUnderlineOriginOffset = 0;
plsUlInfo->dvpFirstUnderlineOffset = 0;
plsUlInfo->dvpFirstUnderlineSize = 1;
plsUlInfo->dvpGapBetweenLines = 0;
plsUlInfo->dvpSecondUnderlineSize = 0;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetRunStrikethroughInfo (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetRunStrikethroughInfo(
PLSRUN plsrun, // IN
PCHEIGHTS heightPres, // IN
LSTFLOW kTFlow, // IN
PLSSTINFO plsStInfo) // OUT
{
LSTRACE(GetRunStrikethroughInfo);
LSNOTIMPL(GetRunStrikethroughInfo);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetBorderInfo (member, LS callback)
//
// Synopsis: Not implemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetBorderInfo(
PLSRUN plsrun, // IN
LSTFLOW ktFlow, // IN
long* pdurBorder, // OUT
long* pdupBorder) // OUT
{
LSTRACE(GetBorderInfo);
// This should only ever be called if we set the fBorder flag in lschp.
LSNOTIMPL(GetBorderInfo);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: ReleaseRun (member, LS callback)
//
// Synopsis: Callback to release plsrun object, which we don't do. We have
// a cache of COneRuns which we keep (and grow) for the lifetime
// of the CLineServices object.
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::ReleaseRun(/*[in]*/PLSRUN plsrun)
{
LSTRACE(ReleaseRun);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: Hyphenate (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::Hyphenate(
PCLSHYPH plsHyphLast, // IN
LSCP cpBeginWord, // IN
LSCP cpExceed, // IN
PLSHYPH plsHyph) // OUT
{
LSTRACE(Hyphenate);
// FUTURE (mikejoch) Need to adjust cp values if kysr != kysrNil.
plsHyph->kysr = kysrNil;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetHyphenInfo (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetHyphenInfo(
PLSRUN plsrun, // IN
DWORD* pkysr, // OUT
WCHAR* pwchKysr) // OUT
{
LSTRACE(GetHyphenInfo);
*pkysr = kysrNil;
*pwchKysr = WCH_NULL;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FInterruptUnderline (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FInterruptUnderline(
PLSRUN plsrunFirst, // IN
LSCP cpLastFirst, // IN
PLSRUN plsrunSecond, // IN
LSCP cpStartSecond, // IN
BOOL* pfInterruptUnderline) // OUT
{
LSTRACE(FInterruptUnderline);
// FUTURE (mikejoch) Need to adjust cp values if we ever interrupt underlining.
*pfInterruptUnderline = FALSE;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FInterruptShade (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FInterruptShade(
PLSRUN plsrunFirst, // IN
PLSRUN plsrunSecond, // IN
BOOL* pfInterruptShade) // OUT
{
LSTRACE(FInterruptShade);
*pfInterruptShade = TRUE;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FInterruptBorder (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FInterruptBorder(
PLSRUN plsrunFirst, // IN
PLSRUN plsrunSecond, // IN
BOOL* pfInterruptBorder) // OUT
{
LSTRACE(FInterruptBorder);
*pfInterruptBorder = FALSE;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FInterruptShaping (member, LS callback)
//
// Synopsis: We compare CF between the runs to see if they are different
// enough to cause an interrup in shaping between the runs
//
// Arguments: kTFlow text direction and orientation
// plsrunFirst run pointer for the previous run
// plsrunSecond run pointer for the current run
// pfInterruptShaping TRUE - Interrupt shaping
// FALSE - Don't interrupt shaping, merge runs
//
// Returns: LSERR lserrNone if succesful
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FInterruptShaping(
LSTFLOW kTFlow, // IN
PLSRUN plsrunFirst, // IN
PLSRUN plsrunSecond, // IN
BOOL* pfInterruptShaping) // OUT
{
LSTRACE(FInterruptShaping);
Assert(pfInterruptShaping!=NULL && plsrunFirst!=NULL && plsrunSecond!=NULL);
CComplexRun* pcr1 = plsrunFirst->GetComplexRun();
CComplexRun* pcr2 = plsrunSecond->GetComplexRun();
Assert(pcr1!=NULL && pcr2!=NULL);
*pfInterruptShaping = (pcr1->GetScript() != pcr2->GetScript());
if(!*pfInterruptShaping)
{
const CCharFormat* pCF1 = plsrunFirst->GetCF();
const CCharFormat* pCF2 = plsrunSecond->GetCF();
Assert(pCF1!=NULL && pCF2!=NULL);
// We want to break the shaping if the formats are not similar format
*pfInterruptShaping = !pCF1->CompareForLikeFormat(pCF2);
}
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetGlyphs (member, LS callback)
//
// Synopsis: Returns an index of glyph ids for the run passed in
//
// Arguments: plsrun pointer to the run
// pwch string of character codes
// cwch number of characters in pwch
// kTFlow text direction and orientation
// rgGmap map of glyph info parallel to pwch
// prgGindex array of output glyph indices
// prgGprop array of output glyph properties
// pcgindex number of glyph indices
//
// Returns: LSERR lserrNone if succesful
// lserrInvalidRun if failure
// lserrOutOfMemory if memory alloc fails
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetGlyphs(
PLSRUN plsrun, // IN
LPCWSTR pwch, // IN
DWORD cwch, // IN
LSTFLOW kTFlow, // IN
PGMAP rgGmap, // OUT
PGINDEX* prgGindex, // OUT
PGPROP* prgGprop, // OUT
DWORD* pcgindex) // OUT
{
LSTRACE(GetGlyphs);
LSERR lserr = lserrNone;
HRESULT hr = S_OK;
CComplexRun* pcr;
DWORD cMaxGly;
HDC hdc = _pci->_hdc;
HDC hdcShape = NULL;
HFONT hfont;
HFONT hfontOld = NULL;
SCRIPT_CACHE* psc;
WORD* pGlyphBuffer = NULL;
WORD* pGlyph = NULL;
SCRIPT_VISATTR* pVisAttr = NULL;
CCcs* pccs = NULL;
CBaseCcs* pBaseCcs = NULL;
CString strTransformedText;
BOOL fTriedFontLink = FALSE;
pcr = plsrun->GetComplexRun();
if(pcr == NULL)
{
Assert(FALSE);
lserr = lserrOutOfMemory;
goto Cleanup;
}
pccs = GetCcs(plsrun, hdc, _pci);
if(pccs == NULL)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
pBaseCcs = pccs->GetBaseCcs();
hfont = pBaseCcs->_hfont;
Assert(hfont != NULL);
psc = pBaseCcs->GetUniscribeCache();
Assert(psc != NULL);
// In some fonts in some locales, NBSPs aren't rendered like spaces.
// Under these circumstances, we need to convert NBSPs to spaces
// before calling ScriptShape.
// BUGBUG: Due to a bug in Bidi Win9x GDI, we can't detect that
// old bidi fonts lack an NBSP (IE5 bug 68214). We hack around this by
// simply always swapping the space character for the NBSP. Since this
// only happens for glyphed runs, US perf is not impacted.
if(_lineFlags.GetLineFlags(plsrun->Cp()+cwch) & FLAG_HAS_NBSP)
{
const WCHAR* pwchStop;
WCHAR* pwch2;
HRESULT hr = strTransformedText.Set(pwch, cwch);
if(hr == S_OK)
{
pwch = strTransformedText;
pwch2 = (WCHAR*) pwch;
pwchStop = pwch + cwch;
while(pwch2 < pwchStop)
{
if(*pwch2 == WCH_NBSP)
{
*pwch2 = L' ';
}
pwch2++;
}
}
}
// Inflate the number of max glyphs to generate
// A good high end guess is the number of chars plus 6% or 10,
// whichever is greater.
cMaxGly = cwch + max(10, (int)cwch>>4);
Assert(cMaxGly > 0);
pGlyphBuffer = (WORD*)NewPtr(cMaxGly*(sizeof(WORD)+sizeof(SCRIPT_VISATTR)));
// Our memory alloc failed. No point in going on.
if(pGlyphBuffer == NULL)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
pGlyph = (WORD*)pGlyphBuffer;
pVisAttr = (SCRIPT_VISATTR*)(pGlyphBuffer + cMaxGly);
// Repeat the shaping process until it succeds, or fails for a reason different
// from insufficient memory, a cache fault, or failure to glyph a character using
// the current font
do
{
// If a prior ::ScriptShape() call failed because it needed the font
// selected into the hdc, then select the font into the hdc and try
// again.
if(hr == E_PENDING)
{
// If we have a valid hdcShape, then ScriptShape() failed for an
// unknown reason. Bail out.
if(hdcShape != NULL)
{
AssertSz(FALSE, "ScriptShape() failed for an unknown reason");
lserr = LSERRFromHR(hr);
goto Cleanup;
}
// Select the current font into the hdc and set hdcShape to hdc.
hfontOld = SelectFontEx(hdc, hfont);
hdcShape = hdc;
}
// If a prior ::ScriptShape() call failed because it was unable to
// glyph a character with the current font, swap the font around and
// try it again.
else if(hr == USP_E_SCRIPT_NOT_IN_FONT)
{
if(!fTriedFontLink)
{
// Unable to find the glyphs in the font. Font link to try an
// alternate font which might work.
fTriedFontLink = TRUE;
// Set the sid for the complex run to match the text (instead
// of sidDefault.
Assert(plsrun->_ptp->IsText());
plsrun->_sid = plsrun->_ptp->Sid();
// Deselect the font if we selected it.
if(hdcShape != NULL)
{
Assert(hfontOld != NULL);
SelectFontEx(hdc, hfontOld);
hdcShape = NULL;
hfontOld = NULL;
}
// Get the font using the normal sid from the text to fontlink.
pccs = GetCcs(plsrun, hdc, _pci);
if(pccs == NULL)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
pBaseCcs = pccs->GetBaseCcs();
// Reset the hfont and psc using the new pccs.
hfont = pBaseCcs->_hfont;
Assert(hfont != NULL);
psc = pBaseCcs->GetUniscribeCache();
Assert(psc != NULL);
}
else
{
// We tried to font link but we still couldn't make it work.
// Blow the SCRIPT_ANALYSIS away and just let GDI deal with it.
pcr->NukeAnalysis();
}
}
// If ScriptShape() failed because of insufficient buffer space,
// resize the buffer
else if(hr == E_OUTOFMEMORY)
{
WORD* pGlyphBufferT = NULL;
// enlarge the glyph count by another 6% of run or 10, whichever is larger.
cMaxGly += max(10, (int)cwch>>4);
Assert(cMaxGly > 0);
pGlyphBufferT = (WORD*)ReallocPtr(pGlyphBuffer,
cMaxGly*(sizeof(WORD)+sizeof(SCRIPT_VISATTR)));
if(pGlyphBufferT != NULL)
{
pGlyphBuffer = pGlyphBufferT;
pGlyph = (WORD*)pGlyphBuffer;
pVisAttr = (SCRIPT_VISATTR*)(pGlyphBuffer + cMaxGly);
}
else
{
// Memory alloc failure.
lserr = lserrOutOfMemory;
goto Cleanup;
}
}
// Try to shape the script again
hr = ::ScriptShape(hdcShape, psc, pwch, cwch, cMaxGly, pcr->GetAnalysis(),
pGlyph, rgGmap, pVisAttr, (int*)pcgindex);
} while(hr==E_PENDING || hr==USP_E_SCRIPT_NOT_IN_FONT || hr==E_OUTOFMEMORY);
// NB (mikejoch) We shouldn't ever fail except for the OOM case. USP should
// always be loaded, since we wouldn't get a valid eScript otherwise.
Assert(hr==S_OK || hr==E_OUTOFMEMORY);
lserr = LSERRFromHR(hr);
Cleanup:
// Restore the font if we selected it
if(hfontOld != NULL)
{
Assert(hdcShape != NULL);
SelectFontEx(hdc, hfontOld);
}
// If LS passed us a string which was an aggregate of several runs (which
// happens if we returned FALSE from FInterruptShaping()) then we need
// to make sure that the same _sid is stored in each por covered by the
// aggregate string. Normally this isn't a problem, but if we changed
// por->_sid for font linking then it becomes necessary. We determine
// if a change occurred by comparing plsrun->_sid to sidDefault, which
// is the value plsrun->_sid is always set to for a glyphed run (in
// ChunkifyTextRuns()).
if(plsrun->_sid!=sidDefault && plsrun->_lscch<(LONG)cwch)
{
DWORD sidAlt = plsrun->_sid;
COneRun* por = plsrun->_pNext;
LONG lscchMergedRuns = cwch - plsrun->_lscch;
while(lscchMergedRuns>0 && por)
{
if(por->IsNormalRun() || por->IsSyntheticRun())
{
por->_sid = sidAlt;
lscchMergedRuns -= por->_lscch;
}
por = por->_pNext;
}
}
if(lserr == lserrNone)
{
// Move the values from the working buffer to the output arguments
pcr->CopyPtr(pGlyphBuffer);
*prgGindex = pGlyph;
*prgGprop = (WORD*)pVisAttr;
}
else
{
// free up the allocated memory on failure
if(pGlyphBuffer != NULL)
{
DisposePtr(pGlyphBuffer);
}
*prgGindex = NULL;
*prgGprop = NULL;
*pcgindex = 0;
}
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: GetGlyphPositions (member, LS callback)
//
// Synopsis: Returns an index of glyph ids for the run passed in
//
// Arguments: plsrun pointer to the run
// lsDevice presentation or reference
// pwch string of character codes
// rgGmap map of glyphs
// cwch number of characters in pwch
// prgGindex array of output glyph indices
// prgGprop array of output glyph properties
// pcgindex number of glyph indices
// kTFlow text direction and orientation
// rgDu array of glyph widths
// rgGoffset array of glyph offsets
//
// Returns: LSERR lserrNone if succesful
// lserrModWidthPairsNotSet if failure
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetGlyphPositions(
PLSRUN plsrun, // IN
LSDEVICE lsDevice, // IN
LPWSTR pwch, // IN
PCGMAP pgmap, // IN
DWORD cwch, // IN
PCGINDEX rgGindex, // IN
PCGPROP rgGprop, // IN
DWORD cgindex, // IN
LSTFLOW kTFlow, // IN
int* rgDu, // OUT
PGOFFSET rgGoffset) // OUT
{
LSTRACE(GetGlyphPositions);
LSERR lserr = lserrNone;
HRESULT hr = S_OK;
CComplexRun* pcr;
HDC hdc = _pci->_hdc;
HDC hdcPlace = NULL;
HFONT hfont;
HFONT hfontOld = NULL;
SCRIPT_CACHE* psc;
CCcs* pccs = NULL;
CBaseCcs* pBaseCcs = NULL;
pcr = plsrun->GetComplexRun();
if(pcr == NULL)
{
Assert(FALSE);
lserr = lserrOutOfMemory;
goto Cleanup;
}
pccs = GetCcs(plsrun, hdc, _pci);
if(pccs == NULL)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
pBaseCcs = pccs->GetBaseCcs();
hfont = pBaseCcs->_hfont;
Assert(hfont != NULL);
psc = pBaseCcs->GetUniscribeCache();
Assert(psc != NULL);
// Try to place the glyphs
hr = ::ScriptPlace(hdcPlace, psc, rgGindex, cgindex, (SCRIPT_VISATTR*)rgGprop,
pcr->GetAnalysis(), rgDu, rgGoffset, NULL);
// Handle failure
if(hr == E_PENDING)
{
Assert(hdcPlace == NULL);
// Select the current font into the hdc and set hdcShape to hdc.
hfontOld = SelectFontEx(hdc, hfont);
hdcPlace = hdc;
// Try again
hr = ::ScriptPlace(hdcPlace, psc, rgGindex, cgindex, (SCRIPT_VISATTR*)rgGprop,
pcr->GetAnalysis(), rgDu, rgGoffset, NULL);
}
// NB (mikejoch) We shouldn't ever fail except for the OOM case (if USP is
// allocating the cache). USP should always be loaded, since we wouldn't
// get a valid eScript otherwise.
Assert(hr==S_OK || hr==E_OUTOFMEMORY);
lserr = LSERRFromHR(hr);
Cleanup:
// Restore the font if we selected it
if(hfontOld != NULL)
{
SelectFontEx(hdc, hfontOld);
}
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: ResetRunContents (member, LS callback)
//
// Synopsis: This callback seems to be more informational.
//
// Arguments: plsrun pointer to the run
// cpFirstOld cpFirst before shaping
// dcpOld dcp before shaping
// cpFirstNew cpFirst after shaping
// dcpNew dcp after shaping
//
// Returns: LSERR lserrNone if succesful
// lserrMismatchLineContext if failure
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::ResetRunContents(
PLSRUN plsrun, // IN
LSCP cpFirstOld, // IN
LSDCP dcpOld, // IN
LSCP cpFirstNew, // IN
LSDCP dcpNew) // IN
{
LSTRACE(ResetRunContents);
// FUTURE (mikejoch) Need to adjust cp values if we ever implement this.
// FUTURE (paulnel) this doesn't appear to be needed for IE. Clarification
// is being obtained from Line Services
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetGlyphExpansionInfo (member, LS callback)
//
// Synopsis: This callback is used for glyph based justification
// 1. For Arabic, it handles kashida insetion
// 2. For cluster characters, (thai vietnamese) it keeps tone
// marks on their base glyphs
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetGlyphExpansionInfo(
PLSRUN plsrun, // IN
LSDEVICE lsDeviceID, // IN
LPCWSTR pwch, // IN
PCGMAP rggmap, // IN
DWORD cwch, // IN
PCGINDEX rgglyph, // IN
PCGPROP rgProp, // IN
DWORD cglyph, // IN
LSTFLOW kTFlow, // IN
BOOL fLastTextChunkOnLine, // IN
PEXPTYPE rgExpType, // OUT
LSEXPINFO* rgexpinfo) // OUT
{
LSTRACE(GetGlyphExpansionInfo);
LSERR lserr = lserrNone;
SCRIPT_VISATTR* psva = (SCRIPT_VISATTR*)&rgProp[0];
CComplexRun* pcr;
const SCRIPT_PROPERTIES* psp = NULL;
BOOL fKashida = FALSE;
int iKashidaWidth = 1; // width of a kashida
int iPropL = 0; // index to the connecting glyph left
int iPropR = 0; // index to the connecting glyph right
int iBestPr = -1; // address of the best priority in a word so far
int iPrevBestPr = -1;
int iKashidaLevel = 0;
int iBestKashidaLevel = 10;
BYTE bBestPr = SCRIPT_JUSTIFY_NONE;
BYTE bCurrentPr = SCRIPT_JUSTIFY_NONE;
BYTE expType = exptNone;
pcr = plsrun->GetComplexRun();
UINT justifyStyle = plsrun->_pPF->_uTextJustify;
if(pcr == NULL)
{
Assert(FALSE);
lserr = lserrOutOfMemory;
goto Cleanup;
}
// 1. From the script analysis we can tell what language we are dealing with
// a. if we are Arabic block languages, we need to do the kashida insertion
// b. if we are Thai or Vietnamese, we need to set the expansion type for diacritics
// to none so they remain on their base glyph.
psp = GetScriptProperties(pcr->GetAnalysis()->eScript);
// Check to see if we are an Arabic block language
fKashida = IsInArabicBlock(psp->langid);
// if we are going to do kashida insertion we need to get the kashida width information
if(fKashida)
{
lserr = GetKashidaWidth(plsrun, &iKashidaWidth);
if(lserr != lserrNone)
{
goto Cleanup;
}
}
//initialize rgExpType
expType = exptNone;
memset(rgExpType, expType, sizeof(EXPTYPE)*cglyph);
// initialize rgexpinfo to zeros
memset(rgexpinfo, 0, sizeof(LSEXPINFO)*cglyph);
// Loop through the glyph attributes. We assume logical order here
while(iPropL < (int)cglyph)
{
bCurrentPr = psva[iPropL].uJustification;
switch(bCurrentPr)
{
case SCRIPT_JUSTIFY_NONE:
rgExpType[iPropL] = exptNone;
break;
case SCRIPT_JUSTIFY_ARABIC_BLANK:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
rgExpType[iPropL] = exptAddWhiteSpace;
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
break;
case styleTextJustifyNewspaper:
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
break;
case styleTextJustifyDistribute:
rgexpinfo[iPropL].prior = 2;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
break;
case styleTextJustifyDistributeAllLines:
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
break;
default:
rgExpType[iPropL] = exptNone;
if(iBestPr >=0)
{
iPrevBestPr = iPropL;
rgExpType[iBestPr] = exptAddInkContinuous;
rgexpinfo[iBestPr].prior = 1;
rgexpinfo[iBestPr].duMax = lsexpinfInfinity;
rgexpinfo[iBestPr].u.AddInkContinuous.duMin = iKashidaWidth;
iBestPr = -1;
bBestPr = SCRIPT_JUSTIFY_NONE;
iBestKashidaLevel = 10;
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
if(justifyStyle<styleTextJustifyInterWord ||
justifyStyle>styleTextJustifyDistributeAllLines)
{
if(iBestPr >=0)
{
iPrevBestPr = iPropL;
rgExpType[iBestPr] = exptAddInkContinuous;
rgexpinfo[iBestPr].prior = 1;
rgexpinfo[iBestPr].duMax = lsexpinfInfinity;
rgexpinfo[iBestPr].u.AddInkContinuous.duMin = iKashidaWidth;
iBestPr = -1;
bBestPr = SCRIPT_JUSTIFY_NONE;
iBestKashidaLevel = 10;
}
}
}
break;
case SCRIPT_JUSTIFY_CHARACTER:
// this value was prefilled to exptAddWhiteSpace
// we should not be here for Arabic type text
Assert(!fKashida);
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
rgExpType[iPropL] = exptAddWhiteSpace;
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgexpinfo[iPropL].prior = 0;
break;
case styleTextJustifyNewspaper:
rgexpinfo[iPropL].prior = 1;
break;
case styleTextJustifyDistribute:
rgexpinfo[iPropL].prior = 1;
break;
case styleTextJustifyDistributeAllLines:
rgexpinfo[iPropL].prior = 1;
break;
}
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
}
// Final character on the line should not get justification
// flag set.
else
rgExpType[iPropL] = exptNone;
break;
case SCRIPT_JUSTIFY_BLANK:
// this value was prefilled to exptAddWhiteSpace
// we should not be here for Arabic type text
Assert(!fKashida);
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
rgExpType[iPropL] = exptAddWhiteSpace;
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgexpinfo[iPropL].prior = 1;
break;
case styleTextJustifyNewspaper:
rgexpinfo[iPropL].prior = 1;
break;
case styleTextJustifyDistribute:
rgexpinfo[iPropL].prior = 1;
break;
case styleTextJustifyDistributeAllLines:
rgexpinfo[iPropL].prior = 1;
break;
}
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
// kashida is placed after kashida and seen characters
case SCRIPT_JUSTIFY_ARABIC_KASHIDA:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL] = exptAddInkContinuous;
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL] = exptAddInkContinuous;
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL] = exptAddInkContinuous;
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY1;
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
case SCRIPT_JUSTIFY_ARABIC_SEEN:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL] = exptAddInkContinuous;
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL] = exptAddInkContinuous;
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL] = exptAddInkContinuous;
rgexpinfo[iPropL].prior = 1;
rgexpinfo[iPropL].duMax = lsexpinfInfinity;
rgexpinfo[iPropL].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY2;
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
// these types of kashida go after this glyph visually
for(iPropR=iPropL+1; iPropR<(int)cglyph&&psva[iPropR].fDiacritic; iPropR++);
if(iPropR != iPropL)
{
iPropR--;
}
iBestPr = iPropR;
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
// kashida is placed before the ha and alef
case SCRIPT_JUSTIFY_ARABIC_HA:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY3;
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
iBestPr = iPropL - 1;
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
case SCRIPT_JUSTIFY_ARABIC_ALEF:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY4;
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
iBestPr = iPropL - 1;
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
// kashida is placed before prior character if prior char
// is a medial ba type
case SCRIPT_JUSTIFY_ARABIC_RA:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY5;
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
if(psva[iPropL-1].uJustification == SCRIPT_JUSTIFY_ARABIC_BA)
{
iBestPr = iPropL - 2;
}
else
{
iBestPr = iPropL - 1;
}
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
// kashida is placed before last normal type in word
case SCRIPT_JUSTIFY_ARABIC_BARA:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY6;
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
// these types of kashida go before this glyph visually
iBestPr = iPropL - 1;
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
// kashida is placed before last normal type in word
case SCRIPT_JUSTIFY_ARABIC_BA:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY7;
if(iKashidaLevel <= iBestKashidaLevel)
{
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
// these types of kashida go before this glyph visually
iBestPr = iPropL - 1;
}
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
// kashida is placed before last normal type in word
case SCRIPT_JUSTIFY_ARABIC_NORMAL:
if(!fLastTextChunkOnLine || (DWORD)iPropL!=(cglyph-1))
{
switch(justifyStyle)
{
case styleTextJustifyInterWord:
rgExpType[iPropL] = exptNone;
break;
case styleTextJustifyNewspaper:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistribute:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
case styleTextJustifyDistributeAllLines:
rgExpType[iPropL-1] = exptAddInkContinuous;
rgexpinfo[iPropL-1].prior = 1;
rgexpinfo[iPropL-1].duMax = lsexpinfInfinity;
rgexpinfo[iPropL-1].fCanBeUsedForResidual = TRUE;
rgexpinfo[iPropL-1].u.AddInkContinuous.duMin = iKashidaWidth;
break;
default:
iKashidaLevel = KASHIDA_PRIORITY8;
if(iKashidaLevel <= iBestKashidaLevel)
{
iBestKashidaLevel = iKashidaLevel;
// these types of kashida go before this glyph visually
iBestPr = iPropL - 1;
}
break;
}
}
// Final character on the line should not get justification
// flag set.
else
{
rgExpType[iPropL] = exptNone;
}
break;
default:
AssertSz( 0, "We have a new SCRIPT_JUSTIFY type");
}
iPropL++;
}
if(justifyStyle<styleTextJustifyInterWord || justifyStyle>styleTextJustifyDistributeAllLines)
{
if(iBestPr >= 0)
{
rgexpinfo[iBestPr].prior = 1;
rgexpinfo[iBestPr].duMax = lsexpinfInfinity;
if(fKashida)
{
rgexpinfo[iBestPr].u.AddInkContinuous.duMin = iKashidaWidth;
}
}
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: GetGlyphExpansionInkInfo (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetGlyphExpansionInkInfo(
PLSRUN plsrun, // IN
LSDEVICE lsDeviceID, // IN
GINDEX gindex, // IN
GPROP gprop, // IN
LSTFLOW kTFlow, // IN
DWORD cAddInkDiscrete, // IN
long* rgDu) // OUT
{
LSTRACE(GetGlyphExpansionInkInfo);
LSNOTIMPL(GetGlyphExpansionInkInfo);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FTruncateBefore (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FTruncateBefore(
PLSRUN plsrunCur, // IN
LSCP cpCur, // IN
WCHAR wchCur, // IN
long durCur, // IN
PLSRUN plsrunPrev, // IN
LSCP cpPrev, // IN
WCHAR wchPrev, // IN
long durPrev, // IN
long durCut, // IN
BOOL* pfTruncateBefore) // OUT
{
LSTRACE(FTruncateBefore);
// FUTURE (mikejoch) Need to adjust cp values if we ever implement this.
LSNOTIMPL(FTruncateBefore);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FHangingPunct (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FHangingPunct(
PLSRUN plsrun,
MWCLS mwcls,
WCHAR wch,
BOOL* pfHangingPunct)
{
LSTRACE(FHangingPunct);
*pfHangingPunct = FALSE;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetSnapGrid (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetSnapGrid(
WCHAR* rgwch, // IN
PLSRUN* rgplsrun, // IN
LSCP* rgcp, // IN
DWORD cwch, // IN
BOOL* rgfSnap, // OUT
DWORD* pwGridNumber) // OUT
{
LSTRACE(GetSnapGrid);
// FUTURE (mikejoch) Need to adjust cp values if we ever do grid justification.
*pwGridNumber = 0;
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: FCancelHangingPunct (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FCancelHangingPunct(
LSCP cpLim, // IN
LSCP cpLastAdjustable, // IN
WCHAR wch, // IN
MWCLS mwcls, // IN
BOOL* pfCancelHangingPunct) // OUT
{
LSTRACE(FCancelHangingPunct);
// FUTURE (mikejoch) Need to adjust cp values if we ever implement this.
LSNOTIMPL(FCancelHangingPunct);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: ModifyCompAtLastChar (member, LS callback)
//
// Synopsis: Unimplemented LineServices callback
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::ModifyCompAtLastChar(
LSCP cpLim, // IN
LSCP cpLastAdjustable, // IN
WCHAR wchLast, // IN
MWCLS mwcls, // IN
long durCompLastRight, // IN
long durCompLastLeft, // IN
long* pdurChangeComp) // OUT
{
LSTRACE(ModifyCompAtLastChar);
// FUTURE (mikejoch) Need to adjust cp values if we ever implement this.
LSNOTIMPL(ModifyCompAtLastChar);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: EnumText (member, LS callback)
//
// Synopsis: Enumeration function, currently unimplemented
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::EnumText(
PLSRUN plsrun, // IN
LSCP cpFirst, // IN
LSDCP dcp, // IN
LPCWSTR rgwch, // IN
DWORD cwch, // IN
LSTFLOW lstflow, // IN
BOOL fReverseOrder, // IN
BOOL fGeometryProvided, // IN
const POINT* pptStart, // IN
PCHEIGHTS pheightsPres, // IN
long dupRun, // IN
BOOL fCharWidthProvided, // IN
long* rgdup) // IN
{
LSTRACE(EnumText);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: EnumTab (member, LS callback)
//
// Synopsis: Enumeration function, currently unimplemented
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::EnumTab(
PLSRUN plsrun, // IN
LSCP cpFirst, // IN
WCHAR* rgwch, // IN
WCHAR wchTabLeader, // IN
LSTFLOW lstflow, // IN
BOOL fReversedOrder, // IN
BOOL fGeometryProvided, // IN
const POINT* pptStart, // IN
PCHEIGHTS pheightsPres, // IN
long dupRun)
{
LSTRACE(EnumTab);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: EnumPen (member, LS callback)
//
// Synopsis: Enumeration function, currently unimplemented
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::EnumPen(
BOOL fBorder, // IN
LSTFLOW lstflow, // IN
BOOL fReverseOrder, // IN
BOOL fGeometryProvided, // IN
const POINT* pptStart, // IN
long dup, // IN
long dvp) // IN
{
LSTRACE(EnumPen);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: GetObjectHandlerInfo (member, LS callback)
//
// Synopsis: Returns an object handler for the client-side functionality
// of objects which are handled primarily by LineServices.
//
// Returns: lserrNone
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetObjectHandlerInfo(
DWORD idObj, // IN
void* pObjectInfo) // OUT
{
LSTRACE(GetObjectHandlerInfo);
switch(idObj)
{
case LSOBJID_RUBY:
Assert(sizeof(RUBYINIT) == sizeof(::RUBYINIT));
*(RUBYINIT*)pObjectInfo = s_rubyinit;
break;
case LSOBJID_TATENAKAYOKO:
Assert( sizeof(TATENAKAYOKOINIT) == sizeof(::TATENAKAYOKOINIT));
*(TATENAKAYOKOINIT*)pObjectInfo = s_tatenakayokoinit;
break;
case LSOBJID_HIH:
Assert( sizeof(HIHINIT) == sizeof(::HIHINIT));
*(HIHINIT*)pObjectInfo = s_hihinit;
break;
case LSOBJID_WARICHU:
Assert( sizeof(WARICHUINIT) == sizeof(::WARICHUINIT));
*(WARICHUINIT*)pObjectInfo = s_warichuinit;
break;
case LSOBJID_REVERSE:
Assert( sizeof(REVERSEINIT) == sizeof(::REVERSEINIT));
*(REVERSEINIT*)pObjectInfo = s_reverseinit;
break;
default:
AssertSz(0, "Unknown LS object ID.");
break;
}
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: AssertFailed (member, LS callback)
//
// Synopsis: Assert callback for LineServices
//
// Returns: Nothing.
//
//-----------------------------------------------------------------------------
void WINAPI CLineServices::AssertFailed(char* szMessage, char* szFile, int iLine)
{
LSTRACE(AssertFailed);
}
//-----------------------------------------------------------------------------
//
// Function: ChunkifyTextRun
//
// Synopsis: Break up a text run if necessary.
//
// Returns: lserr.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::ChunkifyTextRun(COneRun* por, COneRun** pporOut)
{
LONG cchRun;
LPCWSTR pwchRun;
BOOL fHasInclEOLWhite = por->_pPF->HasInclEOLWhite(por->_fInnerPF);
const DWORD cpCurr = por->Cp();
LSERR lserr = lserrNone;
*pporOut = por;
// 1) If there is a whitespace at the beginning of line, we
// do not want to show the whitespace (0 width -- the right
// way to do it is to say that the run is hidden).
if(IsFirstNonWhiteOnLine(cpCurr))
{
const TCHAR* pwchRun = por->_pchBase;
DWORD cp = cpCurr;
cchRun = por->_lscch;
if(!fHasInclEOLWhite)
{
while(cchRun)
{
const TCHAR ch = *pwchRun++;
if(!IsWhite(ch))
{
break;
}
// Note a whitespace at BOL
WhiteAtBOL(cp);
//_lineFlags.AddLineFlag(cp, FLAG_HAS_NOBLAST);
cp++;
// Goto next character
cchRun--;
}
}
// Did we find any whitespaces at BOL? If we did, then
// create a chunk with those whitespace and mark them
// as hidden.
if(cchRun != por->_lscch)
{
por->_lscch -= cchRun;
por->_fHidden = TRUE;
goto Cleanup;
}
}
// 2. Fold whitespace after an aligned or abspos'd site if there
// was a whitespace *before* the aligned site. The way we do this
// folding is by saying that the present space is hidden.
{
const TCHAR chFirst = *por->_pchBase;
if(!fHasInclEOLWhite && !_fIsEditable)
{
if(IsWhite(chFirst) && NeedToEatThisSpace(por))
{
_lineFlags.AddLineFlag(cpCurr, FLAG_HAS_NOBLAST);
por->_lscch = 1;
por->_fHidden = TRUE;
goto Cleanup;
}
}
if(WCH_NONREQHYPHEN == chFirst)
{
_lineFlags.AddLineFlag(cpCurr, FLAG_HAS_NOBLAST);
}
}
if(!fHasInclEOLWhite && IsFirstNonWhiteOnLine(cpCurr))
{
// 3. Note any \n\r's
const TCHAR ch = *por->_pchBase;
if(ch==TEXT('\r') || ch==TEXT('\n'))
{
WhiteAtBOL(cpCurr);
_lineFlags.AddLineFlag(cpCurr, FLAG_HAS_NOBLAST);
}
}
if(_fScanForCR)
{
cchRun = por->_lscch;
pwchRun = por->_pchBase;
if(WCH_CR == *pwchRun)
{
// If all we have on the line are sites, then we do not want the \r to
// contribute to height of the line and hence we set _fNoTextMetrics to TRUE.
if(LineHasOnlySites(por->Cp()))
{
por->_fNoTextMetrics = TRUE;
}
lserr = TerminateLine(por, TL_ADDNONE, pporOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
if(*pporOut == NULL)
{
// All lines ending in a carriage return have the BR flag set on them.
_lineFlags.AddLineFlag(cpCurr, FLAG_HAS_A_BR);
por->FillSynthData(SYNTHTYPE_LINEBREAK);
*pporOut = por;
}
goto Cleanup;
}
// if we came here after a single site in _fScanForCR mode, it means that we
// have some text after the single site and hence it should be on the next
// line. Hence terminate the line here. (If it were followed by a \r, then
// it would have fallen in the above case which would have consumed that \r)
else if(_fSingleSite)
{
lserr = TerminateLine(por, TL_ADDEOS, pporOut);
goto Cleanup;
}
else
{
LONG cch = 0;
while(cch != cchRun)
{
if(WCH_CR == *pwchRun)
{
break;
}
cch++;
pwchRun++;
}
por->_lscch = cch;
}
}
Assert(por->_ptp && por->_ptp->IsText() && por->_sid==DWORD(por->_ptp->Sid()));
// BUGBUG(CThrash): Please improve this sid check!
if(_pBidiLine!=NULL
|| sidAsciiLatin!=por->_sid
|| _afxGlobalData._iNumShape!=NUMSHAPE_NONE
|| _li._fLookaheadForGlyphing)
{
BOOL fGlyph = FALSE;
BOOL fForceGlyphing = FALSE;
BOOL fNeedBidiLine = (_pBidiLine != NULL);
BOOL fRTL = FALSE;
DWORD uLangDigits = LANG_NEUTRAL;
WCHAR chNext = WCH_NULL;
// 4. Note any glyphable etc chars
cchRun = por->_lscch;
pwchRun = por->_pchBase;
while(cchRun-- && !(fGlyph && fNeedBidiLine))
{
const TCHAR ch = *pwchRun++;
fGlyph |= IsGlyphableChar(ch);
fNeedBidiLine |= IsRTLChar(ch);
}
// 5. Break run based on the text direction.
if(fNeedBidiLine && _pBidiLine==NULL)
{
_pBidiLine = new CBidiLine(_treeInfo, _cpStart, _li._fRTL, _pli);
}
if(_pBidiLine != NULL)
{
por->_lscch = _pBidiLine->GetRunCchRemaining(por->Cp(), por->_lscch);
// FUTURE (mikejoch) We are handling symmetric swapping by forced
// glyphing of RTL runs. We may be able to do this faster by
// swapping symmetric characters in CLSRenderer::TextOut().
fRTL = fForceGlyphing = _pBidiLine->GetLevel(por->Cp()) & 1;
}
// 6. Break run based on the digits.
if(_afxGlobalData._iNumShape != NUMSHAPE_NONE)
{
cchRun = por->_lscch;
pwchRun = por->_pchBase;
while(cchRun && !InRange(*pwchRun, ',', '9'))
{
pwchRun++;
cchRun--;
}
if(cchRun)
{
if(_afxGlobalData._iNumShape == NUMSHAPE_NATIVE)
{
uLangDigits = _afxGlobalData._uLangNationalDigits;
fGlyph = TRUE;
}
else
{
COneRun* porContext;
Assert(_afxGlobalData._iNumShape==NUMSHAPE_CONTEXT && InRange(*pwchRun, ',', '9'));
// Scan back for first strong text.
cchRun = pwchRun - por->_pchBase;
pwchRun--;
while(cchRun!=0 && (!IsStrongClass(DirClassFromCh(*pwchRun)) || InRange(*pwchRun, WCH_LRM, WCH_RLM)))
{
cchRun--;
pwchRun--;
}
porContext = _listCurrent._pTail;
if(porContext == por)
{
porContext = porContext->_pPrev;
}
while(cchRun==0 && porContext!=NULL)
{
if(porContext->IsNormalRun() && porContext->_pchBase!=NULL)
{
cchRun = porContext->_lscch;
pwchRun = porContext->_pchBase + cchRun - 1;
while(cchRun!=0 && (!IsStrongClass(DirClassFromCh(*pwchRun)) || InRange(*pwchRun, WCH_LRM, WCH_RLM)))
{
cchRun--;
pwchRun--;
}
}
porContext = porContext->_pPrev;
}
if(cchRun != 0)
{
if(ScriptIDFromCh(*pwchRun) == DefaultScriptIDFromLang(_afxGlobalData._uLangNationalDigits))
{
uLangDigits = _afxGlobalData._uLangNationalDigits;
fGlyph = TRUE;
}
}
else if(IsRTLLang(_afxGlobalData._uLangNationalDigits) && _li._fRTL)
{
uLangDigits = _afxGlobalData._uLangNationalDigits;
fGlyph = TRUE;
}
}
}
}
// 7. Check if we should have glyphed the prior run (for combining
// Latin diacritics; esp. Vietnamese)
if(_lsMode == LSMODE_MEASURER)
{
if(fGlyph && !_li._fLookaheadForGlyphing && IsCombiningMark(*(por->_pchBase)))
{
// We want to break the shaping if the formats are not similar
COneRun* porPrev = _listCurrent._pTail;
while(porPrev!=NULL && !porPrev->IsNormalRun())
{
porPrev = porPrev->_pPrev;
}
if(porPrev!=NULL && !porPrev->_lsCharProps.fGlyphBased)
{
const CCharFormat* pCF1 = por->GetCF();
const CCharFormat* pCF2 = porPrev->GetCF();
Assert(pCF1!=NULL && pCF2!=NULL);
_li._fLookaheadForGlyphing = pCF1->CompareForLikeFormat(pCF2);
}
}
}
else
{
if(_li._fLookaheadForGlyphing)
{
Assert(por->_lscch >= 1);
CTxtPtr txtptr(_pMarkup, por->Cp()+por->_lscch-1);
// N.B. (mikejoch) This is an extremely non-kosher lookup to do
// here. It is quite possible that chNext will be from an
// entirely different site. If that happens, though, it will
// only cause the unnecessary glyphing of this run, which
// doesn't actually affect the visual appearence.
while((chNext=txtptr.NextChar()) == WCH_NODE);
if(IsCombiningMark(chNext))
{
// Good chance this run needs to be glyphed with the next one.
// Turn glyphing on.
fGlyph = fForceGlyphing = TRUE;
}
}
}
// 8. Break run based on the script.
if(fGlyph || fRTL)
{
CComplexRun* pcr = por->GetNewComplexRun();
if(pcr == NULL)
{
return lserrOutOfMemory;
}
pcr->ComputeAnalysis(_pFlowLayout, fRTL, fForceGlyphing, chNext,
_chPassword, por, _listCurrent._pTail, uLangDigits);
// Something on the line needs glyphing.
if(por->_lsCharProps.fGlyphBased)
{
_fGlyphOnLine = TRUE;
#ifndef NO_UTF16
if(por->_sid!=sidSurrogateA && por->_sid!=sidSurrogateB)
#endif
{
por->_sid = sidDefault;
}
}
}
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: NeedToEatThisSpace
//
// Synopsis: Decide if the current space needs to be eaten. We eat any space
// after a abspos or aligned site *IF* that site was preceeded by
// a space too.
//
// Returns: lserr.
//
//-----------------------------------------------------------------------------
BOOL CLineServices::NeedToEatThisSpace(COneRun* porIn)
{
BOOL fMightFold = FALSE;
BOOL fFold = FALSE;
CElement* pElementLayout;
CTreeNode* pNode;
COneRun* por;
por = FindOneRun(porIn->_lscpBase);
if(por==NULL && porIn->_lscpBase>=_listCurrent._pTail->_lscpBase)
{
por = _listCurrent._pTail;
}
// BUGBUG(SujalP): We will not fold across hidden stuff... need to fix this...
while(por)
{
if(por->_fCharsForNestedLayout)
{
pNode = por->Branch();
Assert(pNode->NeedsLayout());
pElementLayout = pNode->GetUpdatedLayout()->ElementOwner();
if(!pElementLayout->IsInlinedElement())
{
fMightFold = TRUE;
}
else
{
break;
}
}
else
{
break;
}
por = por->_pPrev;
}
if(fMightFold)
{
if(!por)
{
fFold = TRUE;
}
else if(!por->_fCharsForNestedElement)
{
Assert(por->_pchBase);
TCHAR ch = por->_pchBase[por->_lscch-1];
if(ch==_T(' ') || ch==_T('\t'))
{
fFold = TRUE;
}
}
}
return fFold;
}
//-----------------------------------------------------------------------------
//
// Function: ChunkifyObjectRun
//
// Synopsis: Breakup a object run if necessary.
//
// Returns: lserr.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::ChunkifyObjectRun(COneRun* por, COneRun** pporOut)
{
CElement* pElementLayout;
CLayout* pLayout;
CTreeNode* pNode;
BOOL fInlinedElement;
BOOL fIsAbsolute = FALSE;
LSERR lserr = lserrNone;
LONG cp = por->Cp();
COneRun* porOut = por;
Assert(por->_lsCharProps.idObj == LSOBJID_EMBEDDED);
pNode = por->Branch();
Assert(pNode);
pLayout = pNode->GetUpdatedLayout();
Assert(pLayout);
pElementLayout = pLayout->ElementOwner();
Assert(pElementLayout);
fInlinedElement = pElementLayout->IsInlinedElement();
// Setup all the various flags and counts
if(fInlinedElement)
{
_lineCounts.AddLineCount(cp, LC_INLINEDSITES, por->_lscch);
}
else
{
fIsAbsolute = pNode->IsAbsolute((stylePosition)por->GetFF()->_bPositionType);
if(!fIsAbsolute)
{
_lineCounts.AddLineCount(cp, LC_ALIGNEDSITES, por->_lscch);
_lineFlags.AddLineFlag(por->Cp(), FLAG_HAS_ALIGNED);
}
else
{
// This is the only opportunity for us to measure abspos'd sites
if(_lsMode == LSMODE_MEASURER)
{
_lineCounts.AddLineCount(cp, LC_ABSOLUTESITES, por->_lscch);
pLayout->SetXProposed(0);
pLayout->SetYProposed(0);
}
_lineFlags.AddLineFlag(por->Cp(), FLAG_HAS_ABSOLUTE_ELT);
}
}
_lineFlags.AddLineFlag(cp, FLAG_HAS_EMBED_OR_WBR);
if(por->_fCharsForNestedRunOwner)
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_NESTED_RO);
_pMeasurer->_pRunOwner = pLayout;
}
if(IsOwnLineSite(por))
{
_fSingleSite = TRUE;
_li._fSingleSite = TRUE;
_li._fHasEOP = TRUE;
}
if(!fInlinedElement)
{
// Since we are not showing this run, lets just anti-synth it!
por->MakeRunAntiSynthetic();
// And remember that these chars are white at BOL
if(IsFirstNonWhiteOnLine(cp))
{
AlignedAtBOL(cp, por->_lscch);
}
}
*pporOut = porOut;
return lserr;
}
//+==============================================================================
//
// Method: GetRenderingHighlights
//
// Synopsis: Get the type of highlights between these two cp's by going through
// the array of HighlightSegments on
//
// A 'Highlight' denotes a "non-content-based" way of changing the rendering
// of something. Currently the only highlight is for selection. This may change.
//
//-------------------------------------------------------------------------------
// BUGBUG ( marka ) - this routine has been made generic enough so it could work
// for any type of highlighting. However we'll assume there's just Selection
// as then we can take 'quick outs' and bail out of looping through the entire array all the time
DWORD CLineServices::GetRenderingHighlights(int cpLineMin, int cpLineMax)
{
int i;
HighlightSegment** ppHighlight;
DWORD dwHighlight = HIGHLIGHT_TYPE_None;
CLSRenderer* pRenderer = GetRenderer();
if(pRenderer->_cpSelMax != - 1)
{
for(i=pRenderer->_aryHighlight.Size(),ppHighlight=pRenderer->_aryHighlight;
i>0; i--,ppHighlight++)
{
if(((*ppHighlight)->_cpStart<=cpLineMin) && ((*ppHighlight)->_cpEnd>=cpLineMax))
{
dwHighlight |= (*ppHighlight)->_dwHighlightType ;
}
}
}
return dwHighlight;
}
//+====================================================================================
//
// Method: SetRenderingMarkup
//
// Synopsis: Set any 'markup' on this COneRun
//
// BUGBUG: marka - currently the only type of Markup is Selection. We see if the given
// run is selected, and if so we mark-it.
//
// This used to be called ChunkfiyForSelection. However, under due to the new selection
// model's use of TreePos's the Run is automagically chunkified for us
//
//------------------------------------------------------------------------------------
LSERR CLineServices::SetRenderingHighlights(COneRun* por)
{
DWORD dwHighlight;
DWORD dwImeHighlight;
int cpMin = por->Cp() ;
int cpMax = por->Cp() + por->_lscch ;
// If we are not rendering we should do nothing
if(_lsMode != LSMODE_RENDERER)
{
goto Cleanup;
}
// We will not show selection if it is hidden or its an object.
if(por->_fHidden || por->_lsCharProps.idObj==LSOBJID_EMBEDDED)
{
goto Cleanup;
}
dwHighlight = GetRenderingHighlights(cpMin, cpMax);
#ifndef NO_IME
dwImeHighlight = (dwHighlight/HIGHLIGHT_TYPE_ImeInput) & 7;
if(dwImeHighlight)
{
por->ImeHighlight(_pFlowLayout, dwImeHighlight);
}
#endif // NO_IME
if((dwHighlight&HIGHLIGHT_TYPE_Selected) != 0)
{
por->Selected(_pFlowLayout, TRUE);
}
Cleanup:
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: CheckForUnderLine
//
// Synopsis: Check if the current run is underlined/overlined.
//
// Returns: lserr.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::CheckForUnderLine(COneRun* por)
{
LSERR lserr = lserrNone;
if(!por->_dwImeHighlight)
{
const CCharFormat* pCF = por->GetCF();
por->_lsCharProps.fUnderline = (_fIsEditable || !pCF->IsVisibilityHidden())
&& (pCF->_fUnderline || pCF->_fOverline || pCF->_fStrikeOut);
}
else
{
por->_lsCharProps.fUnderline = por->_fUnderlineForIME;
}
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: CheckForTransform
//
// Synopsis: If text transformation is necessary for the run, then do it here.
//
// Returns: lserr.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::CheckForTransform(COneRun* por)
{
LSERR lserr = lserrNone;
const CCharFormat* pCF = por->GetCF();
if(pCF->IsTextTransformNeeded())
{
TCHAR chPrev = WCH_NULL;
_lineFlags.AddLineFlag(por->Cp(), FLAG_HAS_NOBLAST);
if(pCF->_bTextTransform == styleTextTransformCapitalize)
{
COneRun* porTemp = FindOneRun(por->_lscpBase-1);
// If no run found on this line before this run, then its the first
// character on this line, and hence needs to be captilaized. This is
// done implicitly by initializing chPrev to WCH_NULL.
while(porTemp)
{
// If it is anti-synth, then its not shown at all or
// is not in the flow, hence we ignore it for the purposes
// of transformations. If it is synthetic then we will need
// to look at runs before the synthetic to determine the
// prev character. Hence, we only need to investigate normal runs
if(porTemp->IsNormalRun())
{
// If the previous run had a nested layout, then we will ignore it.
// The rule says that if there is a layout in the middle of a word
// then the character after the layout is *NOT* capitalized. If the
// layout is at the beginning of the word then the character needs
// to be capitalized. In essence, we completely ignore layouts when
// deciding whether a char should be capitalized, i.e. if we had
// the combination:
// <charX><layout><charY>, then capitalization of <charY> depends
// only on what <charX> -- ignoring the fact that there is a layout
// (It does not matter if the layout is hidden, aligned, abspos'd
// or relatively positioned).
if(!porTemp->_fCharsForNestedLayout && porTemp->_synthType==SYNTHTYPE_NONE)
{
Assert(porTemp->_ptp->IsText());
chPrev = porTemp->_pchBase[porTemp->_lscch-1];
break;
}
}
porTemp = porTemp->_pPrev;
}
}
por->_pchBase = (TCHAR*)TransformText(por->_cstrRunChars, por->_pchBase, por->_lscch,
pCF->_bTextTransform, chPrev);
if(por->_pchBase == NULL)
{
lserr = lserrOutOfMemory;
}
}
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: CheckForPassword
//
// Synopsis: If text transformation is necessary for the run, then do it here.
//
// Returns: lserr.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::CheckForPassword(COneRun* por)
{
LSERR lserr = lserrNone;
CString strPassword;
HRESULT hr;
Assert(_chPassword);
for(LONG i=0; i<por->_lscch; i++)
{
hr = strPassword.Append(&_chPassword, 1);
if(hr != S_OK)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
}
por->_pchBase = por->SetString(strPassword);
if(por->_pchBase == NULL)
{
lserr = lserrOutOfMemory;
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: AdjustForNavBRBug (member)
//
// Synopsis: Navigator will break between a space and a BR character at
// the end of a line if the BR character, when it's width is
// treated like that of a space character, will cause line to
// overflow. This is idiotic, but necessary for compat.
//
// Returns: LSERR
//
//-----------------------------------------------------------------------------
LSERR CLineServices::AdjustCpLimForNavBRBug(
LONG xWrapWidth, // IN
LSLINFO* plslinfo) // IN/OUT
{
LSERR lserr = lserrNone;
// check 1: (a) We must not be in a PRE and (b) the line
// must have at least three chars.
if(!_pPFFirst->HasPre(_fInnerPFFirst) && _cpLim-plslinfo->cpFirstVis>=3)
{
COneRun* por = FindOneRun(_lscpLim-1);
if(!por)
{
goto Cleanup;
}
// check 2: Line must have ended in a BR
if(por->_ptp->IsEndNode() && por->Branch()->Tag()==ETAG_BR)
{
// check 3: The BR char must be preceeded by a space char.
// Go to the begin BR
por = por->_pPrev;
if(!(por
&& por->IsAntiSyntheticRun()
&& por->_ptp->IsBeginNode()
&& por->Branch()->Tag()==ETAG_BR))
{
goto Cleanup;
}
// Now go one more beyond that to check for the space
do
{
por = por->_pPrev;
} while(por && por->IsAntiSyntheticRun() && !por->_fCharsForNestedLayout);
if(!por)
{
goto Cleanup;
}
// BUGBUG(SujalP + CThrash): This will not work if the space was
// in, say, a reverse object. But then this *is* a NAV bug. If
// somebody complains vehemently, then we will fix it...
if(por->IsNormalRun() && por->_ptp->IsText()
&& WCH_SPACE==por->_pchBase[por->_lscch-1])
{
if(_fMinMaxPass)
{
((CDisplay*)_pMeasurer->_pdp)->SetNavHackPossible();
}
// check 4: must have overflowed, because the width of a BR
// character is included in _xWidth
if(!_fMinMaxPass && _li._xWidth>xWrapWidth)
{
// check 5: The BR alone cannot be overflowing. We must
// have at least one pixel more to break before the BR.
HRESULT hr;
LSTEXTCELL lsTextCell;
hr = QueryLineCpPpoint(_lscpLim, FALSE, NULL, &lsTextCell);
if(S_OK==hr && (_li._xWidth - lsTextCell.dupCell)>xWrapWidth)
{
// Break between the space and the BR. Yuck! Also 2
// here because one for open BR and one for close BR
_cpLim -= 2;
// The char for open BR was antisynth'd in the lscp
// space, so just reduce by one char for the close BR.
_lscpLim--;
}
}
}
}
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: AdjustForRelElementAtEnd (member)
//
// Synopsis: In our quest to put as much on the line as possible we will end up
// putting the begin splay for a relatively positioned element on this
// line(the first character in this element will be on the next line)
// This is not really acceptable for positioning purposes and hence
// we detect that this happened and chop off the relative element
// begin splay (and any chars anti-synth'd after it) so that they will
// go to the next line. (Look at bug 54162).
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
VOID CLineServices::AdjustForRelElementAtEnd()
{
// By looking for _lscpLim - 1, we find the last but-one-run. After
// this run, there will possibly be antisynthetic runs (all at the same
// lscp -- but different cp's -- as the last char of this run) which
// have ended up on this line. It is these set of antisynthetic runs
// that we have to investigate to find any ones which begin a relatively
// positioned element. If we do find one, we will stop and modify cpLim
// so as to not include the begin splay and any antisynth's after it.
COneRun* por = FindOneRun(_lscpLim - 1);
Assert(por);
// Go to the start of the antisynth chunk (if any).
por = por->_pNext;
// Walk while we have antisynth runs
while(por && por->IsAntiSyntheticRun()
&& _lscpLim >= por->_lscpBase+por->_lscch)
{
// If it begins a relatively positioned element, then we want to
// stop and modify the cpLim
if(por->_ptp->IsBeginElementScope() && por->GetCF()->IsRelative(por->_fInnerCF))
{
_cpLim = por->Cp();
break;
}
Assert(por->_lscch == 1);
por = por->_pNext;
}
}
//-----------------------------------------------------------------------------
//
// Function: ComputeWhiteInfo (member)
//
// Synopsis: A post pass for the CMeasurer to compute whitespace
// information (_cchWhite and _xWhite) on the associated
// CLine object (_li).
//
// Returns: LSERR
//
//-----------------------------------------------------------------------------
HRESULT CLineServices::ComputeWhiteInfo(LSLINFO* plslinfo, LONG* pxMinLineWidth, DWORD dwlf,
LONG durWithTrailing, LONG durWithoutTrailing)
{
HRESULT hr = S_OK;
BOOL fInclEOLWhite = _pPFFirst->HasInclEOLWhite(_fInnerPFFirst);
CMarginInfo* pMarginInfo = (CMarginInfo*)_pMarginInfo;
// Note that cpLim is no longer an LSCP. It's been converted by the
// caller.
const LONG cpLim = _cpLim;
CTxtPtr txtptr(_pMarkup, cpLim);
const TCHAR chBreak = txtptr.GetPrevChar();
LONG lscpLim = _lscpLim - 1;
COneRun* porLast = FindOneRun(lscpLim);
Assert(_cpLim == _cpStart+_li._cch);
// Compute all the flags for the line
Assert(dwlf == _lineFlags.GetLineFlags(cpLim));
_li._fHasAbsoluteElt = (dwlf & FLAG_HAS_ABSOLUTE_ELT) ? TRUE : FALSE;
_li._fHasAligned = (dwlf & FLAG_HAS_ALIGNED) ? TRUE : FALSE;
_li._fHasEmbedOrWbr = (dwlf & FLAG_HAS_EMBED_OR_WBR) ? TRUE : FALSE;
_li._fHasNestedRunOwner = (dwlf & FLAG_HAS_NESTED_RO) ? TRUE : FALSE;
_li._fHasBackground = (dwlf & FLAG_HAS_BACKGROUND) ? TRUE : FALSE;
_li._fHasNBSPs = (dwlf & FLAG_HAS_NBSP) ? TRUE : FALSE;
_fHasRelative = (dwlf & FLAG_HAS_RELATIVE) ? TRUE : FALSE;
_fFoundLineHeight = (dwlf & FLAG_HAS_LINEHEIGHT) ? TRUE : FALSE;
pMarginInfo->_fClearLeft |= (dwlf & FLAG_HAS_CLEARLEFT) ? TRUE : FALSE;
pMarginInfo->_fClearRight|= (dwlf & FLAG_HAS_CLEARRIGHT) ? TRUE : FALSE;
_li._fHasBreak = (dwlf & FLAG_HAS_A_BR) ? TRUE : FALSE;
// Lines containing \r's also need to be marked _fHasBreak
if(!_li._fHasBreak && _fExpectCRLF && plslinfo->endr==endrEndPara)
{
_li._fHasBreak = TRUE;
}
_pFlowLayout->_fContainsRelative |= _fHasRelative;
// If all we have is whitespaces till here then mark it as a dummy line
if(IsDummyLine(cpLim))
{
const LONG cchHidden = _lineCounts.GetLineCount(cpLim, LC_HIDDEN);
const LONG cch = (_cpLim - _cpStart) - cchHidden;
_li._fDummyLine = TRUE;
_li._fForceNewLine = FALSE;
// If this line was a dummy line because all it contained was hidden
// characters, then we need to mark the entire line as hidden. Also
// if the paragraph contains nothing (except a blockbreak), we also
// need the hide the line. Note that LI's are an exception to this
// rule -- even if all we have on the line is a blockbreak, we don't
// want to hide it if it's an LI. (LI's are excluded in the dummy
// line check).
if(cchHidden && (cch==0 || _li._fFirstInPara))
{
_li._fHidden = TRUE;
_li._yBeforeSpace = 0;
}
}
// Also find out all the relevant counts
_cInlinedSites = _lineCounts.GetLineCount(cpLim, LC_INLINEDSITES);
_cAbsoluteSites = _lineCounts.GetLineCount(cpLim, LC_ABSOLUTESITES);
_cAlignedSites = _lineCounts.GetLineCount(cpLim, LC_ALIGNEDSITES);
// And the relevant values
if(_fFoundLineHeight)
{
_lMaxLineHeight = max(plslinfo->dvpMultiLineHeight,
_lineCounts.GetMaxLineValue(cpLim, LC_LINEHEIGHT));
}
// Consume trailing WCH_NOSCOPE/WCH_BLOCKBREAK characters.
_li._cchWhite = 0;
_li._xWhite = 0;
if(porLast && porLast->_ptp->IsNode() && porLast->Branch()->Tag()!=ETAG_BR)
{
// BUGBUG (cthrash) We're potentially tacking on characters but are
// not included their widths. These character can/will have widths in
// edit mode. The problem is, LS never measured them, so we'd have
// to measure them separately.
CTxtPtr txtptrT(txtptr);
long dcch;
// If we have a site that lives on it's own line, we may have stopped
// fetching characters prematurely. Specifically, we may have left
// some space characters behind.
while(TEXT(' ') == txtptrT.GetChar())
{
if(!txtptrT.AdvanceCp(1))
{
break;
}
}
dcch = txtptrT.GetCp() - txtptr.GetCp();
_li._cchWhite += (SHORT)dcch;
_li._cch += dcch;
}
// Compute _cchWhite and _xWhite of line
if(!fInclEOLWhite)
{
BOOL fDone = FALSE;
TCHAR ch;
COneRun* por = porLast;
LONG index = por ? lscpLim - por->_lscpBase : 0;
while(por && !fDone)
{
// BUGBUG(SujalP): As noted below, this does not work with
// aligned/abspos'd sites at EOL
if(por->_fCharsForNestedLayout)
{
fDone = TRUE;
break;
}
if(por->IsNormalRun())
{
for(LONG i=index; i>=0; i--)
{
ch = por->_pchBase[i];
if(IsWhite(ch)
// If its a no scope char and we are not showing it then
// we treat it like a whitespace.
// BUGBUG(SujalP) We also need this check only
// if the site is aligned/abspos'd
)
{
_li._cchWhite++;
txtptr.AdvanceCp(-1);
}
else
{
fDone = TRUE;
break;
}
}
}
por = por->_pPrev;
index = por ? por->_lscch - 1 : 0;
}
_li._xWhite = durWithTrailing - durWithoutTrailing;
_li._xWidth -= _li._xWhite;
if(porLast && chBreak==WCH_NODE && !_fScanForCR)
{
CTreePos* ptp = porLast->_ptp;
if(ptp->IsEndElementScope() && ptp->Branch()->Tag()==ETAG_BR)
{
LONG cp = CPFromLSCP(plslinfo->cpFirstVis);
_li._fEatMargin = LONG(txtptr.GetCp())==cp + 1;
}
}
}
else if(_fScanForCR)
{
HRESULT hr;
LSTEXTCELL lsTextCell;
CTxtPtr tp(_pMarkup, cpLim);
TCHAR ch = tp.GetChar();
TCHAR chPrev = tp.GetPrevChar();
BOOL fDecWidth = FALSE;
LONG cpJunk;
if(chPrev==_T('\n') || chPrev==_T('\r'))
{
fDecWidth = TRUE;
}
else if(ch == WCH_NODE)
{
CTreePos* ptpLast = _pMarkup->TreePosAtCp(cpLim-1, &cpJunk);
if(ptpLast->IsEndNode()
&& (ptpLast->Branch()->Tag()==ETAG_BR
|| IsPreLikeNode(ptpLast->Branch())))
{
fDecWidth = TRUE;
}
}
if(fDecWidth)
{
// The width returned by LS includes the \n, which we don't want
// included in CLine::_xWidth.
hr = QueryLineCpPpoint(_lscpLim-1, FALSE, NULL, &lsTextCell);
if(!hr)
{
_li._xWidth -= lsTextCell.dupCell; // note _xWhite is unchanged
if(pxMinLineWidth)
{
*pxMinLineWidth -= lsTextCell.dupCell;
}
}
}
}
else
{
_li._cchWhite = plslinfo->cpFirstVis - _cpStart;
}
// If the white at the end of the line meets the white at the beginning
// of a line, then we need to shift the BOL white to the EOL white.
if(_cWhiteAtBOL+_li._cchWhite >= _li._cch)
{
_li._cchWhite = _li._cch;
}
// Find out if the last char on the line has any overhang, and if so set it on
// the line.
if(_fHasOverhang)
{
COneRun* por = porLast;
while(por)
{
if(por->_ptp->IsText())
{
_li._xLineOverhang = por->_xOverhang;
if(pxMinLineWidth)
{
*pxMinLineWidth += por->_xOverhang;
}
break;
}
else if(por->_fCharsForNestedLayout)
{
break;
}
// Continue for synth and antisynth runs
por = por->_pPrev;
}
}
// Fold the S_FALSE case in -- don't propagate.
hr = SUCCEEDED(hr) ? S_OK : hr;
if(hr)
{
goto Cleanup;
}
DecideIfLineCanBeBlastedToScreen(_cpStart+_li._cch-_li._cchWhite, dwlf);
Cleanup:
RRETURN(hr);
}
//-----------------------------------------------------------------------------
//
// Function: DecideIfLineCanBeBlastedToScreen
//
// Synopsis: Decides if it is possible for a line to be blasted to screen
// in a single shot.
//
// Params: The last cp in the line
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
void CLineServices::DecideIfLineCanBeBlastedToScreen(LONG cpEndLine, DWORD dwlf)
{
// By default you cannot blast a line to the screen
_li._fCanBlastToScreen = FALSE;
// 0) If we have eaten a space char or have fontlinking, we cannot blast
// line to screen
if(dwlf & FLAG_HAS_NOBLAST)
{
goto Cleanup;
}
// 1) No justification
if(_pPFFirst->GetBlockAlign(_fInnerPFFirst) == htmlBlockAlignJustify)
{
goto Cleanup;
}
// 2) Only simple LTR
if(_pBidiLine != NULL)
{
goto Cleanup;
}
// 3) Cannot handle passwords for blasting.
if(_chPassword)
{
goto Cleanup;
}
// 4) If there is a glyph on the line then do not blast.
if(_fGlyphOnLine)
{
goto Cleanup;
}
// 5) There's IME highlighting, so we can't blast.
if(_fSawATab)
{
goto Cleanup;
}
// 6) There's IME highlighting, so we can't blast.
if(_fHasIMEHighlight)
{
goto Cleanup;
}
// None of the restrictions apply, lets blast the sucker to the screen!
_li._fCanBlastToScreen = TRUE;
Cleanup:
return;
}
LONG CLineServices::RememberLineHeight(LONG cp, const CCharFormat* pCF, const CBaseCcs* pBaseCcs)
{
long lAdjLineHeight;
AssertSz(pCF->_cuvLineHeight.GetUnitType()!=CUnitValue::UNIT_PERCENT,
"Percent units should have been converted to points in ApplyInnerOuterFormats!");
// If there's no height set, get out quick.
if(pCF->_cuvLineHeight.IsNull())
{
lAdjLineHeight = pBaseCcs->_yHeight + abs(pBaseCcs->_yOffset);
}
// Apply the CSS Attribute LINE_HEIGHT
else
{
const CUnitValue* pcuvUseThis = &pCF->_cuvLineHeight;
long lFontHeight = 1;
if(pcuvUseThis->GetUnitType() == CUnitValue::UNIT_FLOAT)
{
CUnitValue cuv;
cuv = pCF->_cuvLineHeight;
cuv.ScaleTo(CUnitValue::UNIT_EM);
pcuvUseThis = &cuv;
lFontHeight = _pci->DocPixelsFromWindowY(pCF->GetHeightInTwips(_pFlowLayout->Doc()), TRUE);
}
lAdjLineHeight = pcuvUseThis->YGetPixelValue(_pci, 0, lFontHeight);
NoteLineHeight(cp, lAdjLineHeight);
}
if(pCF->HasLineGrid(TRUE))
{
_lineFlags.AddLineFlag(cp, FLAG_HAS_NOBLAST);
lAdjLineHeight = GetClosestGridMultiple(GetLineGridSize(), lAdjLineHeight);
NoteLineHeight(cp, lAdjLineHeight);
}
return lAdjLineHeight;
}
//-------------------------------------------------------------------------
//
// Member: VerticalAlignObjects
//
// Synopsis: Process all vertically aligned objects and adjust the line
// height
//
//-------------------------------------------------------------------------
void CLineServices::VerticalAlignObjects(CLSMeasurer& lsme, unsigned long cSites, long xLineShift)
{
LONG cch;
LONG yTxtAscent = _li._yHeight - _li._yDescent;
LONG yTxtDescent = _li._yDescent;
LONG yDescent = _li._yDescent;
LONG yAscent = yTxtAscent;
LONG yAbsHeight = 0;
LONG yTmpAscent = 0;
LONG yTmpDescent = 0;
BOOL fMeasuring = TRUE;
BOOL fPositioning= FALSE;
CElement* pElementFL = _pFlowLayout->ElementOwner();
CLayout* pRunOwner;
CLayout* pLayout;
CElement* pElementLayout;
const CCharFormat* pCF = NULL;
CTreeNode* pNode;
CTreePos* ptpStart;
CTreePos* ptp;
LONG ich;
LONG cchAdvanceStart;
LONG cchAdvance;
// this is the display's margins.
CMarginInfo* pMarginInfo = (CMarginInfo*)_pMarginInfo;
// this is site margins
long xLeftMargin = 0;
long xRightMargin = 0;
htmlControlAlign atAbs = htmlControlAlignNotSet;
BOOL fRTLDisplay = _pFlowLayout->GetDisplay()->IsRTL();
LONG cchPreChars = lsme._fMeasureFromTheStart ? 0 : lsme._cchPreChars;
ptpStart = _pFlowLayout->GetContentMarkup()->TreePosAtCp(lsme.GetCp()-_li._cch-cchPreChars, &ich);
Assert(ptpStart);
cchAdvanceStart = min(long(_li._cch+cchPreChars), ptpStart->GetCch()-ich);
// first pass we measure the line's baseline and height
// second pass we set the rcProposed of the site relative to the line.
while(fMeasuring || fPositioning)
{
cch = _li._cch + cchPreChars;
lsme.Advance(-cch);
ptp = ptpStart;
cchAdvance = cchAdvanceStart;
pRunOwner = _pFlowLayout;
while(cch)
{
if(ptp->IsBeginElementScope())
{
pNode = ptp->Branch();
pLayout = pElementFL!=pNode->Element()&&pNode->NeedsLayout()
? pNode->GetUpdatedLayout() : NULL;
}
else
{
pNode = ptp->GetBranch();
pLayout = NULL;
}
pElementLayout = pLayout ? pNode->Element() : NULL;
pCF = pNode->GetCharFormat();
// If we are transisitioning from a normal chunk to relative or
// relative to normal chunk, add a new chunk to the line. Relative
// elements can end in the prechar's so look for transition in
// prechar's too.
if(fMeasuring && _fHasRelative && !pCF->IsDisplayNone()
&& (ptp->IsBeginElementScope()
|| ptp->IsText()
|| (ptp->IsEndElementScope()
&& cch>(_li._cch-(lsme._fMeasureFromTheStart?lsme._cchPreChars:0)))))
{
TestForTransitionToOrFromRelativeChunk(
lsme,
pCF->IsRelative(SameScope(pNode, pElementFL)),
pElementLayout);
}
// If the current branch is a site and not the current CTxtSite
if(pLayout && (_fIsEditable || !pLayout->IsDisplayNone()))
{
htmlControlAlign atSite;
BOOL fOwnLine;
LONG lBorderSpace;
LONG lVPadding = pElementLayout->TestClassFlag(CElement::ELEMENTDESC_VPADDING) ? 1 : 0;
LONG yObjHeight;
ELEMENT_TAG etag = pElementLayout->Tag();
CTreeNode* pNodeLayout = pElementLayout->GetFirstBranch();
BOOL fAbsolute = pNodeLayout->IsAbsolute();
atSite = pElementLayout->GetSiteAlign();
fOwnLine = pElementLayout->HasFlag(TAGDESC_OWNLINE);
if(fAbsolute || pElementLayout->IsInlinedElement())
{
LONG yProposed = 0;
LONG yTopMargin, yBottomMargin;
pLayout->GetMarginInfo(_pci, &xLeftMargin, &yTopMargin, &xRightMargin, &yBottomMargin);
// Do the horizontal positioning. We can do it either during
// measuring or during vertical positioning. We arbitrarily
// chose to do it during measuring.
if(fMeasuring)
{
{
LONG xPosOfCp = 0;
if(!fAbsolute || pNode->GetFancyFormat()->_fAutoPositioned)
{
BOOL fRTLFlow;
LSCP lscp = LSCPFromCP(lsme.GetCp());
xPosOfCp = CalculateXPositionOfLSCP(lscp, FALSE, &fRTLFlow);
// Adjust xPosOfCp if we have any RTL cases
// Bug 45767 - check for flow not being same direction of line
if(fRTLDisplay || _li._fRTL || fRTLFlow)
{
if(!fAbsolute)
{
CSize size;
pLayout->GetSize(&size);
AdjustXPosOfCp(fRTLDisplay, _li._fRTL, fRTLFlow, &xPosOfCp, size.cx);
}
else if(fRTLDisplay)
{
// To make the xPosOfCp have the correct measurement for the
// right to left display tree node, we make it negative because
// origin (0,0) is top/right in RTL display nodes.
xPosOfCp = -xPosOfCp;
}
}
if(pCF->HasCharGrid(FALSE))
{
long xWidth;
_pFlowLayout->GetSiteWidth(pLayout, _pci, FALSE, _xWidthMaxAvail, &xWidth);
xPosOfCp += (GetClosestGridMultiple(GetCharGridSize(), xWidth) - xWidth)/2;
}
// absolute margins are added in CLayout::HandlePositionRequest
// due to reverse flow issues.
if(!fAbsolute)
{
if(!fRTLDisplay)
{
xPosOfCp += xLeftMargin;
}
else
{
xPosOfCp += xRightMargin;
}
}
pLayout->SetXProposed(xPosOfCp);
}
if(fAbsolute)
{
// BUGBUG (paulnel) What about when the left or right has been specified and the width is auto?
// The xPos needs to be adjusted to properly place this case.
// fix for #3214, absolutely positioned sites with width auto
// need to be measure once we know the line shift, since their
// size depends on the xPosition in the line.
CSaveCalcInfo sci(_pci);
long xWidth;
_pci->_fUseOffset = TRUE;
_pci->_xOffsetInLine = xLineShift + xPosOfCp;
_pFlowLayout->GetSiteWidth(pLayout, _pci, TRUE, _xWidthMaxAvail, &xWidth);
}
}
}
if(!fAbsolute)
{
CSize size;
if(etag == ETAG_HR)
{
lBorderSpace = GRABSIZE;
}
else
{
// Netscape has a pixel descent and ascent to the line if one of the sites
// spans the entire line vertically(#20029, #25534).
lBorderSpace = lVPadding;
}
pLayout->GetSize(&size);
yObjHeight = max(0L, size.cy+yTopMargin+yBottomMargin) + (2*lBorderSpace);
if(pCF->_fIsRubyText)
{
RubyInfo* pRubyInfo = GetRubyInfoFromCp(lsme.GetCp());
if(pRubyInfo)
{
yObjHeight += pRubyInfo->yHeightRubyBase - yTxtDescent + pRubyInfo->yDescentRubyText;
}
}
switch(atSite)
{
// align to the baseline of the text
case htmlControlAlignNotSet:
case htmlControlAlignBottom:
case htmlControlAlignBaseline:
{
LONG lDefDescent =
(pElementLayout->TestClassFlag(CElement::ELEMENTDESC_HASDEFDESCENT)) ? 4 : 0;
if(fMeasuring)
{
yTmpDescent = lBorderSpace + lDefDescent;
yTmpAscent = yObjHeight - yTmpDescent;
}
else
{
yProposed += yAscent - yObjHeight + 2*lBorderSpace + lDefDescent;
}
break;
}
// align to the top of the text
case htmlControlAlignTextTop:
if(fMeasuring)
{
yTmpAscent = yTxtAscent + lBorderSpace;
yTmpDescent = yObjHeight - yTxtAscent - lBorderSpace;
}
else
{
yProposed += yAscent - yTxtAscent + lBorderSpace;
}
break;
// center of the image aligned to the baseline of the text
case htmlControlAlignMiddle:
case htmlControlAlignCenter:
if(fMeasuring)
{
yTmpAscent = (yObjHeight + 1)/2; // + 1 for round off
yTmpDescent = yObjHeight/2;
}
else
{
yProposed += (yAscent + yDescent - yObjHeight) / 2 + lBorderSpace;
}
break;
// align to the top, absmiddle and absbottom of the line, doesn't really
// effect the ascent and descent directly, so we store the
// absolute height of the object and recompute the ascent
// and descent at the end.
case htmlControlAlignAbsMiddle:
if(fPositioning)
{
yProposed += (yAscent + yDescent - yObjHeight) / 2 + lBorderSpace;
break;
} // fall through when measuring and update max abs height
case htmlControlAlignTop:
if(fPositioning)
{
yProposed += lBorderSpace;
break;
} // fall through when measuring and update the max abs height
case htmlControlAlignAbsBottom:
if(fMeasuring)
{
yTmpAscent = 0;
yTmpDescent = 0;
if(yObjHeight > yAbsHeight)
{
yAbsHeight = yObjHeight;
atAbs = atSite;
}
}
else
{
yProposed += yAscent + yDescent - yObjHeight + lBorderSpace;
}
break;
default: // we don't want to do anything for
if(fOwnLine)
{
if(fMeasuring)
{
yTmpDescent = lBorderSpace;
yTmpAscent = yObjHeight - lBorderSpace;
}
else
{
yProposed += yAscent - yObjHeight + lBorderSpace;
}
}
break; // left/center/right aligned objects
}
// Keep track of the max ascent and descent
if(fMeasuring)
{
if(yTmpAscent > yAscent)
{
yAscent = yTmpAscent;
}
if(yTmpDescent > yDescent)
{
yDescent = yTmpDescent;
}
}
else if(pCF->HasLineGrid(FALSE))
{
pLayout->SetYProposed(_li._yHeight - yObjHeight - _li._yDescent + yTopMargin);
}
else
{
pLayout->SetYProposed(yProposed + lsme._cyTopBordPad + yTopMargin);
}
}
}
// If positioning, add the current layout to the display tree
if(fPositioning
&& (_pci->_smMode==SIZEMODE_NATURAL
|| _pci->_smMode==SIZEMODE_SET
|| _pci->_smMode==SIZEMODE_FULLSIZE)
&& !pElementLayout->IsAligned())
{
const CFancyFormat* pFF = pElementLayout->GetFirstBranch()->GetFancyFormat();
long xPos;
if(!fRTLDisplay)
{
xPos = pMarginInfo->_xLeftMargin + _li._xLeft;
}
else
{
xPos = - pMarginInfo->_xRightMargin - _li._xRight;
}
if(!pFF->_fPositioned && !pCF->_fRelative)
{
// we are not using GetYTop for to get the offset of the line because
// the before space is not added to the height yet.
lsme._pDispNodePrev =
_pFlowLayout->GetDisplay()->AddLayoutDispNode(
_pci,
pElementLayout->GetFirstBranch(),
xPos,
lsme._yli+_li._yBeforeSpace+(_li._yHeight-_li._yExtent)/2,
lsme._pDispNodePrev);
}
else
{
// If top and bottom or left and right are "auto", position the object
xPos += pLayout->GetXProposed();
if(fAbsolute)
{
pLayout->SetYProposed(lsme._cyTopBordPad);
}
CPoint ptAuto(xPos,
lsme._yli+_li._yBeforeSpace+(_li._yHeight-_li._yExtent)/2+pLayout->GetYProposed());
pElementLayout->ZChangeElement(0, &ptAuto);
}
}
}
if(pElementLayout)
{
// setup cchAdvance to skip the current layout
cchAdvance = lsme.GetNestedElementCch(pElementLayout, &ptp);
Assert(ptp);
}
cch -= cchAdvance;
lsme.Advance(cchAdvance);
ptp = ptp->NextTreePos();
cchAdvance = min(cch, ptp->GetCch());
}
// We have just finished measuring, update the line's ascent and descent.
if(fMeasuring)
{
// If we have ALIGN_TYPEABSBOTTOM or ALIGN_TYPETOP, they do not contribute
// to ascent or descent based on the baseline
if(yAbsHeight > yAscent + yDescent)
{
if(atAbs == htmlControlAlignAbsMiddle)
{
LONG yDiff = yAbsHeight - yAscent - yDescent;
yAscent += (yDiff + 1) / 2;
yDescent += yDiff / 2;
}
else if(atAbs == htmlControlAlignAbsBottom)
{
yAscent = yAbsHeight - yDescent;
}
else
{
yDescent = yAbsHeight - yAscent;
}
}
// now update the line height
_li._yHeight = yAscent + yDescent;
_li._yDescent = yDescent;
if(pCF && pCF->HasLineGrid(FALSE))
{
LONG yNormalHeight = _li._yHeight;
_li._yHeight = GetClosestGridMultiple(GetLineGridSize(), _li._yHeight);
// We don't want to cook up our own line descent if the biggest thing on this
// line is just text... our descent has already been calculated for us in that
// case
if(yNormalHeight != yTxtAscent+yTxtDescent)
{
_li._yDescent += (_li._yHeight - yNormalHeight)/2 + (_li._yHeight - yNormalHeight)%2;
}
}
// Without this line, line heights specified through
// styles would override the natural height of the
// image. This would be cool, but the W3C doesn't
// like it. Absolute & aligned sites do not affect
// line height.
if(_cInlinedSites)
{
_fFoundLineHeight = FALSE;
}
Assert(_li._yHeight >= 0);
// Allow last minute adjustment to line height, we need
// to call this here, because when positioning all the
// site in line for the display tree, we want the correct
// YTop.
AdjustLineHeight();
// And now the positioning pass
fMeasuring = FALSE;
fPositioning = TRUE;
}
else
{
fPositioning = FALSE;
}
}
}
//-----------------------------------------------------------------------------
//
// Member: CLineServices::GetRubyInfoFromCp(LONG cpRubyText)
//
// Synopsis: Linearly searches through the list of ruby infos and
// returns the info of the ruby object that contains the given
// cp. Note that this function should only be called with a
// cp that corresponds to a position within Ruby pronunciation
// text.
//
// BUGBUG (t-ramar): this code does not take advantage of
// the fact that this array is sorted by cp, but it does depend
// on this fact. This may be a problem because the entries in this
// array are appended in the FetchRubyPosition Line Services callback.
//
//-----------------------------------------------------------------------------
RubyInfo* CLineServices::GetRubyInfoFromCp(LONG cpRubyText)
{
RubyInfo* pRubyInfo = NULL;
int i;
if((RubyInfo*)_aryRubyInfo == NULL)
{
goto Cleanup;
}
for(i=_aryRubyInfo.Size(),pRubyInfo=_aryRubyInfo; i>0; i--,pRubyInfo++)
{
if(pRubyInfo->cp > cpRubyText)
{
break;
}
}
pRubyInfo--;
// if this assert fails, chances are that the cp isn't doesn't correspond
// to a position within some ruby pronunciation text
Assert(pRubyInfo >= (RubyInfo*)_aryRubyInfo);
Cleanup:
return pRubyInfo;
}
//-----------------------------------------------------------------------------
//
// Member: CLSMeasurer::AdjustLineHeight()
//
// Synopsis: Adjust for space before/after and line spacing rules.
//
//-----------------------------------------------------------------------------
void CLineServices::AdjustLineHeight()
{
// This had better be true.
Assert(_li._yHeight >= 0);
// Need to remember these for hit testing.
_li._yExtent = _li._yHeight;
// Only do this if there is a line height used somewhere.
if(_lMaxLineHeight!=LONG_MIN && _fFoundLineHeight)
{
_li._yDescent += (_lMaxLineHeight - _li._yHeight) / 2;
_li._yHeight = _lMaxLineHeight;
}
}
//-----------------------------------------------------------------------------
//
// Member: CLineServices::MeasureLineShift (fZeroLengthLine)
//
// Synopsis: Computes and returns the line x shift due to alignment
//
//-----------------------------------------------------------------------------
LONG CLineServices::MeasureLineShift(LONG cp, LONG xWidthMax, BOOL fMinMax, LONG* pdxRemainder)
{
long xShift;
UINT uJustified;
Assert(_li._fRTL == (unsigned)_pPFFirst->HasRTL(_fInnerPFFirst));
xShift = ComputeLineShift(
(htmlAlign)_pPFFirst->GetBlockAlign(_fInnerPFFirst),
_pFlowLayout->GetDisplay()->IsRTL(),
_li._fRTL,
fMinMax,
xWidthMax,
_li._xLeft+_li._xWidth+_li._xLineOverhang+_li._xRight,
&uJustified,
pdxRemainder);
_li._fJustified = uJustified;
return xShift;
}
//-----------------------------------------------------------------------------
//
// Member: CalculateXPositionOfLSCP
//
// Synopsis: Calculates the X position for LSCP
//
//-----------------------------------------------------------------------------
LONG CLineServices::CalculateXPositionOfLSCP(
LSCP lscp, // LSCP to return the position of.
BOOL fAfterPrevCp, // Return the trailing point of the previous LSCP (for an ambigous bidi cp)
BOOL* pfRTLFlow) // Flow direction of LSCP.
{
LSTEXTCELL lsTextCell;
HRESULT hr;
BOOL fRTLFlow = FALSE;
BOOL fUsePrevLSCP = FALSE;
LONG xRet;
if(fAfterPrevCp && _pBidiLine != NULL)
{
LSCP lscpPrev = FindPrevLSCP(lscp, &fUsePrevLSCP);
if(fUsePrevLSCP)
{
lscp = lscpPrev;
}
}
hr = QueryLineCpPpoint(lscp, FALSE, NULL, &lsTextCell, &fRTLFlow);
if(pfRTLFlow)
{
*pfRTLFlow = fRTLFlow;
}
xRet = lsTextCell.pointUvStartCell.u;
// If we're querying for a character which cannot be measured (e.g. a
// section break char), then LS returns the last character it could
// measure. To get the x-position, we add the width of this character.
if (S_OK==hr && (lsTextCell.cpEndCell<lscp || fUsePrevLSCP))
{
if((unsigned)fRTLFlow == _li._fRTL)
{
xRet += lsTextCell.dupCell;
}
else
{
xRet -= lsTextCell.dupCell;
// What is happening here is that we are being positioned at say pixel
// pos 10 (xRet=10) and are asked to draw reverese a character which is
// 11 px wide. So we would then draw at px10, at px9 ... and finally at
// px 0 -- for at grand total of 11 px. Having drawn at 0, we would be
// put back at -1. While the going back by 1px is correct, at the BOL
// this will put us at -1, which is unaccepatble and hence the max with 0.
xRet = max(0L, xRet);
}
}
else if(hr==S_OK && lsTextCell.cCharsInCell>1 && lscp>lsTextCell.cpStartCell)
{
long lClusterAdjust = MulDivQuick(lscp-lsTextCell.cpStartCell,
lsTextCell.dupCell, lsTextCell.cCharsInCell);
// we have multiple cps mapped to one glyph. This simply places the caret
// a percentage of space between beginning and end
if((unsigned)fRTLFlow == _li._fRTL)
{
xRet += lClusterAdjust;
}
else
{
xRet -= lClusterAdjust;
}
}
Assert(hr || xRet>=0);
return hr?0:xRet;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::CalcPositionsOfRangeOnLine
//
// Synopsis: Find the position of a stretch of text starting at cpStart and
// and running to cpEnd, inclusive. The text may be broken into
// multiple rects if the line has reverse objects (runs with
// mixed directionallity) in it.
//
// Returns: The number of chunks in the range. Usually this will just be
// one. If an error occurs it will be zero. The actual width of
// text (in device units) is returned in paryChunks as rects from
// the beginning of the line. The top and bottom entries of each
// rect will be 0. No assumptions should be made about the order
// of the rects; the first rect may or may not be the leftmost or
// rightmost.
//
//-----------------------------------------------------------------------------
LONG CLineServices::CalcPositionsOfRangeOnLine(
LONG cpStart,
LONG cpEnd,
LONG xShift,
CDataAry<RECT>* paryChunks)
{
CStackDataAry<LSQSUBINFO, 4> aryLsqsubinfo;
LSTEXTCELL lsTextCell;
LSCP lscpStart = LSCPFromCP(max(cpStart, _cpStart));
LSCP lscpEnd = LSCPFromCP(cpEnd);
HRESULT hr;
BOOL fSublineReverseFlow = FALSE;
LONG xStart;
LONG xEnd;
RECT rcChunk;
LONG i;
LSTFLOW tflow = (!_li._fRTL ? lstflowES : lstflowWS);
Assert(paryChunks!=NULL && paryChunks->Size()==0);
Assert(cpStart <= cpEnd);
rcChunk.top = rcChunk.bottom = 0;
aryLsqsubinfo.Grow(4); // Guaranteed to succeed since we're working from the stack.
hr = QueryLineCpPpoint(lscpStart, FALSE, &aryLsqsubinfo, &lsTextCell, FALSE);
xStart = lsTextCell.pointUvStartCell.u;
for(i=aryLsqsubinfo.Size()-1; i>=0; i--)
{
const LSQSUBINFO& qsubinfo = aryLsqsubinfo[i];
const LSQSUBINFO& qsubinfoParent = aryLsqsubinfo[max((LONG)(i-1), 0L)];
if(lscpEnd < (LSCP)(qsubinfo.cpFirstSubline+qsubinfo.dcpSubline))
{
// lscpEnd is in this subline. Break out.
break;
}
// If the subline and its parent are going in different directions
// stuff the current range into the chunk array and move xStart to
// the "end" (relative to the parent) of the current subline.
if((qsubinfo.lstflowSubline&fUDirection) != (qsubinfoParent.lstflowSubline&fUDirection))
{
// Append the start of the chunk to the chunk array.
rcChunk.left = xShift + xStart;
fSublineReverseFlow = !!((qsubinfo.lstflowSubline^tflow) & fUDirection);
// Append the end of the chunk to the chunk array.
// If the subline flow doesn't match the line direction then we're
// moving against the flow of the line and we will subtract the
// subline width from the subline start to find the end point.
rcChunk.right = xShift + qsubinfo.pointUvStartSubline.u +
(fSublineReverseFlow?-qsubinfo.dupSubline:qsubinfo.dupSubline);
// do some reverse flow cleanup before inserting rect into the array
if(rcChunk.left > rcChunk.right)
{
Assert(fSublineReverseFlow);
long temp = rcChunk.left;
rcChunk.left = rcChunk.right + 1;
rcChunk.right = temp + 1;
}
paryChunks->AppendIndirect(&rcChunk);
xStart = qsubinfo.pointUvStartSubline.u + (fSublineReverseFlow?1:-1);
}
}
aryLsqsubinfo.Grow(4); // Guaranteed to succeed since we're working from the stack.
hr = QueryLineCpPpoint(lscpEnd, FALSE, &aryLsqsubinfo, &lsTextCell, FALSE);
xEnd = lsTextCell.pointUvStartCell.u;
if(lscpEnd > lsTextCell.cpEndCell)
{
xEnd += ((aryLsqsubinfo.Size()==0 ||
!((aryLsqsubinfo[aryLsqsubinfo.Size()-1].lstflowSubline^tflow)&fUDirection))?lsTextCell.dupCell:-lsTextCell.dupCell);
}
for(i=aryLsqsubinfo.Size()-1; i>=0; i--)
{
const LSQSUBINFO& qsubinfo = aryLsqsubinfo[i];
const LSQSUBINFO& qsubinfoParent = aryLsqsubinfo[max((LONG)(i-1), 0L)];
if(lscpStart >= qsubinfo.cpFirstSubline)
{
// lscpStart is in this subline. Break out.
break;
}
// If the subline and its parent are going in different directions
// stuff the current range into the chunk array and move xEnd to
// the "start" (relative to the parent) of the current subline.
if((qsubinfo.lstflowSubline&fUDirection) != (qsubinfoParent.lstflowSubline&fUDirection))
{
fSublineReverseFlow = !!((qsubinfo.lstflowSubline^tflow) & fUDirection);
if(xEnd != qsubinfo.pointUvStartSubline.u)
{
// Append the start of the chunk to the chunk array.
rcChunk.left = xShift + qsubinfo.pointUvStartSubline.u;
// Append the end of the chunk to the chunk array.
rcChunk.right = xShift + xEnd;
// do some reverse flow cleanup before inserting rect into the array
if(rcChunk.left > rcChunk.right)
{
Assert(fSublineReverseFlow);
long temp = rcChunk.left;
rcChunk.left = rcChunk.right + 1;
rcChunk.right = temp + 1;
}
paryChunks->AppendIndirect(&rcChunk);
}
// If the subline flow doesn't match the line direction then we're
// moving against the flow of the line and we will subtract the
// subline width from the subline start to find the end point.
xEnd = qsubinfo.pointUvStartSubline.u +
(fSublineReverseFlow?-(qsubinfo.dupSubline-1):(qsubinfo.dupSubline-1));
}
}
rcChunk.left = xShift + xStart;
rcChunk.right = xShift + xEnd;
// do some reverse flow cleanup before inserting rect into the array
if(rcChunk.left > rcChunk.right)
{
long temp = rcChunk.left;
rcChunk.left = rcChunk.right + 1;
rcChunk.right = temp + 1;
}
paryChunks->AppendIndirect(&rcChunk);
return paryChunks->Size();
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::CalcRectsOfRangeOnLine
//
// Synopsis: Find the position of a stretch of text starting at cpStart and
// and running to cpEnd, inclusive. The text may be broken into
// multiple runs if different font sizes or styles are used, or there
// is mixed directionallity in it.
//
// Returns: The number of chunks in the range. Usually this will just be
// one. If an error occurs it will be zero. The actual width of
// text (in device units) is returned in paryChunks as rects of
// offsets from the beginning of the line.
// No assumptions should be made about the order of the chunks;
// the first chunk may or may not be the chunk which includes
// cpStart.
//
//-----------------------------------------------------------------------------
LONG CLineServices::CalcRectsOfRangeOnLine(
LONG cpStart,
LONG cpEnd,
LONG xShift,
LONG yPos,
CDataAry<RECT>* paryChunks,
DWORD dwFlags)
{
CStackDataAry<LSQSUBINFO, 4> aryLsqsubinfo;
HRESULT hr;
LSTEXTCELL lsTextCell;
LSCP lscpRunStart = LSCPFromCP(max(cpStart, _cpStart));
LSCP lscpEnd = min(LSCPFromCP(cpEnd), _lscpLim);
BOOL fSublineReverseFlow;
LSTFLOW tflow = (!_li._fRTL ? lstflowES : lstflowWS);
LONG xStart;
LONG xEnd;
LONG yTop = 0;
LONG yBottom = 0;
RECT rcChunk;
RECT rcLast = { 0 };
COneRun* porCurrent = _listCurrent._pHead;
// we should never come in here with an LSCP that is in the middle of a COneRun. Those types (for selection)
// should go through CalcPositionsOfRangeOnLine.
// move quickly to the por that has the right lscpstart
while(porCurrent->_lscpBase < lscpRunStart)
{
porCurrent = porCurrent->_pNext;
// If we assert here, something is messed up. Please investigate
Assert(porCurrent != NULL);
// if we reached the end of the list we need to bail out.
if(porCurrent == NULL)
{
return paryChunks->Size();
}
}
// for selection we want to start highlight invalidation at beginning of the run
// to avoid vertical line turds with RTL text.
if(dwFlags & RFE_SELECTION)
{
lscpRunStart = porCurrent->_lscpBase;
}
Assert(paryChunks!=NULL && paryChunks->Size()==0);
Assert(cpStart <= cpEnd);
while(lscpRunStart < lscpEnd)
{
// if we reached the end of the list we need to bail out.
if(porCurrent == NULL)
{
return paryChunks->Size();
}
switch(porCurrent->_fType)
{
case ONERUN_NORMAL:
{
aryLsqsubinfo.Grow(4); // Guaranteed to succeed since we're working from the stack.
hr = QueryLineCpPpoint(lscpRunStart, FALSE, &aryLsqsubinfo, &lsTextCell, FALSE);
// 1. If we failed, return what we have so far
// 2. If LS returns less than the cell we have asked for we have a problem with LS.
// To solve this problem (especially for Vietnamese) we will go to the next
// COneRun in the list and try again.
if(hr || lsTextCell.cpStartCell<lscpRunStart)
{
lscpRunStart = porCurrent->_lscpBase + porCurrent->_lscch;
break;
}
long nDepth = aryLsqsubinfo.Size() - 1;
Assert(nDepth >= 0);
const LSQSUBINFO& qsubinfo = aryLsqsubinfo[nDepth];
long lAscent = qsubinfo.heightsPresRun.dvAscent;
// now set the end position based on which way the subline flows
fSublineReverseFlow = !!((qsubinfo.lstflowSubline^tflow) & fUDirection);
xStart = lsTextCell.pointUvStartCell.u + (!_li._fRTL ? 0 : -1);
// If we're querying for a character which cannot be measured (e.g. a
// section break char), then LS returns the last character it could
// measure. Therefore, if we are okay, use dupRun for the distance.
// Otherwise, query the last character of porCurrent. This prevents us
// having to loop when LS creates dobj's that are cch of five (5).
if((LSCP)(porCurrent->_lscpBase+porCurrent->_lscch) <= (LSCP)(qsubinfo.cpFirstRun+qsubinfo.dcpRun))
{
xEnd = xStart +
(!fSublineReverseFlow?qsubinfo.dupRun:-qsubinfo.dupRun);
}
else
{
aryLsqsubinfo.Grow(4); // Guaranteed to succeed since we're working from the stack.
long lscpLast = min(lscpRunStart+porCurrent->_lscch, _lscpLim);
hr = QueryLineCpPpoint(lscpLast, FALSE, &aryLsqsubinfo, &lsTextCell, FALSE);
// BUGBUG: (paulnel) LineServices ignores hyphens as a part of the line...even though they say it is in the subline
// if we querried on a valid lscp, yet LS give us back a lesser value, add the width of the last cell given.
xEnd = lsTextCell.pointUvStartCell.u + (!_li._fRTL?0:-1) +
(lsTextCell.cpStartCell>=lscpLast?0:lsTextCell.dupCell);
}
// get the top and bottom for the rect
if(porCurrent->_fCharsForNestedLayout)
{
// NOTICE: Absolutely positioned, aligned, and Bold elements are ONERUN_ANTISYNTH types. See note below
RECT rc;
long cyHeight;
const CCharFormat* pCF = porCurrent->GetCF();
CTreeNode* pNodeCur = porCurrent->_ptp->Branch();
CLayout* pLayout = pNodeCur->GetUpdatedLayout();
pLayout->GetRect(&rc);
cyHeight = rc.bottom - rc.top;
// XProposed and YProposed have been set to the amount of margin
// the layout has.
xStart = pLayout->GetXProposed();
xEnd = xStart + (rc.right - rc.left);
yTop = yPos + _pMeasurer->_li._yBeforeSpace + pLayout->GetYProposed();
yBottom = yTop + cyHeight;
// take care of any nested relatively positioned elements
if(pCF->_fRelative && (dwFlags&RFE_NESTED_REL_RECTS))
{
long xRelLeft=0, yRelTop=0;
// get the layout's relative positioning to its parent. The parent's relative
// positioning would be adjusted in RegionFromElement
CTreeNode* pNodeParent = pNodeCur->Parent();
if(pNodeParent)
{
pNodeCur->GetRelTopLeft(pNodeParent->Element(), _pci, &xRelLeft, &yRelTop);
}
xStart += xRelLeft;
xEnd += xRelLeft;
yTop += yRelTop;
yBottom += yRelTop;
}
}
else
{
const CCharFormat* pCF = porCurrent->GetCF();
// The current character does not have height. Throw it out.
if(lAscent == 0)
{
break;
}
yBottom = yPos + _pMeasurer->_li._yHeight
- _pMeasurer->_li._yDescent + _pMeasurer->_li._yTxtDescent;
yTop = yBottom - _pMeasurer->_li._yTxtDescent - lAscent;
// If we are ruby text, adjust the height to the correct position above the line.
if(pCF->_fIsRubyText)
{
RubyInfo* pRubyInfo = GetRubyInfoFromCp(porCurrent->_lscpBase);
if(pRubyInfo)
{
yBottom = yPos + _pMeasurer->_li._yHeight - _pMeasurer->_li._yDescent
+ pRubyInfo->yDescentRubyBase - pRubyInfo->yHeightRubyBase;
yTop = yBottom - pRubyInfo->yDescentRubyText - lAscent;
}
}
}
rcChunk.left = xShift + xStart;
rcChunk.top = yTop;
rcChunk.bottom = yBottom;
rcChunk.right = xShift + xEnd;
// do some reverse flow cleanup before inserting rect into the array
if(rcChunk.left > rcChunk.right)
{
long temp = rcChunk.left;
rcChunk.left = rcChunk.right;
rcChunk.right = temp;
}
// In the event we have <A href="x"><B>text</B></A> we get two runs of
// the same rect. One for the Anchor and one for the bold. These two
// rects will xor themselves when drawing the wiggly and look like they
// did not select. This patch resolves this issue for the time being.
if(!(rcChunk.left==rcLast.left &&
rcChunk.right==rcLast.right &&
rcChunk.top==rcLast.top &&
rcChunk.bottom==rcLast.bottom))
{
paryChunks->AppendIndirect(&rcChunk);
}
rcLast = rcChunk;
lscpRunStart = porCurrent->_lscpBase + porCurrent->_lscch;
}
break;
case ONERUN_SYNTHETIC:
// We want to set the lscpRunStart to move to the next start position
// when dealing with synthetics (reverse objects, etc.)
lscpRunStart = porCurrent->_lscpBase + porCurrent->_lscch;
break;
case ONERUN_ANTISYNTH:
// NOTICE:
// this case covers absolutely positioned elements and aligned elements
// However, per BrendanD and SujalP, this is not the correct place
// to implement focus rects for these elements. Some
// work needs to be done to the CAdorner to properly
// handle absolutely positioned elements. RegionFromElement should handle
// frames for aligned objects.
break;
default:
Assert("Missing COneRun type");
break;
}
porCurrent = porCurrent->_pNext;
}
return paryChunks->Size();
}
//-----------------------------------------------------------------------------
//
// Member: CLineServices::RecalcLineHeight()
//
// Synopsis: Reset the height of the the line we are measuring if the new
// run of text is taller than the current maximum in the line.
//
//-----------------------------------------------------------------------------
void CLineServices::RecalcLineHeight(CCcs* pccs, CLine* pli)
{
AssertSz(pli, "we better have a line!");
AssertSz(pccs, "we better have a some metric's here");
if(pccs)
{
SHORT yAscent;
SHORT yDescent;
pccs->GetBaseCcs()->GetAscentDescent(&yAscent, &yDescent);
if(yAscent < pli->_yHeight-pli->_yDescent)
{
yAscent = pli->_yHeight - pli->_yDescent;
}
if(yDescent > pli->_yDescent)
{
pli->_yDescent = yDescent;
}
pli->_yHeight = yAscent + pli->_yDescent;
Assert(pli->_yHeight >= 0);
}
}
//-----------------------------------------------------------------------------
//
// Member: TestFortransitionToOrFromRelativeChunk
//
// Synopsis: Test if we are transitioning from a relative chunk to normal
// chunk or viceversa
//
//-----------------------------------------------------------------------------
void CLineServices::TestForTransitionToOrFromRelativeChunk(
CLSMeasurer& lsme,
BOOL fRelative,
CElement* pElementLayout)
{
CTreeNode* pNodeRelative = NULL;
CElement* pElementFL = _pFlowLayout->ElementOwner();
// if the current line is relative and the chunk is not
// relative or if the current line is not relative and the
// the current chunk is relative then break out.
if(fRelative)
{
pNodeRelative = lsme.CurrBranch()->GetCurrentRelativeNode(pElementFL);
}
if(DifferentScope(_pElementLastRelative, pNodeRelative))
{
UpdateLastChunkInfo(lsme, pNodeRelative->SafeElement(), pElementLayout);
}
}
//-----------------------------------------------------------------------------
//
// Member: UpdateLastChunkInfo
//
// Synopsis: We have just transitioned from a relative chunk to normal chunk
// or viceversa, or inbetween relative chunks, so update the last
// chunk information.
//
//-----------------------------------------------------------------------------
void CLineServices::UpdateLastChunkInfo(CLSMeasurer& lsme, CElement* pElementRelative, CElement* pElementLayout)
{
LONG xPosCurrChunk;
if(long(lsme.GetCp()) > _cpLastChunk)
{
xPosCurrChunk = AddNewChunk(lsme.GetCp());
}
else
{
xPosCurrChunk = _xPosLastChunk;
}
_cpLastChunk = lsme.GetCp();
_xPosLastChunk = xPosCurrChunk;
_pElementLastRelative = pElementRelative;
_fLastChunkSingleSite = pElementLayout && pElementLayout->IsOwnLineElement(_pFlowLayout);
_fLastChunkHasBulletOrNum = pElementRelative && pElementRelative->IsTagAndBlock(ETAG_LI);
}
//-----------------------------------------------------------------------------
//
// Member: AddNewChunk
//
// Synopsis: Adds a new chunk of either relative or non-relative text to
// the line.
//
//-----------------------------------------------------------------------------
LONG CLineServices::AddNewChunk(LONG cp)
{
BOOL fRTLFlow = FALSE;
BOOL fRTLDisplay = _pFlowLayout->GetDisplay()->IsRTL();
CLSLineChunk* plcNew = new CLSLineChunk();
LONG xPosCurrChunk = CalculateXPositionOfCp(cp, FALSE, &fRTLFlow);
// BUGBUG (PaulNel) This is only a bandaid. Some serious consideration needs to be
// given to handling relative text areas that have flows in different directions.
// It is not too difficult to come up with a case where chunks would be discontiguous.
// How should that be handled? The coding to take care of this situation will be
// significantly intrusive, but should be taken care of, nonetheless. Perhaps IE6
// timeframe will be best to address this issue.
if(_li._fRTL != (unsigned)fRTLFlow)
{
AdjustXPosOfCp(fRTLDisplay, _li._fRTL, fRTLFlow, &xPosCurrChunk, _li._xWidth);
if(_li._fRTL)
{
xPosCurrChunk--;
}
// In a RTL display, 0 is on the right. Here we don't want to put a negative
// value into the chunk's width, so change the sign.
if(fRTLDisplay)
{
xPosCurrChunk = -xPosCurrChunk;
}
}
if(!plcNew)
{
goto Cleanup;
}
plcNew->_cch = cp - _cpLastChunk;
plcNew->_xWidth = xPosCurrChunk - _xPosLastChunk;
plcNew->_fRelative = _pElementLastRelative != NULL;
plcNew->_fSingleSite = _fLastChunkSingleSite;
plcNew->_fHasBulletOrNum = _fLastChunkHasBulletOrNum;
// append this chunk to the line
if(_plcLastChunk)
{
Assert(!_plcLastChunk->_plcNext);
_plcLastChunk->_plcNext = plcNew;
_plcLastChunk = plcNew;
}
else
{
_plcLastChunk = _plcFirstChunk = plcNew;
}
Cleanup:
return xPosCurrChunk;
}
//-----------------------------------------------------------------------------
//
// Member: WidthOfChunksSoFarCore
//
// Synopsis: This function finds the width of all the chunks collected so far.
// This is needed because we need to position sites in a line relative
// to the BOL. So if a line is going to be chunked up (because of
// relative stuff before it), then we need to subtract their total width.
//
//-----------------------------------------------------------------------------
LONG CLineServices::WidthOfChunksSoFarCore()
{
CLSLineChunk* plc = _plcFirstChunk;
LONG xWidth = 0;
Assert(plc);
while(plc)
{
xWidth += plc->_xWidth;
plc = plc->_plcNext;
}
return xWidth;
}
//-----------------------------------------------------------------------------
//
// Member: AdjustXPosOfCp()
//
// Synopsis: used to adjust xPosofCp when flow is opposite direction
//
//-----------------------------------------------------------------------------
void CLineServices::AdjustXPosOfCp(BOOL fRTLDisplay, BOOL fRTLLine, BOOL fRTLFlow, long* pxPosOfCp, long xLayoutWidth)
{
if(fRTLDisplay != fRTLLine)
{
*pxPosOfCp = _li._xWidth - *pxPosOfCp;
}
if(fRTLDisplay != fRTLFlow)
{
*pxPosOfCp -= xLayoutWidth - 1;
}
}
//-----------------------------------------------------------------------------
//
// Member: GetKashidaWidth()
//
// Synopsis: gets the width of the kashida character (U+0640) for Arabic
// justification
//
//-----------------------------------------------------------------------------
LSERR CLineServices::GetKashidaWidth(PLSRUN plsrun, int* piKashidaWidth)
{
LSERR lserr = lserrNone;
HRESULT hr = S_OK;
HDC hdc = _pci->_hdc;
HFONT hfontOld = NULL;
HDC hdcFontProp = NULL;
CCcs* pccs = NULL;
CBaseCcs* pBaseCcs = NULL;
SCRIPT_CACHE* psc = NULL;
SCRIPT_FONTPROPERTIES sfp;
sfp.cBytes = sizeof(SCRIPT_FONTPROPERTIES);
pccs = GetCcs(plsrun, _pci->_hdc, _pci);
if(pccs == NULL)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
pBaseCcs = pccs->GetBaseCcs();
psc = pBaseCcs->GetUniscribeCache();
Assert(psc != NULL);
hr = ScriptGetFontProperties(hdcFontProp, psc, &sfp);
AssertSz(hr!=E_INVALIDARG, "You might need to update USP10.DLL");
// Handle failure
if(hr == E_PENDING)
{
Assert(hdcFontProp == NULL);
// Select the current font into the hdc and set hdcFontProp to hdc.
hfontOld = SelectFontEx(hdc, pBaseCcs->_hfont);
hdcFontProp = hdc;
hr = ScriptGetFontProperties(hdcFontProp, psc, &sfp);
}
Assert(hr==S_OK || hr==E_OUTOFMEMORY);
lserr = LSERRFromHR(hr);
if(lserr == lserrNone)
{
*piKashidaWidth = max(sfp.iKashidaWidth, 1);
}
Cleanup:
// Restore the font if we selected it
if(hfontOld != NULL)
{
SelectFontEx(hdc, hfontOld);
}
return lserr;
}
// The following tables depend on the fact that there is no more
// than a single alternate for each MWCLS and that at most one
// condition needs to be taken into account in resolving each MWCLS
// NB (cthrash) This is a packed table. The first three elements (brkcls,
// brkclsAlt and brkopt) are indexed by CHAR_CLASS. The fourth column we
// access (brkclsLow) we access by char value. The fourth column is for a
// speed optimization.
#if (defined(_MSC_VER) && (_MSC_VER>=1200))
#define BRKINFO(a,b,c,d) { CLineServices::a, CLineServices::b, CLineServices::c, CLineServices::d }
#else
#define BRKINFO(a,b,c,d) { DWORD(CLineServices::a), DWORD(CLineServices::b), DWORD(CLineServices::c), DWORD(CLineServices::d) }
#endif
const CLineServices::PACKEDBRKINFO CLineServices::s_rgBrkInfo[CHAR_CLASS_MAX] =
{
// brkcls brkclsAlt brkopt brkclsLow CC (QPID)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 0 WOB_(1)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 1 NOPP(2)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 2 NOPA(2)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 3 NOPW(2)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 4 HOP_(3)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 5 WOP_(4)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsAlpha ), // 6 WOP5(5)
BRKINFO( brkclsQuote, brkclsNil, fBrkNone, brkclsAlpha ), // 7 NOQW(6)
BRKINFO( brkclsQuote, brkclsOpen, fCscWide, brkclsAlpha ), // 8 AOQW(7)
BRKINFO( brkclsOpen, brkclsNil, fBrkNone, brkclsSpaceN ), // 9 WOQ_(8)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsSpaceN ), // 10 WCB_(9)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 11 NCPP(10)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsSpaceN ), // 12 NCPA(10)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsSpaceN ), // 13 NCPW(10)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 14 HCP_(11)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 15 WCP_(12)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 16 WCP5(13)
BRKINFO( brkclsQuote, brkclsNil, fBrkNone, brkclsAlpha ), // 17 NCQW(14)
BRKINFO( brkclsQuote, brkclsClose, fCscWide, brkclsAlpha ), // 18 ACQW(15)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 19 WCQ_(16)
BRKINFO( brkclsQuote, brkclsClose, fCscWide, brkclsAlpha ), // 20 ARQW(17)
BRKINFO( brkclsNumSeparator,brkclsNil, fBrkNone, brkclsAlpha ), // 21 NCSA(18)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 22 HCO_(19)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 23 WC__(20)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 24 WCS_(20)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 25 WC5_(21)
BRKINFO( brkclsClose, brkclsNil, fBrkNone, brkclsAlpha ), // 26 WC5S(21)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 27 NKS_(22)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 28 WKSM(23)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 29 WIM_(24)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 30 NSSW(25)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 31 WSS_(26)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAsciiSpace ), // 32 WHIM(27)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsExclaInterr ), // 33 WKIM(28)
BRKINFO( brkclsIdeographic, brkclsNoStartIdeo,fBrkStrict,brkclsQuote ), // 34 NKSL(29)
BRKINFO( brkclsIdeographic, brkclsNoStartIdeo,fBrkStrict,brkclsAlpha ), // 35 WKS_(30)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsPrefix ), // 36 WKSC(30)
BRKINFO( brkclsIdeographic, brkclsNoStartIdeo,fBrkStrict,brkclsPostfix ), // 37 WHS_(31)
BRKINFO( brkclsExclaInterr, brkclsNil, fBrkNone, brkclsAlpha ), // 38 NQFP(32)
BRKINFO( brkclsExclaInterr, brkclsNil, fBrkNone, brkclsQuote ), // 39 NQFA(32)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsOpen ), // 40 WQE_(33)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsClose ), // 41 WQE5(34)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 42 NKCC(35)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsAlpha ), // 43 WKC_(36)
BRKINFO( brkclsNumSeparator,brkclsNil, fBrkNone, brkclsNumSeparator ), // 44 NOCP(37)
BRKINFO( brkclsNumSeparator,brkclsNil, fBrkNone, brkclsSpaceN ), // 45 NOCA(37)
BRKINFO( brkclsNumSeparator,brkclsNil, fBrkNone, brkclsNumSeparator ), // 46 NOCW(37)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsSlash ), // 47 WOC_(38)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 48 WOCS(38)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 49 WOC5(39)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 50 WOC6(39)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 51 AHPW(40)
BRKINFO( brkclsNumSeparator,brkclsNil, fBrkNone, brkclsNumeral ), // 52 NPEP(41)
BRKINFO( brkclsNumSeparator,brkclsNil, fBrkNone, brkclsNumeral ), // 53 NPAR(41)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 54 HPE_(42)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 55 WPE_(43)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 56 WPES(43)
BRKINFO( brkclsNoStartIdeo, brkclsNil, fBrkNone, brkclsNumeral ), // 57 WPE5(44)
BRKINFO( brkclsInseparable, brkclsNil, fBrkNone, brkclsNumSeparator ), // 58 NISW(45)
BRKINFO( brkclsInseparable, brkclsNil, fBrkNone, brkclsNumSeparator ), // 59 AISW(46)
BRKINFO( brkclsGlueA, brkclsNil, fBrkNone, brkclsAlpha ), // 60 NQCS(47)
BRKINFO( brkclsGlueA, brkclsNil, fBrkNone, brkclsAlpha ), // 61 NQCW(47)
BRKINFO( brkclsGlueA, brkclsNil, fBrkNone, brkclsAlpha ), // 62 NQCC(47)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsExclaInterr ), // 63 NPTA(48)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsAlpha ), // 64 NPNA(48)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsAlpha ), // 65 NPEW(48)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsAlpha ), // 66 NPEH(48)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsAlpha ), // 67 APNW(49)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsAlpha ), // 68 HPEW(50)
BRKINFO( brkclsPrefix, brkclsNil, fBrkNone, brkclsAlpha ), // 69 WPR_(51)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 70 NQEP(52)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 71 NQEW(52)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 72 NQNW(52)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 73 AQEW(53)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 74 AQNW(53)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 75 AQLW(53)
BRKINFO( brkclsPostfix, brkclsNil, fBrkNone, brkclsAlpha ), // 76 WQO_(54)
BRKINFO( brkclsAsciiSpace, brkclsNil, fBrkNone, brkclsAlpha ), // 77 NSBL(55)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 78 WSP_(56)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 79 WHI_(57)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 80 NKA_(58)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 81 WKA_(59)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 82 ASNW(60)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 83 ASEW(60)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 84 ASRN(60)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 85 ASEN(60)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 86 ALA_(61)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 87 AGR_(62)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 88 ACY_(63)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 89 WID_(64)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 90 WPUA(65)
BRKINFO( brkclsHangul, brkclsNil, fBrkNone, brkclsOpen ), // 91 NHG_(66)
BRKINFO( brkclsHangul, brkclsNil, fBrkNone, brkclsPrefix ), // 92 WHG_(67)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsClose ), // 93 WCI_(68)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 94 NOI_(69)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 95 WOI_(70)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 96 WOIC(70)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 97 WOIL(70)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 98 WOIS(70)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 99 WOIT(70)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 100 NSEN(71)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 101 NSET(71)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 102 NSNW(71)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 103 ASAN(72)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 104 ASAE(72)
BRKINFO( brkclsNumeral, brkclsNil, fBrkNone, brkclsAlpha ), // 105 NDEA(73)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 106 WD__(74)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 107 NLLA(75)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsAlpha ), // 108 WLA_(76)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 109 NWBL(77)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 110 NWZW(77)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 111 NPLW(78)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 112 NPZW(78)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 113 NPF_(78)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 114 NPFL(78)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 115 NPNW(78)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 116 APLW(79)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 117 APCO(79)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 118 ASYW(80)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 119 NHYP(81)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 120 NHYW(81)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 121 AHYW(82)
BRKINFO( brkclsQuote, brkclsNil, fBrkNone, brkclsAlpha ), // 122 NAPA(83)
BRKINFO( brkclsQuote, brkclsNil, fBrkNone, brkclsOpen ), // 123 NQMP(84)
BRKINFO( brkclsSlash, brkclsNil, fBrkNone, brkclsAlpha ), // 124 NSLS(85)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsClose ), // 125 NSF_(86)
BRKINFO( brkclsSpaceN, brkclsNil, fBrkNone, brkclsAlpha ), // 126 NSBS(86)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 127 NLA_(87)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 128 NLQ_(88)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 129 NLQN(88)
BRKINFO( brkclsAlpha, brkclsIdeographic,fCscWide, brkclsAlpha ), // 130 ALQ_(89)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 131 NGR_(90)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 132 NGRN(90)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 133 NGQ_(91)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 134 NGQN(91)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 135 NCY_(92)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 136 NCYP(93)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 137 NCYC(93)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 138 NAR_(94)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 139 NAQN(95)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 140 NHB_(96)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 141 NHBC(96)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 142 NHBW(96)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 143 NHBR(96)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 144 NASR(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 145 NAAR(97)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 146 NAAC(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 147 NAAD(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 148 NAED(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 149 NANW(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 150 NAEW(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 151 NAAS(97)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 152 NHI_(98)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 153 NHIN(98)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 154 NHIC(98)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 155 NHID(98)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 156 NBE_(99)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsAlpha ), // 157 NBEC(99)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 158 NBED(99)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsAlpha ), // 159 NGM_(100)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsGlueA ), // 160 NGMC(100)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 161 NGMD(100)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 162 NGJ_(101)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 163 NGJC(101)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 164 NGJD(101)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 165 NOR_(102)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 166 NORC(102)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 167 NORD(102)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 168 NTA_(103)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 169 NTAC(103)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 170 NTAD(103)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 171 NTE_(104)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 172 NTEC(104)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 173 NTED(104)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 174 NKD_(105)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 175 NKDC(105)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 176 NKDD(105)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 177 NMA_(106)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 178 NMAC(106)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 179 NMAD(106)
BRKINFO( brkclsThaiFirst, brkclsNil, fBrkNone, brkclsNil ), // 180 NTH_(107)
BRKINFO( brkclsThaiFirst, brkclsNil, fBrkNone, brkclsNil ), // 181 NTHC(107)
BRKINFO( brkclsThaiFirst, brkclsNil, fBrkNone, brkclsNil ), // 182 NTHD(107)
BRKINFO( brkclsThaiFirst, brkclsNil, fBrkNone, brkclsNil ), // 183 NTHT(107)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 184 NLO_(108)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 185 NLOC(108)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 186 NLOD(108)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 187 NTI_(109)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 188 NTIC(109)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 189 NTID(109)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 190 NGE_(110)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 191 NGEQ(111)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 192 NBO_(112)
BRKINFO( brkclsGlueA, brkclsNil, fBrkNone, brkclsNil ), // 193 NBSP(113)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 194 NOF_(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 195 NOBS(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 196 NOEA(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 197 NONA(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 198 NONP(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 199 NOEP(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 200 NONW(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 201 NOEW(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 202 NOLW(114)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 203 NOCO(114)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 204 NOSP(114)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 205 NOEN(114)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 206 NET_(115)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 207 NCA_(116)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 208 NCH_(117)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsNil ), // 209 WYI_(118)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 210 NBR_(119)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 211 NRU_(120)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 212 NOG_(121)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 213 NSI_(122)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 214 NSIC(122)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 215 NTN_(123)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 216 NTNC(123)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 217 NKH_(124)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 218 NKHC(124)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 219 NKHD(124)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 220 NBU_(125)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 221 NBUC(125)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 222 NBUD(125)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 223 NSY_(126)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 224 NSYC(126)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 225 NSYW(126)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 226 NMO_(127)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 227 NMOC(127)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 228 NMOD(127)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ), // 229 NHS_(128)
BRKINFO( brkclsIdeographic, brkclsNil, fBrkNone, brkclsNil ), // 230 WHT_(129)
BRKINFO( brkclsCombining, brkclsNil, fBrkNone, brkclsNil ), // 231 LS__(130)
BRKINFO( brkclsAlpha, brkclsNil, fBrkNone, brkclsNil ) // 232 XNW_(131)
};
// Break pair information for normal or strict Kinsoku
const BYTE s_rgbrkpairsKinsoku[CLineServices::brkclsLim][CLineServices::brkclsLim] =
{
//1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21 = brclsAfter
// brkclsBefore:
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, // 1 brkclsOpen
0, 1, 1, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 2 brkclsClose
0, 1, 2, 1, 2, 0, 2, 4, 0, 0, 4, 2, 1, 2, 1, 4, 0, 0, 0, 2, 1, // 3 brkclsNoStartIdeo
0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 4 brkclsExclamInt
0, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 5 brkclsInseparable
2, 1, 2, 1, 0, 2, 0, 2, 2, 0, 3, 2, 1, 2, 1, 2, 2, 0, 0, 2, 1, // 6 brkclsPrefix
0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 7 brkclsPostfix
0, 1, 2, 1, 2, 0, 2, 4, 0, 0, 4, 2, 1, 2, 1, 4, 0, 0, 0, 2, 1, // 8 brkclsIdeoW
0, 1, 2, 1, 2, 0, 2, 0, 3, 0, 3, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 9 brkclsNumeral
0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 10 brkclsSpaceN
0, 1, 2, 1, 2, 2, 2, 4, 3, 0, 3, 2, 1, 2, 1, 4, 0, 0, 0, 2, 1, // 11 brkclsAlpha
2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, // 12 brkclsGlueA
0, 1, 2, 1, 2, 0, 2, 0, 2, 0, 3, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 13 brkclsSlash
1, 1, 2, 1, 2, 2, 3, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, // 14 brkclsQuotation
0, 1, 2, 1, 0, 2, 2, 0, 2, 0, 3, 2, 1, 2, 2, 0, 0, 0, 0, 2, 1, // 15 brkclsNumSeparator
0, 1, 2, 1, 2, 0, 2, 4, 0, 0, 4, 2, 1, 2, 1, 4, 0, 0, 0, 2, 1, // 16 brkclsHangul
0, 1, 2, 1, 2, 0, 2, 0, 0, 0, 0, 2, 1, 2, 1, 4, 2, 2, 2, 2, 1, // 17 brkclsThaiFirst
0, 1, 2, 1, 2, 0, 2, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 2, 2, 2, 1, // 18 brkclsThaiLast
0, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 2, 2, 2, 2, 1, // 19 brkclsThaiAlpha
0, 1, 2, 1, 2, 2, 2, 4, 3, 0, 3, 2, 1, 2, 1, 4, 0, 0, 0, 1, 1, // 20 brkclsCombining
0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 2, 1, // 21 brkclsAsiiSpace
};
BOOL CanQuickBrkclsLookup(WCHAR ch)
{
return (ch < BRKCLS_QUICKLOOKUPCUTOFF);
}
CLineServices::BRKCLS QuickBrkclsFromCh(WCHAR ch)
{
Assert(ch); // This won't work for ch==0.
Assert(CanQuickBrkclsLookup(ch));
return (CLineServices::BRKCLS)CLineServices::s_rgBrkInfo[ch].brkclsLow;
}
CLineServices::BRKCLS BrkclsFromCh(WCHAR ch, DWORD brkopt)
{
Assert(!CanQuickBrkclsLookup(ch)); // Should take another code path.
CHAR_CLASS cc = CharClassFromCh(ch);
Assert(cc < CHAR_CLASS_MAX);
const CLineServices::PACKEDBRKINFO* p = CLineServices::s_rgBrkInfo + cc;
return CLineServices::BRKCLS((p->brkopt&brkopt) ? p->brkclsAlt : p->brkcls);
}
// Standard Breaking Behaviors retaining normal line break for non-FE text
static const LSBRK s_rglsbrkNormal[] =
{
/* 0*/ 1,1, // always allowed
/* 1*/ 0,0, // always prohibited
/* 2*/ 0,1, // only allowed across space
/* 3*/ 0,1, // only allowed across space (word wrap case)
/* 4*/ 1,1, // always allowed (no CJK/Hangul word wrap case)
};
// Breaking Behaviors allowing FE style breaking in the middle of words (any language)
static const LSBRK s_rglsbrkBreakAll[] =
{
/* 0*/ 1,1, // always allowed
/* 1*/ 0,0, // always prohibited
/* 2*/ 0,1, // only allowed across space
/* 3*/ 1,1, // always allowed (no word wrap case)
/* 4*/ 1,1, // always allowed (no CJK/Hangul word wrap case)
};
// Breaking Behaviors allowing Hangul style breaking
static const LSBRK s_rglsbrkKeepAll[] =
{
/* 0*/ 1,1, // always allowed
/* 1*/ 0,0, // always prohibited
/* 2*/ 0,1, // only allowed across space
/* 3*/ 0,1, // only allowed across space (word wrap case)
/* 4*/ 0,1, // only allowed across space (CJK/Hangul word wrap case)
};
const struct lsbrk* alsbrkTables[4] =
{
s_rglsbrkNormal,
s_rglsbrkNormal,
s_rglsbrkBreakAll,
s_rglsbrkKeepAll
};
LSERR CLineServices::CheckSetBreaking()
{
const struct lsbrk* lsbrkCurr = alsbrkTables[_pPFFirst->_fWordBreak];
HRESULT hr;
// Are we in need of calling LsSetBreaking?
if(lsbrkCurr == _lsbrkCurr)
{
hr = S_OK;
}
else
{
hr = HRFromLSERR(LsSetBreaking(_plsc,
sizeof(s_rglsbrkNormal)/sizeof(LSBRK),
lsbrkCurr,
brkclsLim,
(const BYTE*)s_rgbrkpairsKinsoku));
_lsbrkCurr = (struct lsbrk*)lsbrkCurr;
}
RRETURN(hr);
}
LSERR WINAPI CLineServices::GetBreakingClasses(
PLSRUN plsrun, // IN
LSCP lscp, // IN
WCHAR wch, // IN
BRKCLS* pbrkclsFirst, // OUT
BRKCLS* pbrkclsSecond) // OUT
{
LSTRACE(GetBreakingClasses);
LSERR lserr = lserrNone;
if(CanQuickBrkclsLookup(wch))
{
// prefer ASCII (true block) for performance
Assert(IsNotThaiTypeChar(wch));
*pbrkclsFirst = *pbrkclsSecond = QuickBrkclsFromCh(wch);
}
else if(IsNotThaiTypeChar(wch))
{
*pbrkclsFirst = *pbrkclsSecond = BrkclsFromCh(wch, plsrun->_brkopt);
}
else
{
CComplexRun* pcr = plsrun->GetComplexRun();
if(pcr != NULL)
{
LONG cp = CPFromLSCP(lscp);
pcr->ThaiTypeBrkcls(_pMarkup, cp, (::BRKCLS*)pbrkclsFirst, (::BRKCLS*)pbrkclsSecond);
}
else
{
// BUGFIX 14717 (a-pauln)
// A complex run has not been created so pass this through the normal
// Kinsoku classes for clean failure.
*pbrkclsFirst = *pbrkclsSecond = BrkclsFromCh(wch, plsrun->_brkopt);
}
}
return lserr;
}
const BRKCOND CLineServices::s_rgbrkcondBeforeChar[brkclsLim] =
{
brkcondPlease, // brkclsOpen
brkcondNever, // brkclsClose
brkcondNever, // brkclsNoStartIdeo
brkcondNever, // brkclsExclaInterr
brkcondCan, // brkclsInseparable
brkcondCan, // brkclsPrefix
brkcondCan, // brkclsPostfix
brkcondPlease, // brkclsIdeographic
brkcondCan, // brkclsNumeral
brkcondCan, // brkclsSpaceN
brkcondCan, // brkclsAlpha
brkcondCan, // brkclsGlueA
brkcondPlease, // brkclsSlash
brkcondCan, // brkclsQuote
brkcondCan, // brkclsNumSeparator
brkcondCan, // brkclsHangul
brkcondCan, // brkclsThaiFirst
brkcondNever, // brkclsThaiLast
brkcondNever, // brkclsThaiMiddle
brkcondCan, // brkclsCombining
brkcondCan, // brkclsAsciiSpace
};
LSERR WINAPI CLineServices::CanBreakBeforeChar(
BRKCLS brkcls, // IN
BRKCOND* pbrktxtBefore) // OUT
{
LSTRACE(CanBreakBeforeChar);
Assert(brkcls>=0 && brkcls<brkclsLim);
*pbrktxtBefore = s_rgbrkcondBeforeChar[brkcls];
return lserrNone;
}
const BRKCOND CLineServices::s_rgbrkcondAfterChar[brkclsLim] =
{
brkcondPlease, // brkclsOpen
brkcondCan, // brkclsClose
brkcondCan, // brkclsNoStartIdeo
brkcondCan, // brkclsExclaInterr
brkcondCan, // brkclsInseparable
brkcondCan, // brkclsPrefix
brkcondCan, // brkclsPostfix
brkcondPlease, // brkclsIdeographic
brkcondCan, // brkclsNumeral
brkcondCan, // brkclsSpaceN
brkcondCan, // brkclsAlpha
brkcondNever, // brkclsGlueA
brkcondPlease, // brkclsSlash
brkcondCan, // brkclsQuote
brkcondCan, // brkclsNumSeparator
brkcondCan, // brkclsHangul
brkcondNever, // brkclsThaiFirst
brkcondCan, // brkclsThaiLast
brkcondNever, // brkclsThaiAlpha
brkcondCan, // brkclsCombining
brkcondCan, // brkclsAsciiSpace
};
LSERR WINAPI CLineServices::CanBreakAfterChar(
BRKCLS brkcls, // IN
BRKCOND* pbrktxtAfter) // OUT
{
LSTRACE(CanBreakAfterChar);
Assert(brkcls>=0 && brkcls<brkclsLim);
*pbrktxtAfter = s_rgbrkcondAfterChar[ brkcls ];
return lserrNone;
}
LSERR WINAPI CLineServices::DrawUnderline(
PLSRUN plsrun, // IN
UINT kUlBase, // IN
const POINT* pptStart, // IN
DWORD dupUl, // IN
DWORD dvpUl, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const RECT* prcClip) // IN
{
LSTRACE(DrawUnderline);
GetRenderer()->DrawUnderline(plsrun, kUlBase, pptStart, dupUl, dvpUl, kTFlow, kDisp, prcClip);
return lserrNone;
}
LSERR WINAPI CLineServices::DrawStrikethrough(
PLSRUN plsrun, // IN
UINT kStBase, // IN
const POINT* pptStart, // IN
DWORD dupSt, // IN
DWORD dvpSt, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const RECT* prcClip) // IN
{
LSTRACE(DrawStrikethrough);
LSNOTIMPL(DrawStrikethrough);
return lserrNone;
}
LSERR WINAPI CLineServices::DrawBorder(
PLSRUN plsrun, // IN
const POINT* pptStart, // IN
PCHEIGHTS pheightsLineFull, // IN
PCHEIGHTS pheightsLineWithoutAddedSpace, // IN
PCHEIGHTS pheightsSubline, // IN
PCHEIGHTS pheightRuns, // IN
long dupBorder, // IN
long dupRunsInclBorders, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const RECT* prcClip) // IN
{
LSTRACE(DrawBorder);
LSNOTIMPL(DrawBorder);
return lserrNone;
}
LSERR WINAPI CLineServices::DrawUnderlineAsText(
PLSRUN plsrun, // IN
const POINT* pptStart, // IN
long dupLine, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const RECT* prcClip) // IN
{
LSTRACE(DrawUnderlineAsText);
LSNOTIMPL(DrawUnderlineAsText);
return lserrNone;
}
LSERR WINAPI CLineServices::ShadeRectangle(
PLSRUN plsrun, // IN
const POINT* pptStart, // IN
PCHEIGHTS pheightsLineWithAddSpace, // IN
PCHEIGHTS pheightsLineWithoutAddedSpace, // IN
PCHEIGHTS pheightsSubline, // IN
PCHEIGHTS pheightsRunsExclTrail, // IN
PCHEIGHTS pheightsRunsInclTrail, // IN
long dupRunsExclTrail, // IN
long dupRunsInclTrail, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const RECT* prcClip) // IN
{
LSTRACE(ShadeRectangle);
LSNOTIMPL(ShadeRectangle);
return lserrNone;
}
LSERR WINAPI CLineServices::DrawTextRun(
PLSRUN plsrun, // IN
BOOL fStrikeout, // IN
BOOL fUnderline, // IN
const POINT* pptText, // IN
LPCWSTR plwchRun, // IN
const int* rgDupRun, // IN
DWORD cwchRun, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const POINT* pptRun, // IN
PCHEIGHTS heightPres, // IN
long dupRun, // IN
long dupLimUnderline, // IN
const RECT* pRectClip) // IN
{
LSTRACE(DrawTextRun);
TCHAR* pch = (TCHAR*)plwchRun;
if(plsrun->_fMakeItASpace)
{
Assert(cwchRun == 1);
pch = _T(" ");
}
GetRenderer()->TextOut(
plsrun, fStrikeout, fUnderline, pptText,
pch, rgDupRun, cwchRun, kTFlow,
kDisp, pptRun, heightPres, dupRun,
dupLimUnderline, pRectClip);
return lserrNone;
}
LSERR WINAPI CLineServices::DrawSplatLine(
enum lsksplat, // IN
LSCP cpSplat, // IN
const POINT* pptSplatLine, // IN
PCHEIGHTS pheightsLineFull, // IN
PCHEIGHTS pheightsLineWithoutAddedSpace, // IN
PCHEIGHTS pheightsSubline, // IN
long dup, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const RECT* prcClip) // IN
{
LSTRACE(DrawSplatLine);
// FUTURE (mikejoch) Need to adjust cpSplat if we ever implement this.
LSNOTIMPL(DrawSplatLine);
return lserrNone;
}
//+---------------------------------------------------------------------------
//
// Member: CLineServices::DrawGlyphs
//
// Synopsis: Draws the glyphs which are passed in
//
// Arguments: plsrun pointer to the run
// fStrikeout is this run struck out?
// fUnderline is this run underlined?
// pglyph array of glyph indices
// rgDu array of widths after justification
// rgDuBeforeJust array of widths before justification
// rgGoffset array of glyph offsets
// rgGprop array of glyph properties
// rgExpType array of glyph expansion types
// cglyph number of glyph indices
// kTFlow text direction and orientation
// kDisp display mode - opaque, transparent
// pptRun starting point of the run
// heights presentation height for this run
// dupRun presentation width of this run
// dupLimUnderline underline limit
// pRectClip clipping rectangle
//
// Returns: LSERR lserrNone if succesful
// lserrInvalidRun if failure
//
//----------------------------------------------------------------------------
LSERR WINAPI CLineServices::DrawGlyphs(
PLSRUN plsrun, // IN
BOOL fStrikeout, // IN
BOOL fUnderline, // IN
PCGINDEX pglyph, // IN
const int* rgDu, // IN
const int* rgDuBeforeJust, // IN
PGOFFSET rgGoffset, // IN
PGPROP rgGprop, // IN
PCEXPTYPE rgExpType, // IN
DWORD cglyph, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
const POINT* pptRun, // IN
PCHEIGHTS heightsPres, // IN
long dupRun, // IN
long dupLimUnderline, // IN
const RECT* pRectClip) // IN
{
LSTRACE(DrawGlyphs);
GetRenderer()->GlyphOut(
plsrun, fStrikeout, fUnderline, pglyph,
rgDu, rgDuBeforeJust, rgGoffset,
rgGprop, rgExpType, cglyph, kTFlow,
kDisp, pptRun, heightsPres,
dupRun, dupLimUnderline, pRectClip);
return lserrNone;
}
LSERR WINAPI CLineServices::DrawEffects(
PLSRUN plsrun, // IN
UINT EffectsFlags, // IN
const POINT* ppt, // IN
LPCWSTR lpwchRun, // IN
const int* rgDupRun, // IN
const int* rgDupLeftCut, // IN
DWORD cwchRun, // IN
LSTFLOW kTFlow, // IN
UINT kDisp, // IN
PCHEIGHTS heightPres, // IN
long dupRun, // IN
long dupLimUnderline, // IN
const RECT* pRectClip) // IN
{
LSTRACE(DrawEffects);
LSNOTIMPL(DrawEffects);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Ruby support
//
//-----------------------------------------------------------------------------
#define RUBY_OFFSET 2
LSERR WINAPI CLineServices::FetchRubyPosition(
LSCP lscp, // IN
LSTFLOW lstflow, // IN
DWORD cdwMainRuns, // IN
const PLSRUN* pplsrunMain, // IN
PCHEIGHTS pcheightsRefMain, // IN
PCHEIGHTS pcheightsPresMain, // IN
DWORD cdwRubyRuns, // IN
const PLSRUN* pplsrunRuby, // IN
PCHEIGHTS pcheightsRefRuby, // IN
PCHEIGHTS pcheightsPresRuby, // IN
PHEIGHTS pheightsRefRubyObj, // OUT
PHEIGHTS pheightsPresRubyObj, // OUT
long* pdvrOffsetMainBaseline, // OUT
long* pdvrOffsetRubyBaseline, // OUT
long* pdvpOffsetRubyBaseline, // OUT
enum rubycharjust* prubycharjust, // OUT
BOOL* pfSpecialLineStartEnd) // OUT
{
LSTRACE(FetchRubyPosition);
LONG yAscent;
RubyInfo rubyInfo;
long yRubyOffset = (cdwRubyRuns>0) ? RUBY_OFFSET : 0;
*pdvrOffsetMainBaseline = 0; // Don't want to offset the main text from the ruby object's baseline
if(cdwMainRuns)
{
HandleRubyAlignStyle((COneRun*)(*pplsrunMain), prubycharjust, pfSpecialLineStartEnd);
}
rubyInfo.cp = CPFromLSCP(lscp);
// Ruby offset is the sum of the ascent of the main text
// and the descent of the pronunciation text.
yAscent = max(_yMaxHeightForRubyBase, pcheightsRefMain->dvAscent);
*pdvpOffsetRubyBaseline =
*pdvrOffsetRubyBaseline =
yAscent + yRubyOffset + pcheightsRefRuby->dvDescent;
rubyInfo.yHeightRubyBase = yAscent + pcheightsRefMain->dvDescent + yRubyOffset;
rubyInfo.yDescentRubyBase = pcheightsRefMain->dvDescent;
rubyInfo.yDescentRubyText = pcheightsRefRuby->dvDescent;
pheightsRefRubyObj->dvAscent = yAscent + pcheightsRefRuby->dvAscent + pcheightsRefRuby->dvDescent + yRubyOffset;
pheightsRefRubyObj->dvDescent = pcheightsRefMain->dvDescent;
pheightsRefRubyObj->dvMultiLineHeight =
pheightsRefRubyObj->dvAscent + pheightsRefRubyObj->dvDescent;
memcpy(pheightsPresRubyObj, pheightsRefRubyObj, sizeof(*pheightsRefRubyObj));
// code in GetRubyInfoFromCp depends on the idea that this callback
// is called in order of increasing cps. This of course depends on Line Services.
// If this is not guaranteed to be true, then we can't just blindly append the
// entry here, we must insert it in sorted order or hold cp ranges in the RubyInfos
Assert(_aryRubyInfo.Size()==0 || _aryRubyInfo[_aryRubyInfo.Size()-1].cp<=rubyInfo.cp);
if(_aryRubyInfo.FindIndirect(&rubyInfo) == -1)
{
_aryRubyInfo.AppendIndirect(&rubyInfo);
}
return lserrNone;
}
// Ruby Align Style table
// =========================
// Holds the justification values to pass to line services for each ruby alignment type.
static const enum rubycharjust s_aRubyAlignStyleValues[] =
{
rcjCenter, // not set
rcjCenter, // auto
rcjLeft, // left
rcjCenter, // center
rcjRight, // right
rcj010, // distribute-letter
rcj121, // distribute-space
rcjCenter // line-edge
};
void WINAPI CLineServices::HandleRubyAlignStyle(
COneRun* porMain, // IN
enum rubycharjust* prubycharjust, // OUT
BOOL* pfSpecialLineStartEnd) // OUT
{
Assert(porMain);
CTreeNode* pNode = porMain->Branch(); // This will call_ptp->GetBranch()
CElement* pElement = pNode->SafeElement();
VARIANT varRubyAlign;
styleRubyAlign styAlign;
pElement->ComputeExtraFormat(DISPID_A_RUBYALIGN, TRUE, pNode, &varRubyAlign);
styAlign = (((CVariant*)&varRubyAlign)->IsEmpty())
? styleRubyAlignNotSet : (styleRubyAlign)V_I4(&varRubyAlign);
Assert(styAlign>=styleRubyAlignNotSet && styAlign<=styleRubyAlignLineEdge);
*prubycharjust = s_aRubyAlignStyleValues[styAlign];
*pfSpecialLineStartEnd = (styAlign == styleRubyAlignLineEdge);
if(styAlign==styleRubyAlignNotSet || styAlign==styleRubyAlignAuto)
{
// default behavior should be centered alignment for latin characters,
// distribute-space for ideographic characters
const SCRIPT_ID sid = porMain->_ptp->Sid();
if(sid>=sidFEFirst && sid<=sidFELast)
{
*prubycharjust = rcj121;
}
}
}
LSERR WINAPI CLineServices::FetchRubyWidthAdjust(
LSCP cp, // IN
PLSRUN plsrunForChar, // IN
WCHAR wch, // IN
MWCLS mwclsForChar, // IN
PLSRUN plsrunForRuby, // IN
rubycharloc rcl, // IN
long durMaxOverhang, // IN
long* pdurAdjustChar, // OUT
long* pdurAdjustRuby) // OUT
{
LSTRACE(FetchRubyWidthAdjust);
Assert(plsrunForRuby);
COneRun* porRuby = (COneRun*)plsrunForRuby;
CTreeNode* pNode = porRuby->Branch(); // This will call_ptp->GetBranch()
CElement* pElement = pNode->SafeElement();
styleRubyOverhang sty;
{
VARIANT varValue;
pElement->ComputeExtraFormat(
DISPID_A_RUBYOVERHANG,
TRUE,
pNode,
&varValue);
sty = (((CVariant*)&varValue)->IsEmpty())
? styleRubyOverhangNotSet : (styleRubyOverhang)V_I4(&varValue);
}
*pdurAdjustChar = 0;
*pdurAdjustRuby = (sty==styleRubyOverhangNone) ? 0 : -durMaxOverhang;
return lserrNone;
}
LSERR WINAPI CLineServices::RubyEnum(
PLSRUN plsrun, // IN
PCLSCHP plschp, // IN
LSCP cp, // IN
LSDCP dcp, // IN
LSTFLOW lstflow, // IN
BOOL fReverse, // IN
BOOL fGeometryNeeded, // IN
const POINT* pt, // IN
PCHEIGHTS pcheights, // IN
long dupRun, // IN
const POINT* ptMain, // IN
PCHEIGHTS pcheightsMain, // IN
long dupMain, // IN
const POINT* ptRuby, // IN
PCHEIGHTS pcheightsRuby, // IN
long dupRuby, // IN
PLSSUBL plssublMain, // IN
PLSSUBL plssublRuby) // IN
{
LSTRACE(RubyEnum);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Tatenakayoko (HIV) support
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetTatenakayokoLinePosition(
LSCP cp, // IN
LSTFLOW lstflow, // IN
PLSRUN plsrun, // IN
long dvr, // IN
PHEIGHTS pheightsRef, // OUT
PHEIGHTS pheightsPres, // OUT
long* pdvrDescentReservedForClient) // OUT
{
LSTRACE(GetTatenakayokoLinePosition);
// FUTURE (mikejoch) Need to adjust cp if we ever implement this.
LSNOTIMPL(GetTatenakayokoLinePosition);
return lserrNone;
}
LSERR WINAPI CLineServices::TatenakayokoEnum(
PLSRUN plsrun, // IN
PCLSCHP plschp, // IN
LSCP cp, // IN
LSDCP dcp, // IN
LSTFLOW lstflow, // IN
BOOL fReverse, // IN
BOOL fGeometryNeeded, // IN
const POINT* pt, // IN
PCHEIGHTS pcheights, // IN
long dupRun, // IN
LSTFLOW lstflowT, // IN
PLSSUBL plssubl) // IN
{
LSTRACE(TatenakayokoEnum);
LSNOTIMPL(TatenakayokoEnum);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Warichu support
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::GetWarichuInfo(
LSCP cp, // IN
LSTFLOW lstflow, // IN
PCOBJDIM pcobjdimFirst, // IN
PCOBJDIM pcobjdimSecond, // IN
PHEIGHTS pheightsRef, // OUT
PHEIGHTS pheightsPres, // OUT
long* pdvrDescentReservedForClient) // OUT
{
LSTRACE(GetWarichuInfo);
// FUTURE (mikejoch) Need to adjust cp if we ever implement this.
LSNOTIMPL(GetWarichuInfo);
return lserrNone;
}
LSERR WINAPI CLineServices::FetchWarichuWidthAdjust(
LSCP cp, // IN
enum warichucharloc wcl, // IN
PLSRUN plsrunForChar, // IN
WCHAR wch, // IN
MWCLS mwclsForChar, // IN
PLSRUN plsrunWarichuBracket, // IN
long* pdurAdjustChar, // OUT
long* pdurAdjustBracket) // OUT
{
LSTRACE(FetchWarichuWidthAdjust);
// FUTURE (mikejoch) Need to adjust cp if we ever implement this.
LSNOTIMPL(FetchWarichuWidthAdjust);
return lserrNone;
}
LSERR WINAPI CLineServices::WarichuEnum(
PLSRUN plsrun, // IN: plsrun for the entire Warichu Object
PCLSCHP plschp, // IN: lschp for lead character of Warichu Object
LSCP cp, // IN: cp of first character of Warichu Object
LSDCP dcp, // IN: number of characters in Warichu Object
LSTFLOW lstflow, // IN: text flow at Warichu Object
BOOL fReverse, // IN: whether text should be reversed for visual order
BOOL fGeometryNeeded, // IN: whether Geometry should be returned
const POINT* pt, // IN: starting position, iff fGeometryNeeded
PCHEIGHTS pcheights, // IN: height of Warichu object, iff fGeometryNeeded
long dupRun, // IN: length of Warichu Object, iff fGeometryNeeded
const POINT* ptLeadBracket, // IN: point for second line iff fGeometryNeeded and plssublSecond not NULL
PCHEIGHTS pcheightsLeadBracket, // IN: height for ruby line iff fGeometryNeeded
long dupLeadBracket, // IN: length of Ruby line iff fGeometryNeeded and plssublSecond not NULL
const POINT* ptTrailBracket, // IN: point for second line iff fGeometryNeeded and plssublSecond not NULL
PCHEIGHTS pcheightsTrailBracket,// IN: height for ruby line iff fGeometryNeeded
long dupTrailBracket, // IN: length of Ruby line iff fGeometryNeeded and plssublSecond not NULL
const POINT* ptFirst, // IN: starting point for main line iff fGeometryNeeded
PCHEIGHTS pcheightsFirst, // IN: height of main line iff fGeometryNeeded
long dupFirst, // IN: length of main line iff fGeometryNeeded
const POINT* ptSecond, // IN: point for second line iff fGeometryNeeded and plssublSecond not NULL
PCHEIGHTS pcheightsSecond, // IN: height for ruby line iff fGeometryNeeded and plssublSecond not NULL
long dupSecond, // IN: length of Ruby line iff fGeometryNeeded and plssublSecond not NULL
PLSSUBL plssublLeadBracket, // IN: subline for lead bracket
PLSSUBL plssublTrailBracket, // IN: subline for trail bracket
PLSSUBL plssublFirst, // IN: first subline in Warichu object
PLSSUBL plssublSecond) // IN: second subline in Warichu object
{
LSTRACE(WarichuEnum);
LSNOTIMPL(WarichuEnum);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// HIH support
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::HihEnum(
PLSRUN plsrun, // IN
PCLSCHP plschp, // IN
LSCP cp, // IN
LSDCP dcp, // IN
LSTFLOW lstflow, // IN
BOOL fReverse, // IN
BOOL fGeometryNeeded, // IN
const POINT* pt, // IN
PCHEIGHTS pcheights, // IN
long dupRun, // IN
PLSSUBL plssubl) // IN
{
LSTRACE(HihEnum);
LSNOTIMPL(HihEnum);
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Reverse Object support
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::ReverseEnum(
PLSRUN plsrun, // IN
PCLSCHP plschp, // IN
LSCP cp, // IN
LSDCP dcp, // IN
LSTFLOW lstflow, // IN
BOOL fReverse, // IN
BOOL fGeometryNeeded, // IN
const POINT* ppt, // IN
PCHEIGHTS pcheights, // IN
long dupRun, // IN
LSTFLOW lstflowSubline, // IN
PLSSUBL plssubl) // IN
{
LSTRACE(ReverseEnum);
return LsEnumSubline(plssubl, fReverse, fGeometryNeeded, ppt);
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::SetRenderer
//
// Synopsis: Sets up the line services object to indicate that we will be
// using for rendering.
//
//+----------------------------------------------------------------------------
void CLineServices::SetRenderer(CLSRenderer* pRenderer, BOOL fWrapLongLines, const CCharFormat* pCFLi)
{
_pMeasurer = pRenderer;
_pCFLi = pCFLi;
_lsMode = LSMODE_RENDERER;
_fWrapLongLines = fWrapLongLines;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::SetMeasurer
//
// Synopsis: Sets up the line services object to indicate that we will be
// using for measuring / hittesting.
//
//+----------------------------------------------------------------------------
void CLineServices::SetMeasurer(CLSMeasurer* pMeasurer, LSMODE lsMode, BOOL fWrapLongLines)
{
_pMeasurer = pMeasurer;
Assert(lsMode!=LSMODE_NONE && lsMode!=LSMODE_RENDERER);
_lsMode = lsMode;
_fWrapLongLines = fWrapLongLines;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetRenderer
//
//+----------------------------------------------------------------------------
CLSRenderer* CLineServices::GetRenderer()
{
return ((_pMeasurer&&_lsMode==LSMODE_RENDERER) ? DYNCAST(CLSRenderer, _pMeasurer) : NULL);
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetMeasurer
//
//+----------------------------------------------------------------------------
CLSMeasurer* CLineServices::GetMeasurer()
{
return ((_pMeasurer&&_lsMode==LSMODE_MEASURER) ? _pMeasurer : NULL);
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::PAPFromPF
//
// Synopsis: Construct a PAP from PF
//
//-----------------------------------------------------------------------------
static const BYTE s_ablskjustMap[] =
{
lskjFullInterWord, // NotSet (default)
lskjFullInterWord, // InterWord
lskjFullInterLetterAligned, // Newspaper
lskjFullInterLetterAligned, // Distribute
lskjFullInterLetterAligned, // DistributeAllLines
lskjFullScaled, // InterIdeograph
lskjFullInterWord // Auto (?)
};
void CLineServices::PAPFromPF(PLSPAP pap, const CParaFormat* pPF, BOOL fInnerPF, CComplexRun* pcr)
{
_fExpectCRLF = pPF->HasPre(fInnerPF) || _fIsTextLess;
const BOOL fJustified = pPF->GetBlockAlign(fInnerPF)==htmlBlockAlignJustify
&& !pPF->HasInclEOLWhite(fInnerPF) && !_fMinMaxPass;
// line services format flags (lsffi.h)
pap->grpf = fFmiApplyBreakingRules // Use our breaking tables
| fFmiSpacesInfluenceHeight; // Whitespace contributes to extent
if(_fWrapLongLines)
{
pap->grpf |= fFmiWrapAllSpaces;
}
else
{
pap->grpf |= fFmiForceBreakAsNext; // No emergency breaks
}
pap->uaLeft = 0;
pap->uaRightBreak = 0;
pap->uaRightJustify = 0;
pap->duaIndent = 0;
pap->duaHyphenationZone = 0;
// Justification type
pap->lsbrj = lsbrjBreakJustify;
// Justification
if(fJustified)
{
_li._fJustified = JUSTIFY_FULL;
// A. If we are a complex script set lskj to do glyphing
if(pcr!=NULL || _pMarkup->Doc()->GetCodePage()==CP_THAI)
{
pap->lskj = lskjFullGlyphs;
if(!pPF->_cuvTextKashida.IsNull())
{
Assert(_xWidthMaxAvail > 0);
pap->lsbrj = lsbrjBreakThenExpand;
// set the amount of the right break
long xKashidaPercent = pPF->_cuvTextKashida.GetPercentValue(CUnitValue::DIRECTION_CX, _xWidthMaxAvail);
_xWrappingWidth = _xWidthMaxAvail - xKashidaPercent;
// we need to set this amount as twips
Assert(_pci);
pap->uaRightBreak = _pci->TwipsFromDeviceCX(xKashidaPercent);
Assert(_xWrappingWidth >= 0);
}
}
else
{
pap->lskj = LSKJUST(s_ablskjustMap[ pPF->_uTextJustify ]);
}
_fExpansionOrCompression = pPF->_uTextJustify > styleTextJustifyInterWord;
}
else
{
_fExpansionOrCompression = FALSE;
pap->lskj = lskjNone;
}
// Alignment
pap->lskal = lskalLeft;
// Autonumbering
pap->duaAutoDecimalTab = 0;
// kind of paragraph ending
pap->lskeop = _fExpectCRLF ? lskeopEndPara1 : lskeopEndParaAlt;
// Main text flow direction
Assert(pPF->HasRTL(fInnerPF) == (BOOL) _li._fRTL);
if(!_li._fRTL)
{
pap->lstflow = lstflowES;
}
else
{
if(_pBidiLine == NULL)
{
_pBidiLine = new CBidiLine(_treeInfo, _cpStart, _li._fRTL, _pli);
}
pap->lstflow = lstflowWS;
}
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::CHPFromCF
//
// Synopsis: Construct a CHP from CF
//
//-----------------------------------------------------------------------------
void CLineServices::CHPFromCF(COneRun* por, const CCharFormat* pCF)
{
PLSCHP pchp = &por->_lsCharProps;
// The structure has already been zero'd out in fetch run, which sets almost
// everything we care about to the correct value (0).
if (pCF->_fTextAutospace)
{
_lineFlags.AddLineFlag(por->Cp(), FLAG_HAS_NOBLAST);
if(pCF->_fTextAutospace & TEXTAUTOSPACE_ALPHA)
{
pchp->fModWidthOnRun = TRUE;
por->_csco |= cscoAutospacingAlpha;
}
if(pCF->_fTextAutospace & TEXTAUTOSPACE_NUMERIC)
{
pchp->fModWidthOnRun = TRUE;
por->_csco |= cscoAutospacingDigit;
}
if(pCF->_fTextAutospace & TEXTAUTOSPACE_SPACE)
{
pchp->fModWidthSpace = TRUE;
por->_csco |= cscoAutospacingAlpha;
}
if(pCF->_fTextAutospace & TEXTAUTOSPACE_PARENTHESIS)
{
pchp->fModWidthOnRun = TRUE;
por->_csco |= cscoAutospacingParen;
}
}
if(_fExpansionOrCompression)
{
pchp->fCompressOnRun = TRUE;
pchp->fCompressSpace = TRUE;
pchp->fCompressTable = TRUE;
pchp->fExpandOnRun = 0 == (pCF->_bPitchAndFamily&FF_SCRIPT);
pchp->fExpandSpace = TRUE;
pchp->fExpandTable = TRUE;
}
pchp->idObj = LSOBJID_TEXT;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::SetPOLS
//
// Synopsis: We call this function when we assign a CLineServices
// to a CLSMeasurer.
//
//-----------------------------------------------------------------------------
void CLineServices::SetPOLS(CFlowLayout* pFlowLayout, CCalcInfo* pci)
{
CTreePos *ptpStart, *ptpLast;
CElement* pElementOwner = pFlowLayout->ElementOwner();
_pFlowLayout = pFlowLayout;
_fIsEditable = _pFlowLayout->IsEditable();
_fIsTextLess = pElementOwner->HasFlag(TAGDESC_TEXTLESS);
_fIsTD = pElementOwner->Tag() == ETAG_TD;
_pMarkup = _pFlowLayout->GetContentMarkup();
_fHasSites = FALSE;
_pci = pci;
_plsline = NULL;
_chPassword = _pFlowLayout->GetPasswordCh();
// We have special wrapping rules inside TDs with width specified.
// Make note so the ILS breaking routines can break correctly.
_xTDWidth = MAX_MEASURE_WIDTH;
if(_fIsTD)
{
const LONG iUserWidth = 0;/*DYNCAST(CTableCellLayout, pFlowLayout)->GetSpecifiedPixelWidth(pci); wlw note*/
if(iUserWidth)
{
_xTDWidth = iUserWidth;
}
}
ClearLinePropertyFlags();
_pFlowLayout->GetContentTreeExtent(&ptpStart, &ptpLast);
_treeInfo._cpLayoutFirst = ptpStart->GetCp() + 1;
_treeInfo._cpLayoutLast = ptpLast->GetCp();
_treeInfo._ptpLayoutLast = ptpLast;
_treeInfo._tpFrontier.BindToCp(0);
InitChunkInfo(_treeInfo._cpLayoutFirst);
_pPFFirst = NULL;
DEBUG_ONLY(_cpStart = -1);
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::ClearPOLS
//
// Synopsis: We call this function when we have finished using the measurer.
//
//-----------------------------------------------------------------------------
void CLineServices::ClearPOLS()
{
// This assert will fire if we are leaking lsline's. This happens
// if somebody calls LSDoCreateLine without ever calling DiscardLine.
Assert(_plsline == NULL);
_pMarginInfo = NULL;
if(_plcFirstChunk)
{
DeleteChunks();
}
DiscardOneRuns();
if(_pccsCache)
{
_pccsCache->Release();
_pccsCache = NULL;
_pCFCache = NULL;
}
if(_pccsAltCache)
{
_pccsAltCache->Release();
_pccsAltCache = NULL;
_pCFAltCache = NULL;
}
}
static CCharFormat s_cfBullet;
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetCFSymbol
//
// Synopsis: Get the a CF for the symbol passed in and put it in the COneRun.
//
//-----------------------------------------------------------------------------
void CLineServices::GetCFSymbol(COneRun* por, TCHAR chSymbol, const CCharFormat* pcfIn)
{
static BOOL s_fBullet = FALSE;
CCharFormat* pcfOut = por->GetOtherCF();
Assert(pcfIn && pcfOut);
if(pcfIn==NULL || pcfOut==NULL)
{
goto Cleanup;
}
if(!s_fBullet)
{
// N.B. (johnv) For some reason, Win95 does not render the Windings font properly
// for certain characters at less than 7 points. Do not go below that size!
s_cfBullet.SetHeightInTwips(TWIPS_FROM_POINTS(7));
s_cfBullet._bCharSet = SYMBOL_CHARSET;
s_cfBullet._fNarrow = FALSE;
s_cfBullet._bPitchAndFamily = (BYTE)FF_DONTCARE;
s_cfBullet._latmFaceName= fc().GetAtomWingdings();
s_cfBullet._bCrcFont = s_cfBullet.ComputeFontCrc();
s_fBullet = TRUE;
}
// Use bullet char format
*pcfOut = s_cfBullet;
pcfOut->_ccvTextColor = pcfIn->_ccvTextColor;
// Important - CVM_SYMBOL is a special mode where out WC chars are actually
// zero-extended MB chars. This allows us to have a codepage-independent
// call to ExTextOutA. (cthrash)
por->SetConvertMode(CVM_SYMBOL);
Cleanup:
return;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::GetCFNumber
//
// Synopsis: Get the a CF for the number passed in and put it in the COneRun.
//
//-----------------------------------------------------------------------------
void CLineServices::GetCFNumber(COneRun* por, const CCharFormat* pcfIn)
{
CCharFormat* pcfOut = por->GetOtherCF();
*pcfOut = *pcfIn;
pcfOut->_fSubscript = pcfOut->_fSuperscript = FALSE;
pcfOut->_bCrcFont = pcfOut->ComputeFontCrc();
}
LONG CLineServices::GetDirLevel(LSCP lscp)
{
LONG nLevel;
COneRun* pHead;
nLevel = _li._fRTL;
for(pHead=_listCurrent._pHead; pHead; pHead=pHead->_pNext)
{
if(lscp >= pHead->_lscpBase)
{
if(pHead->IsSyntheticRun())
{
SYNTHTYPE synthtype = pHead->_synthType;
// Since SYNTHTYPE_REVERSE preceeds SYNTHTYPE_ENDREVERSE and only
// differs in the last bit, we can compute nLevel with bit magic. We
// have to be sure this condition really exists of course, so we
// Assert() it above.
if(IN_RANGE(SYNTHTYPE_DIRECTION_FIRST, synthtype, SYNTHTYPE_DIRECTION_LAST))
{
nLevel -= (((synthtype&1)<<1) - 1);
}
}
}
else
{
break;
}
}
return nLevel;
}
#define MIN_FOR_LS 1
HRESULT CLineServices::Setup(
LONG xWidthMaxAvail,
LONG cp,
CTreePos* ptp,
const CMarginInfo* pMarginInfo,
const CLine* pli,
BOOL fMinMaxPass)
{
const CParaFormat* pPF;
BOOL fWrapLongLines = _fWrapLongLines;
HRESULT hr = S_OK;
Assert(_pMeasurer);
if(!_treeInfo._fInited || cp!=long(_pMeasurer->GetCp()))
{
DiscardOneRuns();
hr = _treeInfo.InitializeTreeInfo(_pFlowLayout, _fIsEditable, cp, ptp);
if(hr != S_OK)
{
goto Cleanup;
}
}
_lineFlags.InitLineFlags();
_cpStart = _cpAccountedTill = cp;
_pMarginInfo = pMarginInfo;
_cWhiteAtBOL = 0;
_cAlignedSitesAtBOL = 0;
_cInlinedSites = 0;
_cAbsoluteSites = 0;
_cAlignedSites = 0;
_lCharGridSize = 0;
_lLineGridSize = 0;
_pNodeForAfterSpace = NULL;
if(_lsMode == LSMODE_MEASURER)
{
_pli = NULL;
}
else
{
Assert(_lsMode==LSMODE_HITTEST || _lsMode==LSMODE_RENDERER);
_pli = pli;
_li._fLookaheadForGlyphing = (_pli ? _pli->_fLookaheadForGlyphing : FALSE);
}
ClearLinePropertyFlags(); // zero out all flags
_fWrapLongLines = fWrapLongLines; // preserve this flag when we 0 _dwProps
// We're getting max, so start really small.
_lMaxLineHeight = LONG_MIN;
_fFoundLineHeight = FALSE;
_xWrappingWidth = -1;
pPF = _treeInfo._pPF;
_fInnerPFFirst = _treeInfo._fInnerPF;
// BUGBUG (a-pauln) some elements are getting assigned a PF from the
// wrong branch in InitializeTreeInfo() above. This hack is a
// temporary correction of the problem's manifestation until
// we determine how to correct it.
if(!_treeInfo._fHasNestedElement || !ptp)
{
_li._fRTL = pPF->HasRTL(_fInnerPFFirst);
}
else
{
pPF = ptp->Branch()->GetParaFormat();
_li._fRTL = pPF->HasRTL(_fInnerPFFirst);
}
if(!_pFlowLayout->GetDisplay()->GetWordWrap()
|| (pPF&&pPF->HasPre(_fInnerPFFirst)&&!_fWrapLongLines))
{
_xWrappingWidth = xWidthMaxAvail;
xWidthMaxAvail = MAX_MEASURE_WIDTH;
}
else if(xWidthMaxAvail <= MIN_FOR_LS)
{
//BUGBUG(SujalP): Remove hack when LS gets their in-efficient calc bug fixed.
xWidthMaxAvail = 0;
}
_xWidthMaxAvail = xWidthMaxAvail;
if(_xWrappingWidth == -1)
{
_xWrappingWidth = _xWidthMaxAvail;
}
_fMinMaxPass = fMinMaxPass;
_pPFFirst = pPF;
DeleteChunks();
InitChunkInfo(cp - (_pMeasurer->_fMeasureFromTheStart?0:_pMeasurer->_cchPreChars));
Cleanup:
RRETURN(hr);
}
//-----------------------------------------------------------------------------
//
// Function: CLineServices::GetMinDurBreaks (member)
//
// Synopsis: Determine the minimum width of the line. Also compute any
// adjustments to the maximum width of the line.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::GetMinDurBreaks(LONG* pdvMin, LONG* pdvMaxDelta)
{
LSERR lserr;
Assert(_plsline);
Assert(_fMinMaxPass);
Assert(pdvMin);
Assert(pdvMaxDelta);
// First we call LsGetMinDurBreaks. This call does the right thing only
// for text runs, not ILS objects.
if(!_fScanForCR)
{
LONG dvDummy;
lserr = LsGetMinDurBreaks(GetContext(), _plsline, &dvDummy, pdvMin);
if(lserr)
{
goto Cleanup;
}
}
// Now we need to go and compute the true max width. The current max
// width is incorrect by the difference in the min and max widths of
// dobjs for which these values are not the same (e.g. tables). We've
// cached the difference in the dobj's, so we need to enumerate these
// and add them up. The enumeration callback adjusts the value in
// CLineServices::dvMaxDelta;
_dvMaxDelta = 0;
lserr = LsEnumLine(
_plsline,
FALSE, // fReverseOrder
FALSE, // fGeometryNeeded
&_afxGlobalData._Zero.pt); // pptOrg
*pdvMaxDelta = _dvMaxDelta;
if(_fScanForCR)
{
*pdvMin = _li._xWidth + _dvMaxDelta;
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: CLineServices destructor
//
// Synopsis: Free the COneRun cache
//
//-----------------------------------------------------------------------------
CLineServices::~CLineServices()
{
if(_pccsCache)
{
_pccsCache->Release();
}
if(_pccsAltCache)
{
_pccsAltCache->Release();
}
}
//-----------------------------------------------------------------------------
//
// Function: CLineServices::DiscardLine (member)
//
// Synopsis: The lifetime of a CLineServices object is that of it's
// containing CDoc. This function is used to clear state
// after each use of the object, as opposed to the destructor.
// This function needs to be called after each measured/rendered
// line (~CLine.)
//
//-----------------------------------------------------------------------------
void CLineServices::DiscardLine()
{
if(_plsline)
{
LsDestroyLine(_plsc, _plsline);
_lineFlags.DeleteAll();
_lineCounts.DeleteAll();
_plsline = NULL;
}
// For now just do this simple thing here. Eventually we will do more
// complex things like holding onto tree state.
_treeInfo._fInited = FALSE;
if(_pBidiLine != NULL)
{
delete _pBidiLine;
_pBidiLine = NULL;
}
_aryRubyInfo.DeleteAll();
}
//+----------------------------------------------------------------------------
//
// Member: InitChunkInfo
//
// Synopsis: Initializest the chunk info store.
//
//-----------------------------------------------------------------------------
void CLineServices::InitChunkInfo(LONG cp)
{
_cpLastChunk = cp;
_xPosLastChunk = 0;
_plcFirstChunk = _plcLastChunk = NULL;
_pElementLastRelative = NULL;
_fLastChunkSingleSite = FALSE;
}
//+----------------------------------------------------------------------------
//
// Member: DeleteChunks
//
// Synopsis: Delete chunk related information in the line
//
//-----------------------------------------------------------------------------
void CLineServices::DeleteChunks()
{
while(_plcFirstChunk)
{
CLSLineChunk* plc = _plcFirstChunk;
_plcFirstChunk = _plcFirstChunk->_plcNext;
delete plc;
}
_plcLastChunk = NULL;
}
//-----------------------------------------------------------------------------
//
// Function: QueryLinePointPcp (member)
//
// Synopsis: Wrapper for LsQueryLinePointPcp
//
// Returns: S_OK - Success
// S_FALSE - depth was zero
// E_FAIL - error
//
//-----------------------------------------------------------------------------
HRESULT CLineServices::QueryLinePointPcp(
LONG u, // IN
LONG v, // IN
LSTFLOW* pktFlow, // OUT
PLSTEXTCELL plstextcell) // OUT
{
POINTUV uvPoint;
CStackDataAry<LSQSUBINFO, 4> aryLsqsubinfo;
HRESULT hr;
DWORD nDepthIn = 4;
uvPoint.u = u;
uvPoint.v = v;
Assert(_plsline);
#define NDEPTH_MAX 32
for(;;)
{
DWORD nDepth;
LSERR lserr = LsQueryLinePointPcp(
_plsline,
&uvPoint,
nDepthIn,
aryLsqsubinfo,
&nDepth,
plstextcell);
if(lserr == lserrNone)
{
hr = S_OK;
// get the flow direction for proper x+/- manipulation
if(nDepth > 0)
{
if(aryLsqsubinfo[nDepth-1].idobj!=LSOBJID_TEXT
&& aryLsqsubinfo[nDepth-1].idobj!=LSOBJID_EMBEDDED)
{
LSQSUBINFO &qsubinfo = aryLsqsubinfo[nDepth-1];
plstextcell->dupCell = qsubinfo.dupObj;
plstextcell->pointUvStartCell = qsubinfo.pointUvStartSubline;
plstextcell->cCharsInCell = 0;
plstextcell->cpStartCell = qsubinfo.cpFirstSubline;
plstextcell->cpEndCell = qsubinfo.cpFirstSubline + qsubinfo.dcpSubline;
}
else
{
plstextcell->cCharsInCell = plstextcell->cpEndCell - plstextcell->cpStartCell + 1;
}
*pktFlow = aryLsqsubinfo[nDepth-1].lstflowSubline;
}
else if(nDepth == 0)
{
// HACK ALERT(MikeJoch):
// See hack alert by SujalP below. We can run into this case
// when the line is terminated by a [section break] type
// character. We should take it upon ourselves to fill in
// plstextcell and pktFlow when this happens.
LONG duIgnore;
plstextcell->cpStartCell = _lscpLim - 1;
plstextcell->cpEndCell = _lscpLim;
plstextcell->dupCell = 0;
plstextcell->cCharsInCell = 1;
hr = GetLineWidth(&plstextcell->pointUvStartCell.u, &duIgnore);
// If we don't have a level, assume that the flow is in the line direction.
if(pktFlow)
{
*pktFlow = _li._fRTL ? fUDirection : 0;
}
}
else
{
hr = E_FAIL;
}
break;
}
else if(lserr == lserrInsufficientQueryDepth)
{
if(nDepthIn > NDEPTH_MAX)
{
hr = E_FAIL;
break;
}
nDepthIn *= 2;
Assert(nDepthIn <= NDEPTH_MAX); // That would be rediculous
hr = aryLsqsubinfo.Grow(nDepthIn);
if(hr)
{
break;
}
// Loop back.
}
else
{
hr = E_FAIL;
break;
}
}
RRETURN1(hr, S_FALSE);
}
//-----------------------------------------------------------------------------
//
// Function: QueryLineCpPpoint (member)
//
// Synopsis: Wrapper for LsQueryLineCpPpoint
//
// Returns: S_OK - Success
// S_FALSE - depth was zero
// E_FAIL - error
//
//-----------------------------------------------------------------------------
HRESULT CLineServices::QueryLineCpPpoint(
LSCP lscp, // IN
BOOL fFromGetLineWidth, // IN
CDataAry<LSQSUBINFO>* paryLsqsubinfo, // IN/OUT
PLSTEXTCELL plstextcell, // OUT
BOOL* pfRTLFlow) // OUT
{
CStackDataAry<LSQSUBINFO, 4> aryLsqsubinfo;
HRESULT hr;
DWORD nDepthIn;
LSTFLOW ktFlow;
DWORD nDepth;
Assert(_plsline);
if(paryLsqsubinfo == NULL)
{
aryLsqsubinfo.Grow(4); // Guaranteed to succeed since we're working from the stack.
paryLsqsubinfo = &aryLsqsubinfo;
}
nDepthIn = paryLsqsubinfo->Size();
#define NDEPTH_MAX 32
for(;;)
{
LSERR lserr = LsQueryLineCpPpoint(
_plsline,
lscp,
nDepthIn,
*paryLsqsubinfo,
&nDepth,
plstextcell);
if(lserr == lserrNone)
{
// HACK ALERT(SujalP):
// Consider the case where the line contains just 3 characters:
// A[space][blockbreak] at cp 0, 1 and 2 respectively. If we query
// LS at cp 2, if would expect lsTextCell to point to the zero
// width cell containing [blockbreak], meaning that
// lsTextCell.pointUvStartCell.u would be the width of the line
// (including whitespaces). However, upon being queried at cp=2
// LS returns a nDepth of ***0*** because it thinks this is some
// splat crap. This problem breaks a lot of our callers, hence
// we attemp to hack around this problem.
// NOTE: In case LS fixes their problem, be sure that hittest.htm
// renders all its text properly for it exhibits a problem because
// of this problem.
// ORIGINAL CODE: hr = nDepth ? S_OK : S_FALSE;
if(nDepth == 0)
{
LONG duIgnore;
if(!fFromGetLineWidth && lscp>=_lscpLim-1)
{
plstextcell->cpStartCell = _lscpLim - 1;
plstextcell->cpEndCell = _lscpLim;
plstextcell->dupCell = 0;
hr = GetLineWidth(&plstextcell->pointUvStartCell.u, &duIgnore);
}
else
{
hr = S_FALSE;
}
// If we don't have a level, assume that the flow is in the line direction.
if(pfRTLFlow)
{
*pfRTLFlow = _li._fRTL;
}
}
else
{
hr = S_OK;
LSQSUBINFO& qsubinfo = (*paryLsqsubinfo)[nDepth-1];
if(qsubinfo.idobj!=LSOBJID_TEXT
&& qsubinfo.idobj!=LSOBJID_EMBEDDED)
{
plstextcell->dupCell = qsubinfo.dupObj;
plstextcell->pointUvStartCell = qsubinfo.pointUvStartObj;
plstextcell->cCharsInCell = 0;
plstextcell->cpStartCell = qsubinfo.cpFirstSubline;
plstextcell->cpEndCell = qsubinfo.cpFirstSubline + qsubinfo.dcpSubline;
}
// if we are going in the opposite direction of the line we
// will need to compensate for proper xPos
ktFlow = qsubinfo.lstflowSubline;
if(pfRTLFlow)
{
*pfRTLFlow = (ktFlow == lstflowWS);
}
}
break;
}
else if(lserr == lserrInsufficientQueryDepth)
{
if(nDepthIn > NDEPTH_MAX)
{
hr = E_FAIL;
break;
}
nDepthIn *= 2;
Assert(nDepthIn <= NDEPTH_MAX); // That would be ridiculous
hr = paryLsqsubinfo->Grow(nDepthIn);
if(hr)
{
break;
}
// Loop back.
}
else
{
hr = E_FAIL;
break;
}
}
if(hr == S_OK)
{
Assert((LONG)nDepth <= paryLsqsubinfo->Size());
paryLsqsubinfo->SetSize(nDepth);
}
RRETURN1(hr, S_FALSE);
}
HRESULT CLineServices::GetLineWidth(LONG* pdurWithTrailing, LONG* pdurWithoutTrailing)
{
LSERR lserr;
LONG duIgnore;
lserr = LsQueryLineDup(
_plsline, &duIgnore, &duIgnore, &duIgnore,
pdurWithoutTrailing, pdurWithTrailing);
if(lserr != lserrNone)
{
goto Cleanup;
}
Cleanup:
return HRFromLSERR(lserr);
}
BOOL CLineServices::IsOwnLineSite(COneRun* por)
{
return (por->_fCharsForNestedLayout?
por->_ptp->Branch()->Element()->IsOwnLineElement(_pFlowLayout):FALSE);
}
//+----------------------------------------------------------------------------
//
// Function: CLineServices::UnUnifyHan
//
// Synopsis: Pick of one the Far East script id's for an sidHan range.
//
// Most ideographic characters fall in sidHan (~34k out of all
// of ucs-2), but not all fonts support every Han character.
// This function attempts to pick one of the four FE sids.
//
// Returns: sidKana for Japanese
// sidHangul for Korean
// sidBopomofo for Traditional Chinese
// sidHan for Simplified Chinese
//
//-----------------------------------------------------------------------------
SCRIPT_ID CLineServices::UnUnifyHan(
HDC hdc,
UINT uiFamilyCodePage,
LCID lcid,
COneRun* por)
{
SCRIPT_ID sid = sidTridentLim;
if(!lcid)
{
switch(uiFamilyCodePage)
{
case CP_CHN_GB: sid = sidHan; break;
case CP_KOR_5601: sid = sidHangul; break;
case CP_TWN: sid = sidBopomofo; break;
case CP_JPN_SJ: sid = sidKana; break;
}
}
else
{
LANGID lid = LANGIDFROMLCID(lcid);
WORD plid = PRIMARYLANGID(lid);
if(plid == LANG_CHINESE)
{
if(SUBLANGID(lid) == SUBLANG_CHINESE_TRADITIONAL)
{
sid = sidBopomofo;
}
else
{
sid = sidHan;
}
}
else if(plid == LANG_KOREAN)
{
sid = sidHangul;
}
else if(plid == LANG_JAPANESE)
{
sid = sidKana;
}
}
if(sid == sidTridentLim)
{
long cp = por->Cp();
long cch = GetScriptTextBlock(por->_ptp, &cp);
DWORD dwPriorityCodePages = fc().GetSupportedCodePageInfo(hdc) & (FS_JOHAB|FS_CHINESETRAD|FS_WANSUNG|FS_CHINESESIMP|FS_JISJAPAN);
DWORD dwCodePages = GetTextCodePages(dwPriorityCodePages, cp, cch);
dwCodePages &= dwPriorityCodePages;
if(dwCodePages & FS_JISJAPAN)
{
sid = sidKana;
}
else if(!dwCodePages || dwCodePages&FS_CHINESETRAD)
{
sid = sidBopomofo;
}
else if(dwCodePages & FS_WANSUNG)
{
sid = sidHangul;
}
else
{
sid = sidHan;
}
}
return sid;
}
//+----------------------------------------------------------------------------
//
// Function: CLineServices::DisambiguateScriptId
//
// Synopsis: Some characters have sporadic coverage in Far East fonts. To
// make matters worse, these characters often have good glyphs in
// Latin fonts. We call IMLangCodePages to check the coverage
// of codepages for the codepoints of interest, and then pick
// an appropriate script id.
//
// The first priority is to not switch the font. If it appears
// that the prevailing font has coverage, we will preferentially
// pick this font. Otherwise, we go through a somewhat arbitrary
// priority list to pick a better guess.
//
// Returns: TRUE if the default font should be used.
//
// Script ID, iff the default font isn't used.
//
//-----------------------------------------------------------------------------
const DWORD s_adwCodePagesMap[] =
{
FS_JOHAB, // 0
FS_CHINESETRAD, // 1
FS_WANSUNG, // 2
FS_CHINESESIMP, // 3
FS_JISJAPAN, // 4
FS_VIETNAMESE, // 5
FS_BALTIC, // 6
FS_ARABIC, // 7
FS_HEBREW, // 8
FS_TURKISH, // 9
FS_GREEK, // 10
FS_CYRILLIC, // 11
FS_LATIN2 // 12
};
const SCRIPT_ID s_asidCodePagesMap[] =
{
sidHangul, // 0 FS_JOHAB
sidBopomofo, // 1 FS_CHINESETRAD
sidHangul, // 2 FS_WANSUNG
sidHan, // 3 FS_CHINESESIMP
sidKana, // 4 FS_JISJAPAN
sidLatin, // 5 FS_VIETNAMESE
sidLatin, // 6 FS_BALTIC
sidArabic, // 7 FS_ARABIC
sidHebrew, // 8 FS_HEBREW
sidLatin, // 9 FS_TURKISH
sidGreek, // 10 FS_GREEK
sidCyrillic, // 11 FS_CYRILLIC
sidLatin // 12 FS_LATIN2
};
const BYTE s_abCodePagesMap[] =
{
JOHAB_CHARSET, // 0 FS_JOHAB
CHINESEBIG5_CHARSET,// 1 FS_CHINESETRAD
HANGEUL_CHARSET, // 2 FS_WANSUNG
GB2312_CHARSET, // 3 FS_CHINESESIMP
SHIFTJIS_CHARSET, // 4 FS_JISJAPAN
VIETNAMESE_CHARSET, // 5 FS_VIETNAMESE
BALTIC_CHARSET, // 6 FS_BALTIC
ARABIC_CHARSET, // 7 FS_ARABIC
HEBREW_CHARSET, // 8 FS_HEBREW
TURKISH_CHARSET, // 9 FS_TURKISH
GREEK_CHARSET, // 10 FS_GREEK
RUSSIAN_CHARSET, // 11 FS_CYRILLIC
EASTEUROPE_CHARSET // 12 FS_LATIN2
};
BOOL CLineServices::DisambiguateScriptId(
HDC hdc, // IN
CBaseCcs* pBaseCcs, // IN
COneRun* por, // IN
SCRIPT_ID* psidAlt, // OUT
BYTE* pbCharSetAlt ) // OUT
{
long cp = por->Cp();
long cch = GetScriptTextBlock(por->_ptp, &cp);
DWORD dwCodePages = GetTextCodePages(0, cp ,cch);
BOOL fCheckAltFont;
SCRIPT_ID sid = sidDefault;
BYTE bCharSetCurrent = pBaseCcs->_bCharSet;
BOOL fFECharSet;
if(dwCodePages)
{
// (1) Check if the current font will cover the glyphs
if(bCharSetCurrent == ANSI_CHARSET)
{
fCheckAltFont = 0==(dwCodePages&FS_LATIN1) || 0==(pBaseCcs->_sids&ScriptBit(sidLatin));
fFECharSet = FALSE;
}
else
{
int i = ARRAYSIZE(s_adwCodePagesMap);
fCheckAltFont = TRUE;
fFECharSet = IsFECharset(bCharSetCurrent);
while(i--)
{
if(bCharSetCurrent == s_abCodePagesMap[i])
{
fCheckAltFont = 0 == (dwCodePages&s_adwCodePagesMap[i]);
break;
}
}
}
if(fCheckAltFont)
{
SCRIPT_IDS sidsFace = fc().EnsureScriptIDsForFont(hdc, pBaseCcs, FALSE);
if(fFECharSet)
{
sidsFace &= (ScriptBit(sidKana)|ScriptBit(sidHangul)|ScriptBit(sidBopomofo)|ScriptBit(sidHan));
}
// (2) Check if the current fontface will cover the glyphs
// (3) Pick an appropriate sid for the glyphs
if(dwCodePages & FS_LATIN1)
{
if(sidsFace & ScriptBit(sidLatin))
{
sid = sidAmbiguous;
fCheckAltFont = 0 == (pBaseCcs->_sids&ScriptBit(sidLatin));
}
else
{
sid = sidLatin;
}
*pbCharSetAlt = ANSI_CHARSET;
}
else
{
int i = ARRAYSIZE(s_adwCodePagesMap);
int iAlt = -1;
dwCodePages &= fc().GetSupportedCodePageInfo(hdc);
if(fFECharSet)
{
// NOTE (cthrash) If are native font doesn't support it, don't switch to
// another FE charset because the font creation will simply fail and give
// us an undesirable font.
dwCodePages &= ~(FS_JOHAB|FS_CHINESETRAD|FS_WANSUNG|FS_CHINESESIMP|FS_JISJAPAN);
}
if(dwCodePages)
{
while(i--)
{
if(dwCodePages & s_adwCodePagesMap[i])
{
const SCRIPT_IDS sids = ScriptBit(s_asidCodePagesMap[i]);
if(sidsFace & sids)
{
fCheckAltFont = 0 == (pBaseCcs->_sids&sids);
break; // (2)
}
else if(-1 == iAlt)
{
iAlt = i; // Candidate for (3), provided nothing meet requirement for (2)
}
}
}
if(-1 != i)
{
sid = sidAmbiguous;
*pbCharSetAlt = s_abCodePagesMap[i];
}
else if(-1 != iAlt)
{
sid = s_asidCodePagesMap[iAlt];
*pbCharSetAlt = s_abCodePagesMap[iAlt];
}
else
{
fCheckAltFont = FALSE;
}
}
}
}
}
else
{
fCheckAltFont = FALSE;
}
*psidAlt = sid;
return fCheckAltFont;
}
//+----------------------------------------------------------------------------
//
// Function: CLineServices::GetScriptTextBlock
//
// Synopsis: Get the cp and cch of the current text block, which may be
// artificially chopped up due to the presence of pointer nodes.
//
// Returns: cch and cp.
//
//-----------------------------------------------------------------------------
#define FONTLINK_SCAN_MAX 32L
long CLineServices::GetScriptTextBlock(/*[in]*/CTreePos* ptp, /*[out]*/long* pcp)
{
const long ich = *pcp - ptp->GetCp(); // chars to the left of the cp in the ptp
const SCRIPT_ID sid = ptp->Sid();
long cchBack;
long cchForward;
CTreePos* ptpStart = ptp;
// Find the 'true' start, backing up over pointers.
// Look for the beginning of the sid block.
for(cchBack=ich; cchBack<=FONTLINK_SCAN_MAX;)
{
CTreePos* ptpPrev = ptpStart->PreviousTreePos();
if(!ptpPrev || ptpPrev->IsNode()
|| (ptpPrev->IsText() && ptpPrev->Sid()!=sid))
{
break;
}
ptpStart = ptpPrev;
cchBack += ptpPrev->GetCch();
}
// Find the 'true' end.
for(cchForward=ptp->GetCch()-ich; cchForward<=FONTLINK_SCAN_MAX;)
{
CTreePos* ptpNext = ptp->NextTreePos();
if(!ptpNext || ptpNext->IsNode()
|| (ptpNext->IsText() && ptpNext->Sid()!=sid))
{
break;
}
ptp = ptpNext;
cchForward += ptp->GetCch();
}
// Determine the cp at which to start, and the cch to scan.
if(cchBack <= FONTLINK_SCAN_MAX)
{
*pcp = ptpStart->GetCp();
}
else
{
*pcp = ptpStart->GetCp() + cchBack - FONTLINK_SCAN_MAX;
}
return min(cchBack, FONTLINK_SCAN_MAX)+min(cchForward, FONTLINK_SCAN_MAX);
}
//+----------------------------------------------------------------------------
//
// Function: CLineServices::GetTextCodePages
//
// Synopsis: Determine the codepage coverage of cch chars of text starting
// at cp using IMLangCodePages.
//
// Returns: Codepage coverage as a bitfield (FS_*, see wingdi.h).
//
//-----------------------------------------------------------------------------
#define GETSTRCODEPAGES_CHUNK 10L
DWORD CLineServices::GetTextCodePages(DWORD dwPriorityCodePages, long cp, long cch)
{
HRESULT hr;
extern IMultiLanguage* g_pMultiLanguage;
IMLangCodePages* pMLangCodePages = NULL;
DWORD dwCodePages;
LONG cchCodePages;
long cchValid;
CTxtPtr tp(_pMarkup, cp);
const TCHAR* pch = tp.GetPch(cchValid);
long cchInTp = cchValid;
DWORD dwMask;
// PERF (cthrash) In the following HTML, we will have a sidAmbiguous
// run with a single space char in in (e.g. amazon.com): <B>·</B> X
// The middot is sidAmbiguous, the space is sidMerge, and thus they merge.
// The X of course is sidAsciiLatin. When called for a single space char,
// we don't want to bother calling MLANG. Just give the caller a stock
// answer so as to avoid the unnecessary busy work.
if(cch==1 && *pch==WCH_SPACE)
{
return dwPriorityCodePages?dwPriorityCodePages:DWORD(-1);
}
dwCodePages = dwPriorityCodePages;
dwMask = DWORD(-1);
hr = EnsureMultiLanguage();
if(hr)
{
goto Cleanup;
}
hr = g_pMultiLanguage->QueryInterface(IID_IMLangCodePages, (void**)&pMLangCodePages);
if(hr)
{
goto Cleanup;
}
// Strip out the leading WCH_NBSP chars
while(cch)
{
long cchToCheck = min(GETSTRCODEPAGES_CHUNK, min(cch, cchValid));
const TCHAR* pchStart = pch;
const TCHAR* pchNext;
DWORD dwRet = 0;
while(*pch == WCH_NBSP)
{
pch++;
cchToCheck--;
if(!cchToCheck)
{
break;
}
}
pchNext = pch + cchToCheck;
if(cchToCheck)
{
hr = pMLangCodePages->GetStrCodePages(pch, cchToCheck, dwCodePages, &dwRet, &cchCodePages);
if(hr)
{
goto Cleanup;
}
dwCodePages = dwMask & dwRet;
// No match, not much we can do.
if(!dwCodePages)
{
break;
}
// This is an error condition of sorts. The whole run couldn't be
// covered by a single codepage. Just bail and give the user what
// we have so far.
if(cchToCheck > cchCodePages)
{
if(pch[cchCodePages] == WCH_NBSP)
{
pchNext = pch + cchCodePages + 1; // resume after NBSP char
}
else
{
break;
}
}
}
// Decrement our counts, advance our pointers.
cchValid -= (long)(pchNext - pchStart);
cch -= (long)(pchNext - pchStart);
if(cch)
{
DWORD dw = dwCodePages;
int i, j;
// First check if we have only one codepage represented
// If we do, we're done. Note the largest bit we care
// about is FS_JOHAB (0x00200000) so we look at 22 bits.
for(i=22,j=0; i--&&j<2; dw>>=1)
{
j += dw & 1;
}
if(j == 1)
{
break;
}
if(cchValid)
{
pch = pchNext;
}
else
{
tp.AdvanceCp(cchInTp);
pch = tp.GetPch(cchInTp);
cchValid = cchInTp;
}
dwMask = dwCodePages;
}
}
Cleanup:
ReleaseInterface(pMLangCodePages);
return dwCodePages;
}
//-----------------------------------------------------------------------------
//
// Function: CLineServices::ShouldSwitchFontsForPUA
//
// Synopsis: Decide if we should switch fonts for Unicode Private Use Area
// characters. This is a heuristic approach.
//
// Returns: BOOL - true if we should switch fonts
// *psid - the SCRIPT_ID to which we should switch
//
//-----------------------------------------------------------------------------
BOOL CLineServices::ShouldSwitchFontsForPUA(
HDC hdc,
UINT uiFamilyCodePage,
CBaseCcs* pBaseCcs,
const CCharFormat* pcf,
SCRIPT_ID* psid)
{
BOOL fShouldSwitch;
if(pcf->_fExplicitFace)
{
// Author specified a face name -- don't switch fonts on them.
fShouldSwitch = FALSE;
}
else
{
SCRIPT_IDS sidsFace = fc().EnsureScriptIDsForFont(hdc, pBaseCcs, FALSE);
SCRIPT_ID sid = sidDefault;
if(pcf->_lcid)
{
// Author specified a LANG attribute -- see if the current font
// covers this script
const LANGID langid = LANGIDFROMLCID(pcf->_lcid);
if(langid == LANG_CHINESE)
{
sid = SUBLANGID(langid)==SUBLANG_CHINESE_TRADITIONAL ? sidBopomofo : sidHan;
}
else
{
sid = DefaultScriptIDFromLang(langid);
}
}
else
{
// Check the document codepage, then the system codepage
switch (uiFamilyCodePage)
{
case CP_CHN_GB: sid = sidHan; break;
case CP_KOR_5601: sid = sidHangul; break;
case CP_TWN: sid = sidBopomofo; break;
case CP_JPN_SJ: sid = sidKana; break;
default:
{
switch(_afxGlobalData._cpDefault)
{
case CP_CHN_GB: sid = sidHan; break;
case CP_KOR_5601: sid = sidHangul; break;
case CP_TWN: sid = sidBopomofo; break;
case CP_JPN_SJ: sid = sidKana; break;
default: sid = sidDefault; break;
}
}
}
}
if(sid != sidDefault)
{
fShouldSwitch = (sidsFace&ScriptBit(sid)) == sidsNotSet;
*psid = sid;
}
else
{
fShouldSwitch = FALSE;
}
}
return fShouldSwitch;
}
//-----------------------------------------------------------------------------
//
// Function: CLineServices::GetCcs
//
// Synopsis: Gets the suitable font (CCcs) for the given COneRun.
//
// Returns: CCcs
//
//-----------------------------------------------------------------------------
CCcs* CLineServices::GetCcs(COneRun* por, HDC hdc, CDocInfo* pdi)
{
CCcs* pccs;
const CCharFormat* pCF = por->GetCF();
const BOOL fDontFontLink = !por->_ptp
|| !por->_ptp->IsText()
|| _chPassword
|| pCF->_bCharSet==SYMBOL_CHARSET
|| pCF->_fDownloadedFont
|| pdi->_pDoc->GetCodePage()==50000;
BOOL fCheckAltFont; // TRUE if _pccsCache does not have glyphs needed for sidText
BOOL fPickNewAltFont; // TRUE if _pccsAltCache needs to be created anew
SCRIPT_ID sidAlt = 0;
BYTE bCharSetAlt = 0;
SCRIPT_ID sidText;
// NB (cthrash) Although generally it will, CCharFormat::_latmFaceName need
// not necessarily match CBaseCcs::_latmLFFaceName. This is particularly true
// when a generic CSS font-family is used (Serif, Fantasy, etc.) We won't
// know the actual font properties until we call CCcs::MakeFont. For this
// reason, we always compute the _pccsCache first, even though it's
// possible (not likely, but possible) that we'll never use the font.
// If we have a different pCF then what _pccsCache is based on,
if(pCF!=_pCFCache
// *or* If we dont have a cached _pccsCache
|| !_pccsCache)
{
pccs = fc().GetCcs(hdc, pdi, pCF);
if(pccs)
{
if(CVM_UNINITED != por->_bConvertMode)
{
pccs->GetBaseCcs()->_bConvertMode = por->_bConvertMode; // BUGBUG (cthrash) Is this right?
}
_pCFCache = (!por->_fMustDeletePcf ? pCF : NULL);
if(_pccsCache)
{
_pccsCache->Release();
}
_pccsCache = pccs;
}
else
{
AssertSz(0, "CCcs failed to be created.");
goto Cleanup;
}
}
Assert(pCF == _pCFCache || por->_fMustDeletePcf);
pccs = _pccsCache;
if(fDontFontLink)
{
goto Cleanup;
}
// Check if the _pccsCache covers the sid of the text run
Assert(por->_lsCharProps.fGlyphBased ||
por->_sid==(!_pCFLi?DWORD(por->_ptp->Sid()):sidAsciiLatin));
sidText = por->_sid;
AssertSz(sidText!=sidMerge, "Script IDs should have been merged.");
{
CBaseCcs* pBaseCcs = _pccsCache->GetBaseCcs();
if(sidText < sidLim)
{
if(sidText == sidDefault)
{
fCheckAltFont = FALSE; // Assume the author picked a font containing the glyph. Don't fontlink.
}
else
{
fCheckAltFont = (pBaseCcs->_sids&ScriptBit(sidText)) == sidsNotSet;
}
}
else
{
Assert(sidText==sidSurrogateA
|| sidText==sidSurrogateB
|| sidText==sidAmbiguous
|| sidText==sidEUDC
|| sidText==sidHalfWidthKana);
if(sidText == sidAmbiguous)
{
fCheckAltFont = DisambiguateScriptId(hdc, pBaseCcs, por, &sidAlt, &bCharSetAlt);
}
else if(sidText == sidEUDC)
{
const UINT uiFamilyCodePage = pdi->_pDoc->GetFamilyCodePage();
SCRIPT_ID sidForPUA;
fCheckAltFont = ShouldSwitchFontsForPUA(hdc, uiFamilyCodePage, pBaseCcs, pCF, &sidForPUA);
if(fCheckAltFont)
{
sidText = sidAlt = sidAmbiguous; // to prevent call to UnUnifyHan
bCharSetAlt = DefaultCharSetFromScriptAndCodePage(sidForPUA, uiFamilyCodePage);
}
}
else
{
fCheckAltFont = (pBaseCcs->_sids&ScriptBit(sidText)) == sidsNotSet;
}
}
}
if(!fCheckAltFont)
{
goto Cleanup;
}
// Check to see if the _pccsAltCache covers the sid of the text run
{
const UINT uiFamilyCodePage = pdi->_pDoc->GetFamilyCodePage();
if(sidText == sidHan)
{
sidAlt = UnUnifyHan(hdc, uiFamilyCodePage, pCF->_lcid, por);
bCharSetAlt = DefaultCharSetFromScriptAndCodePage(sidAlt, uiFamilyCodePage);
}
else if(sidText != sidAmbiguous)
{
SCRIPT_IDS sidsFace = fc().EnsureScriptIDsForFont(hdc, _pccsCache->GetBaseCcs(), FALSE);
bCharSetAlt = DefaultCharSetFromScriptAndCodePage(sidText, uiFamilyCodePage);
if((sidsFace&ScriptBit(sidText)) == sidsNotSet)
{
sidAlt = sidText; // current face does not cover
}
else
{
sidAlt = sidAmbiguous; // current face does cover
}
}
fPickNewAltFont = !_pccsAltCache || _pCFAltCache!=pCF
|| _pccsAltCache->GetBaseCcs()->_bCharSet!=bCharSetAlt;
}
// Looks like we need to pick a new alternate font
if(!fPickNewAltFont)
{
Assert(_pccsAltCache);
pccs = _pccsAltCache;
}
else
{
CCharFormat cfAlt = *pCF;
BOOL fNewlyFetchedFromRegistry;
// sidAlt of sidAmbiguous at this point implies we have the right facename,
// but the wrong GDI charset. Otherwise, lookup in the registry/mlang to
// determine an appropriate font for the given script id.
if(sidAlt != sidAmbiguous)
{
fNewlyFetchedFromRegistry = SelectScriptAppropriateFont(sidAlt, bCharSetAlt, pdi->_pDoc, &cfAlt);
}
else
{
fNewlyFetchedFromRegistry = FALSE;
cfAlt._bCharSet = bCharSetAlt;
cfAlt._bCrcFont = cfAlt.ComputeFontCrc();
}
// NB (cthrash) sidAltText may differ from sidText in the case where
// sidText is sidHan. SelectScriptAppropriateFont makes a reasonable
// effort to pick the optimal script amongst the unified Han scripts.
pccs = fc().GetFontLinkCcs(hdc, pdi, pccs, &cfAlt);
if(pccs)
{
// Remember the pCF from which the pccs was derived.
_pCFAltCache = pCF;
if(_pccsAltCache)
{
_pccsAltCache->Release();
}
_pccsAltCache = pccs;
if(fNewlyFetchedFromRegistry)
{
// It's possible that the font signature for the given font would indicate
// that it does not have the necessary glyph coverage for the sid in question.
// Nevertheless, the user has specifically requested this face for the sid,
// so we honor his/her choice and assume that the glyphs are covered.
ForceScriptIdOnUserSpecifiedFont(pdi->_pDoc->_pOptionSettings, sidAlt);
}
pccs->GetBaseCcs()->_sids |= ScriptBit(sidAlt);
}
}
Cleanup:
Assert(!pccs || pccs->GetHDC()==hdc);
return pccs;
}
//-----------------------------------------------------------------------------
//
// Function: LineHasNoText
//
// Synopsis: Utility function which returns TRUE if there is no text (only nested
// layout or antisynth'd goop) on the line till the specified cp.
//
// Returns: BOOL
//
//-----------------------------------------------------------------------------
BOOL CLineServices::LineHasNoText(LONG cp)
{
LONG fRet = TRUE;
for(COneRun* por=_listCurrent._pHead; por; por=por->_pNext)
{
if(por->Cp() >= cp)
{
break;
}
if(!por->IsNormalRun())
{
continue;
}
if(por->_lsCharProps.idObj == LSOBJID_TEXT)
{
fRet = FALSE;
break;
}
}
return fRet;
}
//-----------------------------------------------------------------------------
//
// Function: CheckSetTables (member)
//
// Synopsis: Set appropriate tables for Line Services
//
// Returns: HRESULT
//
//-----------------------------------------------------------------------------
HRESULT CLineServices::CheckSetTables()
{
LSERR lserr;
lserr = CheckSetBreaking();
if(lserr==lserrNone && _pPFFirst->_uTextJustify>styleTextJustifyInterWord)
{
lserr = CheckSetExpansion();
if(lserr == lserrNone)
{
lserr = CheckSetCompression();
}
}
RRETURN(HRFromLSERR(lserr));
}
//-----------------------------------------------------------------------------
//
// Function: HRFromLSERR (global)
//
// Synopsis: Utility function to converts a LineServices return value
// (LSERR) into an appropriate HRESULT.
//
// Returns: HRESULT
//
//-----------------------------------------------------------------------------
HRESULT HRFromLSERR(LSERR lserr)
{
HRESULT hr;
switch(lserr)
{
case lserrNone: hr = S_OK; break;
case lserrOutOfMemory: hr = E_OUTOFMEMORY; break;
default: hr = E_FAIL; break;
}
return hr;
}
//-----------------------------------------------------------------------------
//
// Function: LSERRFromHR (global)
//
// Synopsis: Utility function to converts a HRESULT into an appropriate
// LineServices return value (LSERR).
//
// Returns: LSERR
//
//-----------------------------------------------------------------------------
LSERR LSERRFromHR(HRESULT hr)
{
LSERR lserr;
if(SUCCEEDED(hr))
{
lserr = lserrNone;
}
else
{
switch(hr)
{
default:
AssertSz(FALSE, "Unmatched error code; returning lserrOutOfMemory");
case E_OUTOFMEMORY:
lserr = lserrOutOfMemory;
break;
}
}
return lserr;
}
// Since lnobj is worthless as far as we're concerned, we just point it back
// to the ilsobj. lnobj's are instantiated once per object type per line.
typedef struct lnobj
{
PILSOBJ pilsobj;
} LNOBJ;
LSERR WINAPI CLineServices::CreateILSObj(
PLSC plsc, // IN
PCLSCBK plscbk, // IN
DWORD idObj, // IN
PILSOBJ* ppilsobj) // OUT
{
LSTRACE(CreateILSObj);
switch(idObj)
{
case LSOBJID_EMBEDDED:
*ppilsobj= (PILSOBJ)(new CEmbeddedILSObj(this, plscbk));
break;
case LSOBJID_NOBR:
*ppilsobj= (PILSOBJ)(new CNobrILSObj(this, plscbk));
break;
default:
AssertSz(0, "Unknown lsobj_id");
}
return *ppilsobj?lserrNone:lserrOutOfMemory;
}
//-----------------------------------------------------------------------------
//
// Function: TruncateChunk (static member, LS callback)
//
// Synopsis: From LS docs: Purpose To obtain the exact position within
// a chunk where the chunk crosses the right margin. A chunk is
// a group of contiguous LS objects which are of the same type.
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::TruncateChunk(/*[in]*/PCLOCCHNK plocchnk, /*[out]*/PPOSICHNK pposichnk)
{
LSTRACE(TruncateChunk);
LSERR lserr = lserrNone;
long idobj;
if(plocchnk->clschnk == 1)
{
idobj = 0;
}
else
{
long urColumnMax;
long urTotal;
OBJDIM objdim;
urColumnMax = PDOBJ(plocchnk->plschnk[0].pdobj)->GetPLS()->_xWrappingWidth;
urTotal = plocchnk->lsfgi.urPen;
Assert(urTotal <= urColumnMax);
for(idobj=0; idobj<(long)plocchnk->clschnk; idobj++)
{
PDOBJ pdobj = (PDOBJ) plocchnk->plschnk[idobj].pdobj;
lserr = pdobj->QueryObjDim(&objdim);
if(lserr != lserrNone)
{
goto Cleanup;
}
urTotal += objdim.dur;
if(urTotal > urColumnMax)
{
break;
}
}
Assert(urTotal > urColumnMax);
Assert(idobj < (long)plocchnk->clschnk);
}
// Tell it which chunk didn't fit.
pposichnk->ichnk = idobj;
// Tell it which cp inside this chunk the break occurs at.
// In our case, it's always an all-or-nothing proposition. So include the whole dobj
pposichnk->dcp = plocchnk->plschnk[idobj].dcp;
Trace3("Truncate(cchnk=%d cpFirst=%d) -> ichnk=%d\n",
plocchnk->clschnk,
plocchnk->plschnk->cpFirst,
idobj);
Cleanup:
return lserr;
}
LSERR WINAPI CLineServices::ForceBreakChunk(
PCLOCCHNK plocchnk, // IN
PCPOSICHNK pposichnk, // IN
PBRKOUT pbrkout) // OUT
{
LSTRACE(ForceBreakChunk);
Trace1("CLineServices::ForceBreakChunk(ichnk=%d)\n", pposichnk->ichnk);
ZeroMemory(pbrkout, sizeof(BRKOUT));
pbrkout->fSuccessful = fTrue;
if(plocchnk->lsfgi.fFirstOnLine&&pposichnk->ichnk==0
|| pposichnk->ichnk==ichnkOutside)
{
PDOBJ pdobj = (PDOBJ) plocchnk->plschnk[0].pdobj;
pbrkout->posichnk.dcp = plocchnk->plschnk[0].dcp;
pdobj->QueryObjDim(&pbrkout->objdim);
}
else
{
pbrkout->posichnk.ichnk = pposichnk->ichnk;
pbrkout->posichnk.dcp = 0;
}
return lserrNone;
}
//-----------------------------------------------------------------------------
//
// Function: DiscardOneRuns
//
// Synopsis: Removes all the runs from the current list and gives them
// back to the free list.
//
// Returns: Nothing
//
//-----------------------------------------------------------------------------
void CLineServices::DiscardOneRuns()
{
COneRun* pFirst = _listCurrent._pHead;
COneRun* pTail = _listCurrent._pTail;
if(pFirst)
{
_listCurrent.SpliceOut(pFirst, pTail);
_listFree.SpliceIn(pFirst);
}
}
//-----------------------------------------------------------------------------
//
// Function: AdvanceOneRun
//
// Synopsis: This is our primary function to get the next run at the
// frontier.
//
// Returns: The one run.
//
//-----------------------------------------------------------------------------
COneRun* CLineServices::AdvanceOneRun(LONG lscp)
{
COneRun* por;
BOOL fRet = FALSE;
// Get the memory for a one run
por = _listFree.GetFreeOneRun(NULL);
if(!por)
{
goto Cleanup;
}
// Setup the lscp...
por->_lscpBase = lscp;
if(!_treeInfo._fHasNestedElement)
{
// If we have run out of characters in the tree pos then we need
// advance to the next tree pos.
if(!_treeInfo._cchRemainingInTreePos)
{
if(!_treeInfo.AdvanceTreePos())
{
goto Cleanup;
}
por->_fCannotMergeRuns = TRUE;
}
// If we have run out of characters in the text then we need
// to advance to the next text pos
if(!_treeInfo._cchValid)
{
if(!_treeInfo.AdvanceTxtPtr())
{
goto Cleanup;
}
por->_fCannotMergeRuns = TRUE;
}
Assert(_treeInfo._lscpFrontier == lscp);
}
// If we have a nested run owner then the number of characters given to
// the run are the number of chars in that nested run owner. Else the
// number of chars is the minimum of the chars in the tree pos and that
// in the text node.
if(!_treeInfo._fHasNestedElement)
{
por->_lscch = min(_treeInfo._cchRemainingInTreePos, _treeInfo._cchValid);
if(_lsMode == LSMODE_MEASURER)
{
por->_lscch = min(por->_lscch, MAX_CHARS_FETCHRUN_RETURNS);
}
else
{
// NB Additional 5 chars corresponds to a fudge factor.
por->_lscch = min(por->_lscch, LONG(_pMeasurer->_li._cch+5));
}
AssertSz(por->_lscch>0, "Cannot measure 0 or -ve chars!");
por->_pchBase = _treeInfo._pchFrontier;
}
else
{
// NOTE(SujalP): The number of characters _returned_ to LS will not be
// _lscch. We will catch this case in FetchRun and feed only a single
// char with the pch pointing to a valid location so that LS does not
// choke on it.
CElement* pElemNested = _treeInfo._ptpFrontier->Branch()->Element();
por->_lscch = GetNestedElementCch(pElemNested);
por->_fCannotMergeRuns = TRUE;
por->_pchBase = NULL;
por->_fCharsForNestedElement = TRUE;
por->_fCharsForNestedLayout = _treeInfo._fHasNestedLayout;
por->_fCharsForNestedRunOwner = _treeInfo._fHasNestedRunOwner;
}
// Update all the other information in the one run
por->_chSynthsBefore = _treeInfo._chSynthsBefore;
por->_lscchOriginal = por->_lscch;
por->_pchBaseOriginal = por->_pchBase;
por->_ptp = _treeInfo._ptpFrontier;
por->SetSidFromTreePos(por->_ptp);
por->_pCF = (CCharFormat*)_treeInfo._pCF;
por->_fInnerCF = _treeInfo._fInnerCF;
por->_pPF = _treeInfo._pPF;
por->_fInnerPF = _treeInfo._fInnerPF;
por->_pFF = _treeInfo._pFF;
// At last let us go and move out frontier
_treeInfo.AdvanceFrontier(por);
fRet = TRUE;
Cleanup:
if(!fRet && por)
{
delete por;
por = NULL;
}
return por;
}
//-----------------------------------------------------------------------------
//
// Function: CanMergeTwoRuns
//
// Synopsis: Decided if the 2 runs can be merged into one
//
// Returns: BOOL
//
//-----------------------------------------------------------------------------
BOOL CLineServices::CanMergeTwoRuns(COneRun* por1, COneRun* por2)
{
BOOL fRet;
if(por1->_dwProps
|| por2->_dwProps
|| por1->_pCF!=por2->_pCF
|| por1->_bConvertMode!=por2->_bConvertMode
|| por1->_ccvBackColor.GetRawValue()!=por2->_ccvBackColor.GetRawValue()
|| por1->_pComplexRun
|| por2->_pComplexRun
|| (por1->_pchBase+por1->_lscch!=por2->_pchBase) // happens with passwords.
)
{
fRet = FALSE;
}
else
{
fRet = TRUE;
}
return fRet;
}
//-----------------------------------------------------------------------------
//
// Function: MergeIfPossibleIntoCurrentList
//
//-----------------------------------------------------------------------------
COneRun* CLineServices::MergeIfPossibleIntoCurrentList(COneRun* por)
{
COneRun* pTail = _listCurrent._pTail;
if(pTail!=NULL && CanMergeTwoRuns(pTail, por))
{
Assert(pTail->_lscpBase+pTail->_lscch == por->_lscpBase);
Assert(pTail->_pchBase+pTail->_lscch == por->_pchBase);
Assert(!pTail->_fNotProcessedYet); // Cannot merge into a run not yet processed
pTail->_lscch += por->_lscch;
pTail->_lscchOriginal += por->_lscchOriginal;
// Since we merged our por into the previous one, let us put the
// present one back on the free list.
_listFree.SpliceIn(por);
por = pTail;
}
else
{
_listCurrent.SpliceInAfterMe(pTail, por);
}
return por;
}
//-----------------------------------------------------------------------------
//
// Function: SplitRun
//
// Synopsis: Splits a single run into 2 runs. The original run remains
// por and the number of chars it has is cchSplitTill, while
// the new split off run is the one which is returned and the
// number of characters it has is cchOriginal-cchSplit.
//
// Returns: The 2nd run (which we got from cutting up por)
//
//-----------------------------------------------------------------------------
COneRun* CLineServices::SplitRun(COneRun* por, LONG cchSplitTill)
{
LONG cchDelta;
// Create an exact copy of the run
COneRun* porNew = _listFree.GetFreeOneRun(por);
if(!porNew)
{
goto Cleanup;
}
por->_lscch = cchSplitTill;
cchDelta = por->_lscchOriginal - por->_lscch;
por->_lscchOriginal = por->_lscch;
Assert(por->_lscch);
// Then setup the second run so that it can be spliced in properly
porNew->_pPrev = porNew->_pNext = NULL;
porNew->_lscpBase += por->_lscch;
porNew->_lscch = cchDelta;
porNew->_lscchOriginal = porNew->_lscch;
porNew->_pchBase = por->_pchBaseOriginal + cchSplitTill;
porNew->_pchBaseOriginal = porNew->_pchBase;
porNew->_fGlean = TRUE;
porNew->_fNotProcessedYet = TRUE;
Assert(porNew->_lscch);
Cleanup:
return porNew;
}
//-----------------------------------------------------------------------------
//
// Function: AttachOneRunToCurrentList
//
// Note: We always return the pointer to the run which is contains the
// lscp for por. Consider the following cases:
// 1) No splitting:
// If merged then return the ptr of the run we merged por into
// If not merged then return por itself
// 2) Splitting:
// Split into por and porNew
// If por is merged then return ptr of the run we merged por into
// If not morged then return por itself
// Just attach/merge porNew
//
// Returns: The attached/merged-into run.
//
//-----------------------------------------------------------------------------
COneRun* CLineServices::AttachOneRunToCurrentList(COneRun* por)
{
COneRun* porRet;
Assert(por);
Assert(por->_lscchOriginal >= por->_lscch);
if(por->_lscchOriginal > por->_lscch)
{
Assert(por->IsNormalRun());
COneRun* porNew = SplitRun(por, por->_lscch);
if(!porNew)
{
porRet = NULL;
goto Cleanup;
}
// Then splice in the current run and then the one we split out.
porRet = MergeIfPossibleIntoCurrentList(por);
// can replace this with a SpliceInAfterMe
MergeIfPossibleIntoCurrentList(porNew);
}
else
{
porRet = MergeIfPossibleIntoCurrentList(por);
}
Cleanup:
return porRet;
}
//-----------------------------------------------------------------------------
//
// Function: AppendSynth
//
// Synopsis: Appends a synthetic into the current one run store.
//
// Returns: LSERR
//
//-----------------------------------------------------------------------------
LSERR CLineServices::AppendSynth(COneRun* por, SYNTHTYPE synthtype, COneRun** pporOut)
{
COneRun* pTail = _listCurrent._pTail;
LONG lscp = por->_lscpBase;
LSERR lserr = lserrNone;
BOOL fAdd;
LONG lscpLast;
// Atmost one node can be un-processed
if(pTail && pTail->_fNotProcessedYet)
{
pTail = pTail->_pPrev;
}
if(pTail)
{
lscpLast = pTail->_lscpBase + (pTail->IsAntiSyntheticRun()?0:pTail->_lscch);
Assert(lscp <= lscpLast);
if(lscp == lscpLast)
{
fAdd = TRUE;
}
else
{
fAdd = FALSE;
while(pTail)
{
Assert(pTail->_fNotProcessedYet == FALSE);
if(pTail->_lscpBase == lscp)
{
Assert(pTail->IsSyntheticRun());
*pporOut = pTail;
break;
}
pTail = pTail->_pNext;
}
AssertSz(*pporOut, "Cannot find the synthetic char which should have been there!");
}
}
else
{
fAdd = TRUE;
}
if(fAdd)
{
COneRun* porNew;
porNew = _listFree.GetFreeOneRun(por);
if(!porNew)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
// Tell our clients which run the synthetic character was added
*pporOut = porNew;
// Let us change our synthetic run
porNew->MakeRunSynthetic();
porNew->FillSynthData(synthtype);
_listCurrent.SpliceInAfterMe(pTail, porNew);
// Now change the original one run itself
por->_lscpBase++; // for the synthetic character
por->_chSynthsBefore++;
// Update the tree info
_treeInfo._lscpFrontier++;
_treeInfo._chSynthsBefore++;
}
Cleanup:
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: AppendAntiSynthetic
//
// Synopsis: Appends a anti-synthetic run
//
// Returns: LSERR
//
//-----------------------------------------------------------------------------
LSERR CLineServices::AppendAntiSynthetic(COneRun* por)
{
LSERR lserr = lserrNone;
LONG cch = por->_lscch;
Assert(por->IsAntiSyntheticRun());
Assert(por->_lscch == por->_lscchOriginal);
// If the run is not in the list yet, please go and add it to the list
if(por->_pNext==NULL && por->_pPrev==NULL)
{
_listCurrent.SpliceInAfterMe(_listCurrent._pTail, por);
}
// This run has now been processed
por->_fNotProcessedYet = FALSE;
// Update the tree info
_treeInfo._lscpFrontier -= cch;
_treeInfo._chSynthsBefore -= cch;
// Now change all the subsequent runs in the list
por = por->_pNext;
while(por)
{
por->_lscpBase -= cch;
por->_chSynthsBefore -= cch;
por = por->_pNext;
}
return lserr;
}
//-----------------------------------------------------------------------------
//
// Member: CLineServices::TerminateLine
//
// Synopsis: Close any open LS objects. This will add end of object
// characters to the synthetic store for any open LS objects and
// also optionally add a synthetic WCH_SECTIONBREAK (fAddEOS).
// If it adds any synthetic character it will set *psynthAdded to
// the type of the first synthetic character added. FetchRun()
// callers should be sure to check the *psynthAdded value; if it
// is not SYNTHTYPE_NONE then the run should be filled using
// FillSynthRun() and returned to Line Services.
//
//-----------------------------------------------------------------------------
LSERR CLineServices::TerminateLine(COneRun* por, TL_ENDMODE tlEndMode, COneRun** pporOut)
{
LSERR lserr = lserrNone;
SYNTHTYPE synthtype;
COneRun* porOut = NULL;
COneRun* porRet;
COneRun* pTail = _listCurrent._pTail;
if(pTail)
{
int aObjRef[LSOBJID_COUNT];
// Zero out the object refcount array.
ZeroMemory(aObjRef, LSOBJID_COUNT*sizeof(int));
// End any open LS objects.
for(; pTail; pTail=pTail->_pPrev)
{
if(!pTail->_fIsStartOrEndOfObj)
{
continue;
}
synthtype = pTail->_synthType;
WORD idObj = s_aSynthData[synthtype].idObj;
// If this synthetic character starts or stops an LS object...
if(idObj != idObjTextChp)
{
// Adjust the refcount up or down depending on whether the object
// is started or ended.
if(s_aSynthData[synthtype].fObjEnd)
{
aObjRef[idObj]--;
}
if(s_aSynthData[synthtype].fObjStart)
{
aObjRef[idObj]++;
}
// If the refcount is positive we have an unclosed object (we're
// walking backward). Close it.
if(aObjRef[idObj] > 0)
{
synthtype = s_aSynthData[synthtype].typeEndObj;
Assert(synthtype!=SYNTHTYPE_NONE &&
s_aSynthData[synthtype].idObj==idObj &&
s_aSynthData[synthtype].fObjStart==FALSE &&
s_aSynthData[synthtype].fObjEnd==TRUE);
// If we see an open ruby object but the ruby main text
// has not been closed yet, then we must close it here
// before we can close off the ruby object by passing
// and ENDRUBYTEXT to LS.
if(idObj==LSOBJID_RUBY && _fIsRuby && !_fIsRubyText)
{
synthtype = SYNTHTYPE_ENDRUBYMAIN;
_fIsRubyText = TRUE;
}
// Be sure to inc lscp.
// BUGBUG (mikejoch) We should really be adjusting por here. As
// it is we aren't necessarily pointing at the correct run.
// This should be fixed when por positioning is fixed.
lserr = AppendSynth(por, synthtype, &porRet);
if(lserr != lserrNone)
{
// NOTE(SujalP): The linker (even in debug build) will
// not link in DumpList() since it is not called anywhere.
// This call here forces the linker to link in the DumpList
// function, so that we can use it during debugging.
goto Cleanup;
}
// Terminate line needs to return the pointer to the run
// belonging to the first synthetic character added.
if(!porOut)
{
porOut = porRet;
}
aObjRef[idObj]--;
Assert(aObjRef[idObj] == 0);
}
}
}
}
if(tlEndMode != TL_ADDNONE)
{
// Add a synthetic section break character. Note we add a section
// break character as this has no width.
synthtype = tlEndMode==TL_ADDLBREAK ? SYNTHTYPE_LINEBREAK : SYNTHTYPE_SECTIONBREAK;
lserr = AppendSynth(por, synthtype, &porRet);
if(lserr != lserrNone)
{
goto Cleanup;
}
porRet->_fNoTextMetrics = TRUE;
if(tlEndMode == TL_ADDLBREAK)
{
porRet->_fMakeItASpace = TRUE;
if(GetRenderer())
{
lserr = SetRenderingHighlights(porRet);
if(lserr != lserrNone)
{
goto Cleanup;
}
}
}
if(!porOut)
{
porOut = porRet;
}
}
// Lock up the synthetic character store. We've terminated the line, so we
// don't want anyone adding any more synthetics.
FreezeSynth();
Cleanup:
*pporOut = porOut;
return lserr;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::IsSynthEOL
//
// Synopsis: Determines if there is some synthetic end of line mark at the
// end of the synthetic array.
//
// Returns: TRUE if the synthetic array is terminated by a synthetic EOL
// mark; otherwise FALSE.
//
//-----------------------------------------------------------------------------
BOOL CLineServices::IsSynthEOL()
{
COneRun* pTail = _listCurrent._pTail;
SYNTHTYPE synthEnd = SYNTHTYPE_NONE;
if(pTail != NULL)
{
if(pTail->_fNotProcessedYet)
{
pTail = pTail->_pPrev;
}
while(pTail)
{
if(pTail->IsSyntheticRun())
{
synthEnd = pTail->_synthType;
break;
}
pTail = pTail->_pNext;
}
}
return (synthEnd==SYNTHTYPE_SECTIONBREAK
|| synthEnd==SYNTHTYPE_ENDPARA1
|| synthEnd==SYNTHTYPE_ALTENDPARA);
}
//-----------------------------------------------------------------------------
//
// Function: CPFromLSCPCore
//
//-----------------------------------------------------------------------------
LONG CLineServices::CPFromLSCPCore(LONG lscp, COneRun** ppor)
{
COneRun* por = _listCurrent._pHead;
LONG cp = lscp;
while(por)
{
if(por->IsAntiSyntheticRun())
{
cp += por->_lscch;
}
else if(lscp>=por->_lscpBase && lscp<por->_lscpBase+por->_lscch)
{
break;
}
else if(por->IsSyntheticRun())
{
cp--;
}
por = por->_pNext;
}
if(ppor)
{
*ppor = por;
}
return cp;
}
//-----------------------------------------------------------------------------
//
// Function: LSCPFromCPCore
//
// FUTURE(SujalP): The problem with this function is that it is computing lscp
// and is using it to terminate the loop. Probably the better
// approach would be to use Cp's to determine termination
// conditions. That would be a radical change and we leave
// that to be fixed in IE5+.
//
// Another change which we need to make is that we do not
// inc/dec the lscp (and cp in the function above) as we
// march along the linked list. All the loop has to do is
// ensure that we end up with the correct COneRun and from
// that it should be pretty easy for us to determine the
// lscp/cp to be returned.
//
//-----------------------------------------------------------------------------
LONG CLineServices::LSCPFromCPCore(LONG cp, COneRun** ppor)
{
COneRun* por = _listCurrent._pHead;
LONG lscp = cp;
while(por)
{
if(lscp>=por->_lscpBase && lscp<por->_lscpBase+por->_lscch)
{
break;
}
if(por->IsAntiSyntheticRun())
{
lscp -= por->_lscch;
}
else if(por->IsSyntheticRun())
{
lscp++;
}
por = por->_pNext;
}
// If we have stopped at an anti-synthetic it means that the cp is within this
// run. This implies that the lscp is the same for all the cp's in this run.
if(por && por->IsAntiSyntheticRun())
{
Assert(por->WantsLSCPStop());
lscp = por->_lscpBase;
}
else
{
while(por && !por->WantsLSCPStop())
{
por = por->_pNext;
lscp++;
}
}
Assert(!por || por->WantsLSCPStop());
// It is possible that we can return a NULL por if there is a semi-valid
// lscp that could be returned.
if(ppor)
{
*ppor = por;
}
return lscp;
}
//-----------------------------------------------------------------------------
//
// Function: FindOneRun
//
// Synopsis: Given an lscp, find the one run if it exists in the current list
//
// Returns: The one run
//
//-----------------------------------------------------------------------------
COneRun* CLineServices::FindOneRun(LSCP lscp)
{
COneRun* por = _listCurrent._pTail;
if(!por)
{
por = NULL;
}
else if(lscp >= por->_lscpBase+por->_lscch)
{
por = NULL;
}
else
{
while(por)
{
if(lscp>=por->_lscpBase && lscp<por->_lscpBase+por->_lscch)
{
break;
}
por = por->_pPrev;
}
}
return por;
}
//-----------------------------------------------------------------------------
//
// Function: FindPrevLSCP (member)
//
// Synopsis: Find the LSCP of the first actual character to preceed lscp.
// Synthetic characters are ignored.
//
// Returns: LSCP of the character prior to lscp, ignoring synthetics. If no
// characters preceed lscp, or lscp is beyond the end of the line,
// then lscp itself is returned. Also returns a flag indicating if
// any reverse objects exist between these two LSCPs.
//
//-----------------------------------------------------------------------------
LSCP CLineServices::FindPrevLSCP(LSCP lscp, BOOL* pfReverse)
{
COneRun* por;
LSCP lscpPrev = lscp;
BOOL fReverse = FALSE;
// Find the por matching this lscp.
por = FindOneRun(lscp);
// If lscp was outside the limits of the line just bail out.
if(por == NULL)
{
goto cleanup;
}
Assert(lscp>=por->_lscpBase && lscp<por->_lscpBase+por->_lscch);
if(por->_lscpBase < lscp)
{
// We're in the midst of a run. lscpPrev is just lscp - 1.
lscpPrev--;
goto cleanup;
}
// Loop over the pors
while(por->_pPrev != NULL)
{
por = por->_pPrev;
// If the por is a reverse object set fReverse.
if(por->IsSyntheticRun() && s_aSynthData[por->_synthType].idObj==LSOBJID_REVERSE)
{
fReverse = TRUE;
}
// If the por is a text run then find the last lscp in it and break.
if(por->IsNormalRun())
{
lscpPrev = por->_lscpBase + por->_lscch - 1;
break;
}
}
cleanup:
Assert(lscpPrev <= lscp);
if(pfReverse != NULL)
{
// If we hit a reverse object but lscpPrev == lscp, then the reverse
// object preceeds the first character in the line. In this case there
// isn't actually a reverse object between the two LSCPs, since the
// LSCPs are the same.
*pfReverse = (fReverse && lscpPrev<lscp);
}
return lscpPrev;
}
//-----------------------------------------------------------------------------
//
// Function: FetchRun (member, LS callback)
//
// Synopsis: This is a key callback from lineservices. LS calls this method
// when performing LsCreateLine. Here it is asking for a run, or
// an embedded object -- whatever appears next in the stream. It
// passes us cp, and CLineServices (which we fool C++ into getting
// to be the object of this method). We return a bunch of stuff
// about the next thing to put in the stream.
//
// Returns: lserrNone
// lserrOutOfMemory
//
//-----------------------------------------------------------------------------
LSERR WINAPI CLineServices::FetchRun(
LSCP lscp, // IN
LPCWSTR* ppwchRun, // OUT
DWORD* pcchRun, // OUT
BOOL* pfHidden, // OUT
PLSCHP plsChp, // OUT
PLSRUN* pplsrun ) // OUT
{
LSERR lserr = lserrNone;
COneRun* por;
COneRun* pTail;
LONG cchDelta;
COneRun* porOut;
ZeroMemory(plsChp, sizeof(LSCHP)); // Otherwise, we're gonna forget and leave some bits on that we shouldn't.
*pfHidden = FALSE;
if(IsAdornment())
{
por = GetRenderer()->FetchLIRun(lscp, ppwchRun, pcchRun);
CHPFromCF(por, por->GetCF());
goto Cleanup;
}
pTail = _listCurrent._pTail;
// If this was already cached before
if(lscp < _treeInfo._lscpFrontier)
{
Assert(pTail);
Assert(_treeInfo._lscpFrontier == pTail->_lscpBase+pTail->_lscch);
while(pTail)
{
if(lscp >= pTail->_lscpBase)
{
// Should never get a AS run since the actual run will the run
// following it and we should have found that one before since
// we are looking from the end.
Assert(!pTail->IsAntiSyntheticRun());
// We should be in this run since 1) if check above 2) walking backwards
AssertSz(lscp<pTail->_lscpBase+pTail->_lscch, "Inconsistent linked list");
// Gotcha. Got a previously cached sucker
por = pTail;
Assert(por->_lscchOriginal == por->_lscch);
cchDelta = lscp - por->_lscpBase;
if(por->_fGlean)
{
// We never have to reglean a synth or an antisynth run
Assert(por->IsNormalRun());
// NOTE(SujalP+MikeJoch):
// This can never happen because ls always fetches sequentially.
// If this happened it would mean that we were asked to fetch
// part of the run which was not gleaned. Hence the part before
// this one was not gleaned and hence not fetched. This violates
// the fact that LS will fetch all chars before the present one
// atleast once before it fetches the present one.
AssertSz(cchDelta==0, "CAN NEVER HAPPEN!!!!");
for(;;)
{
// We still have to be interested in gleaning
Assert(por->_fGlean);
// We will should never have a anti-synthetic run here
Assert(!por->IsAntiSyntheticRun());
// Now go and glean information into the run ...
lserr = GleanInfoFromTheRun(por, &porOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
// Did the run get marked as Antisynth. If so then
// we need to ignore that run and go onto the next one.
if(por->IsAntiSyntheticRun())
{
Assert(por == porOut);
// The run was marked as an antisynthetic run. Be sure
// that no splitting was requested...
Assert(por->_lscch == por->_lscchOriginal);
Assert(por->_fNotProcessedYet);
AppendAntiSynthetic(por);
por = por->_pNext;
}
else
{
break;
}
// If we ran out of already cached runs (all the cached runs
// turned themselves into anti-synthetics) then we need to
// advance the frontier and fetch new runs from the story.
if(por == NULL)
{
goto NormalProcessing;
}
}
// The only time a different run is than the one passed in is returned is
// when the run has not been procesed as yet, and during processing we
// notice that to process it we need to append a synthetic character.
// The case to handle here is:
// <table><tr><td nowrap>abcd</td></tr></table>
Assert(porOut==por || por->_fNotProcessedYet);
if(porOut != por)
{
// If we added a synthetic, then the present run should not be split!
Assert(por->_lscch == por->_lscchOriginal);
Assert(por->_fNotProcessedYet);
// Remember we have to re-glean the information the next time we come around.
// However, we will not make the decision to append a synth that time since
// the synth has already been added this time and hence will fall into the
// else clause of this if and everything should be fine.
//
// DEPENDING ON WHETHER porOut WAS ADDED IN THE PRESENT GLEAN
// OR WAS ALREADY IN THE LIST, WE EITHER RETURN porOut OR por
por->_fGlean = TRUE;
por = porOut;
}
else
{
por->_fNotProcessedYet = FALSE;
// Did gleaning give us reason to further split the run?
if(por->_lscchOriginal > por->_lscch)
{
COneRun* porNew = SplitRun(por, por->_lscch);
if(!porNew)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
_listCurrent.SpliceInAfterMe(por, porNew);
}
}
por->_fGlean = FALSE;
cchDelta = 0;
}
// This is our quickest way outta here! We had already done all
// the hard work before so just reuse it here
*ppwchRun = por->_pchBase + cchDelta;
*pcchRun = por->_lscch - cchDelta;
goto Cleanup;
}
pTail = pTail->_pPrev;
} // while
AssertSz(0, "Should never come here!");
} // if
NormalProcessing:
for(;;)
{
por = AdvanceOneRun(lscp);
if(!por)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
lserr = GleanInfoFromTheRun(por, &porOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
Assert(porOut);
if(por->IsAntiSyntheticRun())
{
Assert(por == porOut);
AppendAntiSynthetic(por);
}
else
{
break;
}
}
if(por != porOut)
{
*ppwchRun = porOut->_pchBase;
*pcchRun = porOut->_lscch;
por->_fGlean = TRUE;
por->_fNotProcessedYet = TRUE;
Assert(por->_lscch == por->_lscchOriginal); // be sure no splitting takes place
Assert(porOut->_fCannotMergeRuns);
Assert(porOut->IsSyntheticRun());
if(por->_lscch)
{
COneRun* porLastSynth = porOut;
COneRun* porTemp = porOut;
// GleanInfoFromThrRun can add multiple synthetics to the linked
// list, in which case we will have to jump across all of them
// before we can add por to the list. (We need to add the por
// because the frontier has already moved past that run).
while(porTemp && porTemp->IsSyntheticRun())
{
porLastSynth = porTemp;
porTemp = porTemp->_pNext;
}
// FUTURE: porLastSynth should equal pTail. Add a check for this, and
// remove above while loop.
_listCurrent.SpliceInAfterMe(porLastSynth, por);
}
else
{
// Run not needed, please do not leak memory
_listFree.SpliceIn(por);
}
// Finally remember that por is the run which we give to LS
por = porOut;
}
else
{
por->_fNotProcessedYet = FALSE;
*ppwchRun = por->_pchBase;
*pcchRun = por->_lscch;
por = AttachOneRunToCurrentList(por);
if(!por)
{
lserr = lserrOutOfMemory;
goto Cleanup;
}
}
Cleanup:
if(lserr == lserrNone)
{
Assert(por);
// We can never return an antisynthetic run to LS!
Assert(!por->IsAntiSyntheticRun());
if(por->_fCharsForNestedLayout && !IsAdornment())
{
// Give LS a junk character in this case. Fini will jump
// accross the number of chars actually taken up by the
// nested run owner.
*ppwchRun = por->SetCharacter('A');
*pcchRun = 1;
}
*pfHidden = por->_fHidden;
*plsChp = por->_lsCharProps;
*(PLSRUN*)pplsrun = por;
}
else
{
*(PLSRUN*)pplsrun = NULL;
}
return lserr;
}
//+----------------------------------------------------------------------------
//
// Member: CLineServices::AppendILSControlChar
//
// Synopsis: Appends an ILS object control character to the synthetic store.
// This function allows us to begin and end line services objects
// by inserting the control characters that begin and end them
// into the text stream. It also keeps track of the state of the
// object stack at the end of the synthetic store and returns the
// synthetic type that matches the first added charcter.
//
// A curiousity of Line Services dictates that ILS objects cannot
// be overlapped; it is not legal to have:
//
// <startNOBR><startReverse><endNOBR><endReverse>
//
// If this case were to arise the <endNOBR> would get ignored and
// the NOBR object would continue until the line was terminated
// by a TerminateLine() call. Furthermore, the behavior of ILS
// objects is not always inherited; the reverse object inside of
// a NOBR will still break.
//
// To get around these problems it is necessary to keep the object
// stack in good order. We define a hierarchy of objects and make
// certain that whenever a new object is created any objects which
// are lower in the heirarchy are closed and reopened after the
// new object is opened. The current heirarchy is:
//
// Reverse objects (highest)
// NOBR objects
// Embedding objects (lowest)
//
// Additional objects (FE objects) will be inserted into this
// heirarchy.
//
// Embedding objects require no special handling due to their
// special handling (recursive calls to line services). Thus the
// only objects which currently require handling are the reverse
// and NOBR objects.
//
// If we apply our strategy to the overlapped case above, we will
// end up with the following:
//
// <startNOBR><endNOBR><startReverse><startNOBR><endNOBR><endReverse>
//
// As can be seen the objects are well ordered and each object's
// start character is paired with its end character. NOBRs are
// kept at the top of the stack, and reverse objects preceed them.
//
// One problem which is introduced by this solution is the fact
// that a break opprotunity is introduced between the two NOBR
// objects. This can be fixed in the NOBR breaking code.
//
// Returns: An LSERR value. The function also returns synthetic character
// at lscp in *psynthAdded. This is the first charcter added by
// this function, NOT necessarily the character that matches idObj
// and fOpen. For example (again using the case above) when we
// ask to open the LSOBJID_REVERSE inside the NOBR object we will
// return SYNTHTYPE_ENDNOBR in *psynthAdded (though we will also
// append the SYNTHTYPE_REVERSE and START_NOBR to the store).
//
//-----------------------------------------------------------------------------
LSERR CLineServices::AppendILSControlChar(COneRun* por, SYNTHTYPE synthtype, COneRun** pporOut)
{
Assert(synthtype != SYNTHTYPE_NONE);
const SYNTHDATA& synthdata = s_aSynthData[synthtype];
LSERR lserr = lserrNone;
#ifdef _DEBUG
BOOL fOpen = synthdata.fObjStart;
#endif
// We can only APPEND REAL OBJECTS to the store.
Assert(synthdata.idObj != LSOBJID_TEXT);
*pporOut = NULL;
if(IsFrozen())
{
// We cannot add to the store if it is frozen.
goto Cleanup;
}
// Handle the object.
switch(synthdata.idObj)
{
case LSOBJID_NOBR:
{
// NOBR objects just need to be opened or closed. Note that we cannot
// close an object unless it has been opened, nor can we open an object
// if one is already open.
Assert(!!_fNoBreakForMeasurer != !!fOpen);
#ifdef _DEBUG
if(!fOpen)
{
COneRun* porTemp = _listCurrent._pTail;
BOOL fFoundTemp = FALSE;
while(porTemp)
{
if(porTemp->IsSyntheticRun())
{
if(porTemp->_synthType != SYNTHTYPE_NOBR)
{
AssertSz(0, "Should have found an STARTNOBR before anyother synth");
}
fFoundTemp = TRUE;
break;
}
porTemp = porTemp->_pPrev;
}
AssertSz(fFoundTemp, "Did not find the STARTNOBR you are closing!");
}
#endif
lserr = AppendSynth(por, synthtype, pporOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
break;
}
case LSOBJID_REVERSE:
{
COneRun* porTemp = NULL;
// If we've got an open NOBR object, we need to close it first.
if(_fNoBreakForMeasurer)
{
COneRun* porNobrStart;
lserr = AppendSynth(por, SYNTHTYPE_ENDNOBR, pporOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
// We need to mark the starting por that it was artificially
// terminated, so we can break appropriate in the ILS handlers.
for(porNobrStart=(*pporOut)->_pPrev; porNobrStart; porNobrStart=porNobrStart->_pPrev)
{
if(porNobrStart->IsSyntheticRun()
&& porNobrStart->_synthType==SYNTHTYPE_NOBR)
{
break;
}
}
Assert(porNobrStart);
// Can't break after this END-NOBR
porNobrStart->_fIsArtificiallyTerminatedNOBR = 1;
}
// Open or close the reverse object and update _nReverse.
lserr = AppendSynth(por, synthtype, *pporOut?&porTemp:pporOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
// If there was a NOBR object before we opened or closed the
// reverse object re-open a new NOBR object.
if(_fNoBreakForMeasurer)
{
Assert(*pporOut);
lserr = AppendSynth(por, SYNTHTYPE_NOBR, &porTemp);
if(lserr != lserrNone)
{
goto Cleanup;
}
// Can't break before this BEGIN-NOBR
porTemp->_fIsArtificiallyStartedNOBR = 1;
}
}
break;
case LSOBJID_RUBY:
{
// Here we close off all open LS objects, append the ruby synthetic
// and then reopen the LS objects.
lserr = AppendSynthClosingAndReopening(por, synthtype, pporOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
}
break;
#ifdef _DEBUG
default:
// We only handle NOBR and reverse objects so far. Embedding objects
// should not come here, and we don't support the FE objects so far.
Assert(FALSE);
break;
#endif
}
Cleanup:
// Make sure the store is still in good shape.
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: AppendSynthClosingAndReopening
//
// Synopsis: Appends a synthetic into the current one run store, but first
// closes all open LS objects and then reopens them afterwards.
//
// Returns: LSERR
//
//-----------------------------------------------------------------------------
LSERR CLineServices::AppendSynthClosingAndReopening(COneRun* por, SYNTHTYPE synthtype, COneRun** pporOut)
{
LSERR lserr = lserrNone;
COneRun *porOut=NULL, *porTail;
SYNTHTYPE curSynthtype;
WORD idObj = s_aSynthData[synthtype].idObj;
CStackDataAry<SYNTHTYPE, 16> arySynths;
int i;
int aObjRef[LSOBJID_COUNT];
// Zero out the object refcount array.
ZeroMemory(aObjRef, LSOBJID_COUNT*sizeof(int));
*pporOut = NULL;
// End any open LS objects.
for(porTail=_listCurrent._pTail; porTail; porTail=porTail->_pPrev)
{
if(!porTail->_fIsStartOrEndOfObj)
{
continue;
}
curSynthtype = porTail->_synthType;
WORD curIdObj = s_aSynthData[curSynthtype].idObj;
// If this synthetic character starts or stops an LS object...
if(curIdObj != idObj)
{
// Adjust the refcount up or down depending on whether the object
// is started or ended.
if(s_aSynthData[curSynthtype].fObjEnd)
{
aObjRef[curIdObj]--;
}
if(s_aSynthData[curSynthtype].fObjStart)
{
aObjRef[curIdObj]++;
}
// If the refcount is positive we have an unclosed object (we're
// walking backward). Close it.
if(aObjRef[curIdObj] > 0)
{
arySynths.AppendIndirect(&curSynthtype);
curSynthtype = s_aSynthData[curSynthtype].typeEndObj;
Assert(curSynthtype!=SYNTHTYPE_NONE &&
s_aSynthData[curSynthtype].idObj==curIdObj &&
s_aSynthData[curSynthtype].fObjStart==FALSE &&
s_aSynthData[curSynthtype].fObjEnd==TRUE);
// NOTE (t-ramar): closing a Ruby object may require adding
// two synths (endrubymain and endrubytext) depending on
// how it is currently open. Right now, this function is being
// called only when Ruby synths are being appended so this situation
// will never occur.
// if this function is used to append a non-Ruby synth,
// the assert should be removed and code added that will close
// a ruby object properly; that is, it will make sure that one or both
// of [endrubymain] and [endrubytext] are appended appropriately.
// Also, the code that reopens the closed objects (in the for loop below)
// may need to be changed.
Assert(curIdObj != LSOBJID_RUBY);
lserr = AppendSynth(por, curSynthtype, &porOut);
if(*pporOut == NULL)
{
*pporOut = porOut;
}
if(lserr != lserrNone)
{
goto Cleanup;
}
aObjRef[curIdObj]--;
Assert(aObjRef[curIdObj] == 0);
}
}
else
{
break;
}
}
// Append the synth that was passed in
lserr = AppendSynth(por, synthtype, &porOut);
if(lserr != lserrNone)
{
porOut = NULL;
goto Cleanup;
}
if(*pporOut == NULL)
{
*pporOut = porOut;
}
// Re-open the LS objects that we closed
for(i=arySynths.Size(); i>0; i--)
{
curSynthtype = arySynths[i-1];
// NOTE (t-ramar): reopening a Ruby object may require adding
// two synths (rubymain and endrubymain) depending on how it was
// closed. Right now, this function is being called only when
// Ruby synths are being appended so this situation will never
// occur.
Assert(s_aSynthData[curSynthtype].idObj != LSOBJID_RUBY);
Assert(curSynthtype!=SYNTHTYPE_NONE &&
s_aSynthData[curSynthtype].fObjStart==TRUE &&
s_aSynthData[curSynthtype].fObjEnd==FALSE);
lserr = AppendSynth(por, curSynthtype, &porOut);
if(lserr != lserrNone)
{
goto Cleanup;
}
}
Cleanup:
// Make sure the store is still in good shape.
return lserr;
}
//-----------------------------------------------------------------------------
//
// Function: FigureNextPtp.
//
// Synopsis: Figures the ptp at the cp
//
// Returns: CTreePos *
//
//-----------------------------------------------------------------------------
CTreePos* CLineServices::FigureNextPtp(LONG cp)
{
COneRun* por = _listCurrent._pTail;
CTreePos* ptp = NULL;
LONG cpAtEndOfOneRun;
Assert(_treeInfo._fInited);
if(!por)
{
goto Cleanup;
}
ptp = por->_ptp;
if(ptp->IsBeginElementScope() && ptp->Branch()->NeedsLayout())
{
GetNestedElementCch(ptp->Branch()->Element(), &ptp);
}
cpAtEndOfOneRun = por->Cp() + (por->IsSyntheticRun()?0:por->_lscch);
if(cpAtEndOfOneRun <= cp)
{
LONG cpAtEndOfPtp;
if(!por->IsSyntheticRun() && cpAtEndOfOneRun==cp
&& por->_lscch==ptp->GetCch())
{
cpAtEndOfPtp = cpAtEndOfOneRun;
}
else
{
cpAtEndOfPtp = ptp->GetCp() + ptp->GetCch();
}
while(cpAtEndOfPtp <= cp)
{
Assert(ptp != _treeInfo._ptpLayoutLast);
if(ptp->IsBeginElementScope() && ptp->Branch()->NeedsLayout())
{
GetNestedElementCch(ptp->Branch()->Element(), &ptp);
}
else
{
ptp = ptp->NextTreePos();
}
cpAtEndOfPtp = ptp->GetCp() + ptp->GetCch();
}
}
else
{
while(por)
{
if(por->Cp()<=cp && por->Cp()+por->_lscch > cp)
{
break;
}
por = por->_pPrev;
}
Assert(por);
// Note(SujalP): Bug63941 shows us the problem that if we ended up on an
// antisynthetic run, then the cp could anywhere within that run and hence
// the ptp could be anything -- not necessarily the ptp of the first cp of
// the run. Hence, if the cp is not the first cp of the anitsynth run then
// we will derive the ptp from basic principles.
if(por->IsAntiSyntheticRun() && por->Cp()!=cp)
{
long junk;
ptp = _treeInfo._pMarkup->TreePosAtCp(cp, &junk);
}
else
{
ptp = por->_ptp;
}
}
{
DEBUG_ONLY(long junk;)
Assert(_treeInfo._pMarkup->TreePosAtCp(cp, &junk) == ptp);
}
Assert(cp>=ptp->GetCp() && cp<ptp->GetCp()+ptp->GetCch());
Cleanup:
return ptp;
}
| [
"[email protected]"
] | |
c0002ce61740fbb1908e2338ad29db426bb6a43a | 2a77419a7ca40e8eba9659e3ab2084d216af8c03 | /Software/Cpp/ThCombination/src/CongruenceClosureDST.cpp | b4df60226bd88273b3d29d7bb8b08aeab617f9e2 | [] | no_license | typesAreSpaces/master-thesis | 6e69430fa373607a4984c91ad1f1b747918572dd | 717cb60330d263e2ffd81357a67b0f1e06da63ed | refs/heads/master | 2023-07-09T18:59:38.120748 | 2021-08-09T18:48:44 | 2021-08-09T18:48:44 | 137,972,830 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,503 | cpp | #include "CongruenceClosureDST.h"
CongruenceClosureDST::CongruenceClosureDST(const Z3Subterms & subterms,
PredList & pred_list, UnionFindExplain & uf,
std::list<unsigned> & pending) :
CongruenceClosure(subterms, uf),
pred_list(pred_list)
{
std::list<std::pair<unsigned, unsigned> > combine;
while(!pending.empty()){
combine.clear();
for(auto v_id : pending){
z3::expr v = subterms[v_id];
try{
auto w_id = sig_table.query(v);
combine.push_back(std::make_pair(v_id, w_id));
}
catch(...){
sig_table.enter(v);
}
}
pending.clear();
for(auto v_w : combine){
unsigned v_repr = ufe.find(v_w.first), w_repr = ufe.find(v_w.second);
if(v_repr != w_repr){
unsigned aux;
// Invariant: v_repr is always the representative of the union
if(pred_list[v_repr].size() < pred_list[w_repr].size()){
aux = v_repr;
v_repr = w_repr;
w_repr = aux;
}
if(Util::compareTerm(subterms[v_repr], subterms[w_repr])){
aux = v_repr;
v_repr = w_repr;
w_repr = aux;
}
for(auto u : pred_list[w_repr]){
sig_table.erase(subterms[u]);
pending.push_back(u);
}
ufe.combine(v_repr, w_repr);
pred_list[v_repr].splice(pred_list[v_repr].end(), pred_list[w_repr]);
}
}
}
}
CongruenceClosureDST::~CongruenceClosureDST(){
#if DEBUG_DESTRUCTORS_CC
std::cout << "Done ~CongruenceClosureDST" << std::endl;
#endif
}
std::ostream & operator << (std::ostream & os, const CongruenceClosureDST & cc){
return os;
}
| [
"[email protected]"
] | |
28102360481d55b7b8522dddc06f667998948eff | 04bcdccf8386ddf39db1d638f0b0083e78ae99be | /Classes/UI_Interface/UI_Daily_Mission.cpp | 9d11e38ac8753f3df8506c5e55e8d61b34cdaa60 | [] | no_license | hackerlank/son | 3d71f9019fefea4898cf20601995231de000cccf | bf9175241d4f10ba4461c798f2752d1a0634bb3d | refs/heads/master | 2020-03-12T21:30:59.635554 | 2016-06-28T09:39:49 | 2016-06-28T09:39:49 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 14,870 | cpp | #include "UI_Daily_Mission.h"
#include "UI_MainMenu_Layer.h"
#include "UI_Mission_Layer.h"
#include "Item_System/Item_Desc_Config_Mgr.h"
#include "Daily_Task_System/Daily_Task_Mgr_Cl.h"
#include "Daily_Task_System/Daily_Task_Logic_Cl.h"
#include "Daily_Task_System/Daily_Task_Config_Mgr.h"
#include "Player_Account/Account_Data_Mgr.h"
#include "Character_System/Player.h"
#include "Character_System/Character_Mgr.h"
using namespace Game_Data;
using namespace ui;
UI_Daily_Mission::UI_Daily_Mission(void):
m_prRotWidget(NULL)
{
}
UI_Daily_Mission::~UI_Daily_Mission(void)
{
}
bool UI_Daily_Mission::init()
{
bool bRet = false;
do
{
CC_BREAK_IF(!cocos2d::Layer::init());
m_prRotWidget = cocostudio::GUIReader::getInstance()->widgetFromJsonFile("ui/Daily_Mission/Daily_Mission.ExportJson");
this->addChild(m_prRotWidget);
initComponent();
bRet = true;
} while (0);
return bRet;
}
void UI_Daily_Mission::setVisible(bool visible)
{
cocos2d::Layer::setVisible(visible);
if (visible)
{
update();
}
}
void UI_Daily_Mission::tokenFinishCallback( Ref* pSender ,Widget::TouchEventType type)
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
DAILY_TASK_LOGIC::instance()->token_complete_daily_task();
break;
default:
break;
}
}
void UI_Daily_Mission::oneKeyGainAllStarsCallback( Ref* pSender,Widget::TouchEventType type )
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
DAILY_TASK_LOGIC::instance()->set_daily_task_star_level_max();
break;
default:
break;
}
}
void UI_Daily_Mission::opMissionCallback( Ref* pSender ,Widget::TouchEventType type)
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
DAILY_TASK_LOGIC::instance()->op_daily_task();
break;
default:
break;
}
}
void UI_Daily_Mission::refreshStarsLevelUpCallback( Ref* pSender,Widget::TouchEventType type )
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
DAILY_TASK_LOGIC::instance()->refresh_daily_task_star_level();
break;
default:
break;
}
}
void UI_Daily_Mission::btnGiftGainOrNotCallback( Ref* pSender ,Widget::TouchEventType type)
{
cocos2d::ui::Button* button;
int curTag;
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
button = dynamic_cast<cocos2d::ui::Button*>(pSender);
if (button)
{
curTag =button->getTag();
switch (curTag)
{
case DTGT_ONE:
{
DAILY_TASK_LOGIC::instance()->get_daily_task_gift_one();
}
break;
case DTGT_TWO:
{
DAILY_TASK_LOGIC::instance()->get_daily_task_gift_two();
}
break;
case DTGT_THREE:
{
DAILY_TASK_LOGIC::instance()->get_daily_task_gift_three();
}
break;
default:
break;
}
}
break;
default:
break;
}
}
void UI_Daily_Mission::initComponent()
{
//切换界面区
m_btn_already_acp_mis = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_accept"));
m_btn_already_acp_mis->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::btnAlreadyAcpCallback));
m_btn_no_acp_mis = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_wait"));
m_btn_no_acp_mis->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::btnNoAcpCallback));
m_btn_close = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_close"));
m_btn_close->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::btnCloseCallback));
//任务区
char szName[32] = {0};
for (int i=0; i<STARTS_ALL_NUM; ++i)
{
memset(szName, 0, sizeof(szName));
sprintf(szName, "img_star_back_%d", i);
m_img_stars_back_texture[i] = dynamic_cast<cocos2d::ui::ImageView*>(Helper::seekWidgetByName(m_prRotWidget,szName));
memset(szName, 0, sizeof(szName));
sprintf(szName, "img_star_%d", i);
m_img_stars_texture[i] = dynamic_cast<cocos2d::ui::ImageView*>(Helper::seekWidgetByName(m_prRotWidget,szName));
}
m_lab_mission_process_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_daily_mission_progress"));
//m_lab_mission_process_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_lab_mission_process_percent = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_progress_percent"));
m_lab_vip_times_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_vip_daily_times"));
//m_lab_vip_times_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_lab_vip_times_percent = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_vip_times_percent"));
m_lab_mission_name = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_type"));
m_lab_mission_cur_state = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_state"));
m_lab_mission_require = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_ask"));
//m_lab_mission_require->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_lab_mission_require_info = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_ask_info"));
m_lab_mission_award_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_award_font"));
//m_lab_mission_award_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_lab_mission_award_exp = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_exp"));
//m_lab_mission_award_exp->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_lab_mission_award_exp_num = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_exp_num"));
m_lab_mission_award_exp_times_num = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_exp_times_num"));
m_lab_mission_award_silver = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_silver"));
//m_lab_mission_award_silver->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_lab_mission_award_silver_num = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_silver_num"));
m_lab_mission_award_silver_times_num = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"lab_mission_silver_times_num"));
m_btn_first = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_first"));
m_btn_first->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::tokenFinishCallback));
m_btn_first_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_btn_first,"Label"));
//m_btn_first_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_btn_second = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_second"));
m_btn_second->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::oneKeyGainAllStarsCallback));
m_lab_second_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_btn_second,"Label"));
//m_lab_second_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_btn_third = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_third"));
m_btn_third->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::opMissionCallback));
m_lab_third_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"Label"));
//m_lab_third_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
m_btn_fourth = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_prRotWidget,"btn_fourth"));
m_btn_fourth->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::refreshStarsLevelUpCallback));
m_lab_fourth_font = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_prRotWidget,"m_btn_fourth"));
//m_lab_fourth_font->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
//礼包领取区
char key[32] = {0};
for (int i=0; i<DAILY_MISSION_GAIN_NUM; ++i)
{
memset(key, 0, sizeof(key));
sprintf(key, "img_gift_%d", i);
m_img_gift_texture[i] = dynamic_cast<cocos2d::ui::ImageView*>(Helper::seekWidgetByName(m_prRotWidget,key));
m_lab_gift_daily_mis_compelete[i] = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_img_gift_texture[i],"lab_complete_daily_mission"));
m_lab_gift_daily_mis_percent[i] = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_img_gift_texture[i],"lab_daily_mission_process"));
m_btn_gift_gain_or_not[i] = dynamic_cast<cocos2d::ui::Button*>(Helper::seekWidgetByName(m_img_gift_texture[i],"btn_gain_or_not"));
m_btn_gift_gain_or_not[i]->setTag(i);
m_btn_gift_gain_or_not[i]->addTouchEventListener(this, toucheventselector(UI_Daily_Mission::btnGiftGainOrNotCallback));
m_lab_gift_gain_or_not[i] = dynamic_cast<cocos2d::ui::Text*>(Helper::seekWidgetByName(m_img_gift_texture[i],"lab_gain_or_not"));
//m_lab_gift_gain_or_not[i]->setString(DICTIONARY_CONFIG_MGR::instance()->get_string_by_id());
}
}
void UI_Daily_Mission::btnAlreadyAcpCallback( Ref* pSender ,Widget::TouchEventType type)
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
setVisible(false);
UI_Mission_Layer::get_instance()->buttonMissionAlreadyAccept(NULL,Widget::TouchEventType::ENDED);
break;
default:
break;
}
}
void UI_Daily_Mission::btnNoAcpCallback( Ref* pSender ,Widget::TouchEventType type)
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
setVisible(false);
UI_Mission_Layer::get_instance()->buttonMissionAbleAccept(NULL,Widget::TouchEventType::ENDED);
break;
default:
break;
}
}
void UI_Daily_Mission::btnCloseCallback( Ref* pSender,Widget::TouchEventType type )
{
switch (type)
{
case cocos2d::ui::Widget::TouchEventType::ENDED:
setVisible(false);
break;
default:
break;
}
}
void UI_Daily_Mission::update()
{
reset_ui();
int player_id = Account_Data_Mgr::instance()->get_current_role_id();
Player* player = dynamic_cast<Player*>(CHARACTER_MGR::instance()->get_character(player_id));
if (!player)
{
return;
}
daily_task& data = DAILY_TASK_MGR::instance()->get_daily_task();
int need_count[] = {GET_DAILY_TASK_GIFT_ONE_NEED_COMPLETE_COUNT,
GET_DAILY_TASK_GIFT_TWO_NEED_COMPLETE_COUNT,
GET_DAILY_TASK_GIFT_THREE_NEED_COMPLETE_COUNT};
int complete_count = data.complete_count_;
for (int i=0; i<DAILY_MISSION_GAIN_NUM; ++i)
{
if (data.complete_count_ >= need_count[i])
{
complete_count = need_count[i];
}
m_lab_gift_daily_mis_percent[i]->setString(CCString::createWithFormat("(%d/%d)",complete_count,need_count[i])->getCString());
}
if (data.task_base_id_ == 0)
{
return;
}
daily_task_config* config = DAILY_TASK_CONFIG_MGR::instance()->get_daily_task_config(data.task_base_id_);
if (!config)
{
return;
}
m_lab_mission_process_percent->setString(CCString::createWithFormat("(%d/%d)",data.exec_count_,DAILY_TASK_COUNT_MAX)->getCString());
const char* name = DICTIONARY_CONFIG_MGR::instance()->get_string_by_id(config->name_);
m_lab_mission_name->setString(name);
m_lab_mission_name->setVisible(true);
//m_lab_mission_cur_state->setVisible(true);
const char* desc = DICTIONARY_CONFIG_MGR::instance()->get_string_by_id(config->desc_);
m_lab_mission_require_info->setString(CCString::createWithFormat(desc,data.progress_,config->count_)->getCString());
m_lab_mission_require->setVisible(true);
m_lab_mission_require_info->setVisible(true);
int role_level = player->get_character_level();
int reward_exp = (int)(((role_level * (role_level + 100) / 10.0f) + 15) * config->exp_ / 100.0f);
int reward_gold = (int)((100 + role_level * (role_level + 500) / 50.0f) * config->money_ / 100.0f);
m_lab_mission_award_exp_num->setString(CCString::createWithFormat("%d",reward_exp)->getCString());
m_lab_mission_award_exp_times_num->setString(CCString::createWithFormat("x%0.1f",(1 + (data.star_level_ - 1) * data.star_level_ / 10.0f))->getCString());
m_lab_mission_award_silver_num->setString(CCString::createWithFormat("%d",reward_gold)->getCString());
m_lab_mission_award_silver_times_num->setString(CCString::createWithFormat("x%0.1f",(float)data.star_level_)->getCString());
m_lab_mission_award_font->setVisible(true);
m_lab_mission_award_exp->setVisible(true);
m_lab_mission_award_exp_num->setVisible(true);
m_lab_mission_award_exp_times_num->setVisible(true);
m_lab_mission_award_silver->setVisible(true);
m_lab_mission_award_silver_num->setVisible(true);
m_lab_mission_award_silver_times_num->setVisible(true);
for (int i = 0;i < STARTS_ALL_NUM;++i)
{
m_img_stars_back_texture[i]->setVisible(true);
if (data.star_level_ > i)
{
m_img_stars_texture[i]->setVisible(true);
}
}
if (data.progress_ != config->count_)
{
m_btn_first->setVisible(true);
}
if (data.star_level_ < STAR_LEVEL_MAX)
{
m_btn_second->setVisible(true);
}
const char* op_task = DICTIONARY_CONFIG_MGR::instance()->get_string_by_id(MISSION_QUIT);
if (data.progress_ == config->count_)
{
op_task = DICTIONARY_CONFIG_MGR::instance()->get_string_by_id(MISSION_OVER);
}
//m_lab_third_font->setString(op_task);
m_btn_third->setVisible(true);
if (data.star_level_ < STAR_LEVEL_MAX)
{
m_btn_fourth->setVisible(true);
}
}
void UI_Daily_Mission::reset_ui()
{
m_lab_vip_times_font->setVisible(false);
m_lab_vip_times_percent->setVisible(false);
m_lab_mission_name->setVisible(false);
m_lab_mission_cur_state->setVisible(false);
m_lab_mission_require->setVisible(false);
m_lab_mission_require_info->setVisible(false);
m_lab_mission_award_font->setVisible(false);
m_lab_mission_award_exp->setVisible(false);
m_lab_mission_award_exp_num->setVisible(false);
m_lab_mission_award_exp_times_num->setVisible(false);
m_lab_mission_award_silver->setVisible(false);
m_lab_mission_award_silver_num->setVisible(false);
m_lab_mission_award_silver_times_num->setVisible(false);
for (int i = 0;i < STARTS_ALL_NUM;++i)
{
m_img_stars_back_texture[i]->setVisible(false);
m_img_stars_texture[i]->setVisible(false);
}
m_btn_first->setVisible(false);
m_btn_second->setVisible(false);
m_btn_third->setVisible(false);
m_btn_fourth->setVisible(false);
}
| [
"[email protected]"
] | |
32533fbe7febe317fac4f1177541aa32110c6ee0 | 4282d16a7811237f10c92fde77164c88737beb8d | /Programmers_Level1/0717_divisorCntSum.cpp | 217e3ccb74920823915fd6807916d84b723f5b4d | [] | no_license | 19sProgrammersStudy/Seohyun | 701038860f0f458a0c8ddc9d19ba91f17e093d2c | 4f388e7736d5efbd05601ca098f4d092a51c4b70 | refs/heads/master | 2023-08-05T09:55:12.876368 | 2021-09-21T09:04:13 | 2021-09-21T09:04:13 | 383,292,425 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 526 | cpp | // Level 1. 약수의 개수와 덧셈
// https://programmers.co.kr/learn/courses/30/lessons/77884?language=cpp
#include <string>
#include <vector>
#include <cmath>
using namespace std;
int solution(int left, int right)
{
int answer = 0;
int count;
for (int idx = left; idx <= right; idx++)
{
if (idx > 1)
count = 2;
else
count = 1;
for (int cnt = 2; cnt < idx; cnt++)
if (idx % cnt == 0)
count++;
(count % 2 == 0) ? answer += idx : answer -= idx;
}
return answer;
} | [
"[email protected]"
] | |
7b6bdc44195b00b842847b6d27f7d6ed4322c005 | cb74f5a5433c9aa1c402243d4e9642f623f65e67 | /pat/pat1009.cpp | 12406fda53eaa527690ba6be606adbe93f6455c3 | [
"MIT"
] | permissive | zofvbeaf/algorithm-practices | 290d6279046b7a8d67b2b66be69153095518b926 | 9772808fdf1b73ac55887291d9fb680e90b60958 | refs/heads/master | 2020-04-19T01:45:45.420591 | 2019-09-10T06:24:04 | 2019-09-10T06:24:04 | 167,881,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 892 | cpp | #include<cstdio>
#include<string.h> //memset
using namespace std;
int main(){
int k,m;
double a[1002],b[1002],c[2002];
memset(a,0,sizeof(a));
memset(b,0,sizeof(b));
memset(c,0,sizeof(c));
scanf("%d",&k);
for(int i=0; i<k; i++){
scanf("%d",&m);
scanf("%lf",a+m); //double的输入
}
scanf("%d",&k);
for(int i=0; i<k; i++){
scanf("%d",&m);
scanf("%lf",b+m);
}
k=0;
for(int i=0; i<1001; i++){
for(int j=0; j<1001; j++){
c[i+j] += a[i]*b[j];
}
}
for(int i=2001; i>=0; i--){
if(c[i]) k++;
}
printf("%d",k);
for(int i=2001; i>=0; i--){
if(c[i]!=0){
printf(" %d %.1f",i,c[i]); //小数输出,小数点后1位
}
}
printf("\n"); //最后输出的一行有换行
return 0;
}
| [
"[email protected]"
] | |
74d273e31e718047c2d34823338a722729e3e427 | b7a05ba26dc82a8a837b371744fd8b17c4c2b505 | /cpp/AlgoLibR/sort/heap_sort.h | 82511bcfc38c0c2c18ee70d0eaac238b3c571da7 | [] | no_license | raoqiyu/AlgoLibR | 357c71b0ce659dd34a0172aee9089199818f3b73 | a8836b368b286cf0e75fa2a831ca357edc04115d | refs/heads/master | 2022-03-22T17:15:09.242066 | 2020-10-22T14:57:48 | 2020-10-22T14:57:48 | 202,102,550 | 2 | 1 | null | 2023-05-04T09:32:52 | 2019-08-13T08:46:23 | C++ | UTF-8 | C++ | false | false | 415 | h | /*
* @Author: [email protected]
* @Date: 2020-02-02 15:06:35
* @FilePath: /AlgoLibR/cpp/AlgoLibR/sort/heap_sort.h
* @Description:
*/
#ifndef heap_sort_H
#define heap_sort_H
#include <stdlib.h>
namespace AlgoLibR{
namespace sort{
namespace heap_sort{
template<typename T>
void heapSortKernel(T arr[], size_t n, bool ascending);
} // namespace heap_sort
} // namespace sort
} // namespace AlgoLibR
#endif
| [
"[email protected]"
] | |
0c310b362bbb95ce5de0c0fd9671f3ae3a791ac7 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14587/function14587_schedule_15/function14587_schedule_15.cpp | e6a6102453d346165f2c91580aa8238c5cee5971 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 728 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14587_schedule_15");
constant c0("c0", 2048), c1("c1", 256), c2("c2", 64);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06");
computation comp0("comp0", {i0, i1, i2}, 6 + 6 * 5);
comp0.tile(i0, i1, i2, 32, 32, 32, i01, i02, i03, i04, i05, i06);
comp0.parallelize(i01);
buffer buf0("buf0", {2048, 256, 64}, p_int32, a_output);
comp0.store_in(&buf0);
tiramisu::codegen({&buf0}, "../data/programs/function14587/function14587_schedule_15/function14587_schedule_15.o");
return 0;
} | [
"[email protected]"
] | |
bdc418b8d1b9236712b8b99bfe224d079880b59c | 4c3371e3fcd1cc463b7d8c70b32e624672955262 | /projects/ChessWatchArduino2SSD1306/ChessWatchArduino2SSD1306PrototypV2/Adafruit_SSD1306.h | 883c85dd307200007cd6a3b278dc0d94282fcaeb | [] | no_license | sfambach/arduino | b2f9aaac3c7e723c0058e9582fc1b1360f4a0787 | 19560dd872118a86e1cdd0faa4f884eac674d571 | refs/heads/master | 2022-05-15T09:29:22.848044 | 2022-03-29T19:48:17 | 2022-03-29T19:48:17 | 193,207,559 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,705 | h | /*!
* @file Adafruit_SSD1306.h
*
* This is part of for Adafruit's SSD1306 library for monochrome
* OLED displays: http://www.adafruit.com/category/63_98
*
* These displays use I2C or SPI to communicate. I2C requires 2 pins
* (SCL+SDA) and optionally a RESET pin. SPI requires 4 pins (MOSI, SCK,
* select, data/command) and optionally a reset pin. Hardware SPI or
* 'bitbang' software SPI are both supported.
*
* Adafruit invests time and resources providing this open source code,
* please support Adafruit and open-source hardware by purchasing
* products from Adafruit!
*
* Written by Limor Fried/Ladyada for Adafruit Industries, with
* contributions from the open source community.
*
* BSD license, all text above, and the splash screen header file,
* must be included in any redistribution.
*
*/
#ifndef _Adafruit_SSD1306_H_
#define _Adafruit_SSD1306_H_
// ONE of the following three lines must be #defined:
#define SSD1306_128_64 ///< DEPRECTAED: old way to specify 128x64 screen
//#define SSD1306_128_32 ///< DEPRECATED: old way to specify 128x32 screen
//#define SSD1306_96_16 ///< DEPRECATED: old way to specify 96x16 screen
// This establishes the screen dimensions in old Adafruit_SSD1306 sketches
// (NEW CODE SHOULD IGNORE THIS, USE THE CONSTRUCTORS THAT ACCEPT WIDTH
// AND HEIGHT ARGUMENTS).
#if defined(ARDUINO_STM32_FEATHER)
typedef class HardwareSPI SPIClass;
#endif
#include <Wire.h>
#include <SPI.h>
#include "Adafruit_GFX.h"
#if defined(__AVR__)
typedef volatile uint8_t PortReg;
typedef uint8_t PortMask;
#define HAVE_PORTREG
#elif defined(__SAM3X8E__)
typedef volatile RwReg PortReg;
typedef uint32_t PortMask;
#define HAVE_PORTREG
#elif defined(__arm__) || defined(ARDUINO_FEATHER52)
typedef volatile uint32_t PortReg;
typedef uint32_t PortMask;
#define HAVE_PORTREG
#endif
#define BLACK 0 ///< Draw 'off' pixels
#define WHITE 1 ///< Draw 'on' pixels
#define INVERSE 2 ///< Invert pixels
#define SSD1306_MEMORYMODE 0x20 ///< See datasheet
#define SSD1306_COLUMNADDR 0x21 ///< See datasheet
#define SSD1306_PAGEADDR 0x22 ///< See datasheet
#define SSD1306_SETCONTRAST 0x81 ///< See datasheet
#define SSD1306_CHARGEPUMP 0x8D ///< See datasheet
#define SSD1306_SEGREMAP 0xA0 ///< See datasheet
#define SSD1306_DISPLAYALLON_RESUME 0xA4 ///< See datasheet
#define SSD1306_DISPLAYALLON 0xA5 ///< Not currently used
#define SSD1306_NORMALDISPLAY 0xA6 ///< See datasheet
#define SSD1306_INVERTDISPLAY 0xA7 ///< See datasheet
#define SSD1306_SETMULTIPLEX 0xA8 ///< See datasheet
#define SSD1306_DISPLAYOFF 0xAE ///< See datasheet
#define SSD1306_DISPLAYON 0xAF ///< See datasheet
#define SSD1306_COMSCANINC 0xC0 ///< Not currently used
#define SSD1306_COMSCANDEC 0xC8 ///< See datasheet
#define SSD1306_SETDISPLAYOFFSET 0xD3 ///< See datasheet
#define SSD1306_SETDISPLAYCLOCKDIV 0xD5 ///< See datasheet
#define SSD1306_SETPRECHARGE 0xD9 ///< See datasheet
#define SSD1306_SETCOMPINS 0xDA ///< See datasheet
#define SSD1306_SETVCOMDETECT 0xDB ///< See datasheet
#define SSD1306_SETLOWCOLUMN 0x00 ///< Not currently used
#define SSD1306_SETHIGHCOLUMN 0x10 ///< Not currently used
#define SSD1306_SETSTARTLINE 0x40 ///< See datasheet
#define SSD1306_EXTERNALVCC 0x01 ///< External display voltage source
#define SSD1306_SWITCHCAPVCC 0x02 ///< Gen. display voltage from 3.3V
#define SSD1306_RIGHT_HORIZONTAL_SCROLL 0x26 ///< Init rt scroll
#define SSD1306_LEFT_HORIZONTAL_SCROLL 0x27 ///< Init left scroll
#define SSD1306_VERTICAL_AND_RIGHT_HORIZONTAL_SCROLL 0x29 ///< Init diag scroll
#define SSD1306_VERTICAL_AND_LEFT_HORIZONTAL_SCROLL 0x2A ///< Init diag scroll
#define SSD1306_DEACTIVATE_SCROLL 0x2E ///< Stop scroll
#define SSD1306_ACTIVATE_SCROLL 0x2F ///< Start scroll
#define SSD1306_SET_VERTICAL_SCROLL_AREA 0xA3 ///< Set scroll range
// Deprecated size stuff for backwards compatibility with old sketches
#if defined SSD1306_128_64
#define SSD1306_LCDWIDTH 128 ///< DEPRECATED: width w/SSD1306_128_64 defined
#define SSD1306_LCDHEIGHT 64 ///< DEPRECATED: height w/SSD1306_128_64 defined
#endif
#if defined SSD1306_128_32
#define SSD1306_LCDWIDTH 128 ///< DEPRECATED: width w/SSD1306_128_32 defined
#define SSD1306_LCDHEIGHT 32 ///< DEPRECATED: height w/SSD1306_128_32 defined
#endif
#if defined SSD1306_96_16
#define SSD1306_LCDWIDTH 96 ///< DEPRECATED: width w/SSD1306_96_16 defined
#define SSD1306_LCDHEIGHT 16 ///< DEPRECATED: height w/SSD1306_96_16 defined
#endif
/*!
@brief Class that stores state and functions for interacting with
SSD1306 OLED displays.
*/
class Adafruit_SSD1306 : public Adafruit_GFX {
public:
// NEW CONSTRUCTORS -- recommended for new projects
Adafruit_SSD1306(uint8_t w, uint8_t h, TwoWire *twi=&Wire, int8_t rst_pin=-1,
uint32_t clkDuring=400000UL, uint32_t clkAfter=100000UL);
Adafruit_SSD1306(uint8_t w, uint8_t h, int8_t mosi_pin, int8_t sclk_pin,
int8_t dc_pin, int8_t rst_pin, int8_t cs_pin);
Adafruit_SSD1306(uint8_t w, uint8_t h, SPIClass *spi,
int8_t dc_pin, int8_t rst_pin, int8_t cs_pin, uint32_t bitrate=8000000UL);
// DEPRECATED CONSTRUCTORS - for back compatibility, avoid in new projects
Adafruit_SSD1306(int8_t mosi_pin, int8_t sclk_pin, int8_t dc_pin,
int8_t rst_pin, int8_t cs_pin);
Adafruit_SSD1306(int8_t dc_pin, int8_t rst_pin, int8_t cs_pin);
Adafruit_SSD1306(int8_t rst_pin = -1);
~Adafruit_SSD1306(void);
boolean begin(uint8_t switchvcc=SSD1306_SWITCHCAPVCC,
uint8_t i2caddr=0, boolean reset=true,
boolean periphBegin=true);
void display(void);
void clearDisplay(void);
void invertDisplay(boolean i);
void dim(boolean dim);
void drawPixel(int16_t x, int16_t y, uint16_t color);
virtual void drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
virtual void drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
void startscrollright(uint8_t start, uint8_t stop);
void startscrollleft(uint8_t start, uint8_t stop);
void startscrolldiagright(uint8_t start, uint8_t stop);
void startscrolldiagleft(uint8_t start, uint8_t stop);
void stopscroll(void);
void ssd1306_command(uint8_t c);
boolean getPixel(int16_t x, int16_t y);
uint8_t *getBuffer(void);
protected:
static uint8_t *buffer;
private:
inline void SPIwrite(uint8_t d) __attribute__((always_inline));
void drawFastHLineInternal(int16_t x, int16_t y, int16_t w,
uint16_t color);
void drawFastVLineInternal(int16_t x, int16_t y, int16_t h,
uint16_t color);
void ssd1306_command1(uint8_t c);
void ssd1306_commandList(const uint8_t *c, uint8_t n);
SPIClass *spi;
TwoWire *wire;
int8_t i2caddr, vccstate, page_end;
int8_t mosiPin , clkPin , dcPin , csPin, rstPin;
#ifdef HAVE_PORTREG
PortReg *mosiPort , *clkPort , *dcPort , *csPort;
PortMask mosiPinMask, clkPinMask, dcPinMask, csPinMask;
#endif
#if defined(SPI_HAS_TRANSACTION)
SPISettings spiSettings;
#endif
#if ARDUINO >= 157
uint32_t wireClk; // Wire speed for SSD1306 transfers
uint32_t restoreClk; // Wire speed following SSD1306 transfers
#endif
};
#endif // _Adafruit_SSD1306_H_
| [
"[email protected]"
] | |
0cb0cce23a7f983fbdd4373bb550a80793ef25df | 1bd9e3cda029e15d43a2e537663495ff27e317e2 | /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/52/nut | 2d66bd20890510d935d6b0dff55d07095e9a6eed | [] | no_license | tsam1307/OpenFoam_heatTrf | 810b81164d3b67001bfce5ab9311d9b3d45b5c9d | 799753d24862607a3383aa582a6d9e23840c3b15 | refs/heads/main | 2023-08-10T23:27:40.420639 | 2021-09-18T12:46:01 | 2021-09-18T12:46:01 | 382,377,763 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052,149 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "52";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField nonuniform List<scalar>
78750
(
0.000454117
0.00101783
0.000702267
0.000195627
5.7639e-05
1.80995e-05
1.59395e-05
1.88787e-05
1.85316e-05
2.12165e-05
2.75955e-05
3.09965e-05
3.9208e-05
4.49882e-05
4.4822e-05
4.37534e-05
4.27747e-05
4.18859e-05
4.11135e-05
4.04835e-05
4.00045e-05
3.96675e-05
3.94536e-05
3.93411e-05
3.93141e-05
3.93622e-05
3.94796e-05
3.966e-05
3.98929e-05
4.01615e-05
4.04421e-05
4.06966e-05
3.92372e-05
1.00039e-05
4.16689e-07
4.77344e-05
4.65088e-05
5.32041e-05
3.9519e-05
5.86656e-05
3.88478e-05
3.38446e-05
3.12288e-05
2.89487e-05
2.83681e-05
2.85465e-05
3.03415e-05
3.42493e-05
4.10333e-05
4.92319e-05
5.29118e-05
5.08514e-05
4.88849e-05
4.97398e-05
5.35669e-05
5.98896e-05
6.90405e-05
8.15492e-05
9.29252e-05
9.90028e-05
0.00010051
9.8272e-05
9.59399e-05
9.35146e-05
9.05355e-05
7.86266e-05
5.4677e-05
1.11315e-05
2.76361e-06
1.55118e-06
1.87283e-06
2.50191e-05
4.50813e-05
6.21466e-05
7.46013e-05
0.000102968
9.96929e-05
7.86623e-05
6.51288e-05
5.80501e-05
5.36134e-05
4.94629e-05
4.50181e-05
4.09877e-05
3.85832e-05
3.94788e-05
4.73847e-05
6.98304e-05
0.000104895
0.00011662
8.87429e-05
5.42377e-05
4.28206e-05
4.53558e-05
5.67971e-05
8.76813e-05
0.000123089
0.000122337
0.000121298
0.000119925
9.18617e-05
5.06246e-05
1.202e-05
4.74867e-06
2.8923e-06
1.3368e-06
8.02662e-06
1.83065e-05
3.71619e-05
6.56831e-05
6.94064e-05
5.59163e-05
4.63714e-05
4.30287e-05
4.46902e-05
5.09187e-05
6.12289e-05
7.31157e-05
8.23729e-05
8.77067e-05
9.19304e-05
9.87217e-05
0.000109329
0.000116938
0.000101406
6.82306e-05
4.8636e-05
4.42607e-05
5.07932e-05
2.95259e-05
1.5654e-05
1.90052e-05
3.49979e-05
6.42981e-05
8.39911e-05
5.82896e-05
2.64549e-05
8.09798e-06
3.84624e-06
3.96632e-06
4.76228e-06
2.42274e-05
8.54024e-05
0.000141473
9.90208e-05
5.65309e-05
3.86195e-05
3.47038e-05
3.91369e-05
4.96357e-05
6.01221e-05
6.59718e-05
7.30034e-05
8.8009e-05
0.000111209
0.000133543
0.000146305
0.000149532
0.000144144
0.000129145
0.000109393
9.5167e-05
9.25873e-05
0.000104165
0.000129469
0.000130435
7.85623e-05
5.0078e-05
2.99581e-05
2.33691e-05
4.06061e-05
1.95688e-05
7.51053e-06
8.29833e-06
5.58093e-06
6.49507e-06
3.27948e-05
9.45035e-05
8.75369e-05
4.21714e-05
2.15019e-05
1.51427e-05
1.53735e-05
2.13733e-05
3.82506e-05
7.2883e-05
0.000105795
0.000117864
0.000112884
0.000101469
9.17101e-05
8.5842e-05
8.30782e-05
8.20892e-05
8.27758e-05
8.5068e-05
8.88771e-05
9.50337e-05
0.000104258
0.000115877
0.000127644
0.000141949
0.000166799
0.000165664
0.000162342
0.000101826
4.87134e-05
8.4962e-06
6.56677e-06
5.83544e-06
6.15722e-06
3.37411e-05
0.000111784
0.000119563
7.24664e-05
4.29352e-05
2.89053e-05
2.32213e-05
2.30123e-05
2.69434e-05
3.52805e-05
4.97253e-05
7.05726e-05
9.32471e-05
0.000113549
0.000131052
0.000141119
0.000133849
0.000112619
9.63919e-05
9.62569e-05
0.000114568
0.000143886
0.000163723
0.00016757
0.00016424
0.00015948
0.000152192
0.000135863
0.000100457
5.25586e-05
1.95558e-05
1.02113e-05
1.50165e-05
6.94919e-06
6.35343e-06
2.91855e-05
8.29666e-05
0.000110821
8.41202e-05
5.22599e-05
3.32788e-05
2.5731e-05
2.59021e-05
3.10139e-05
3.91334e-05
4.96302e-05
6.30503e-05
7.95325e-05
9.75044e-05
0.000113892
0.00012579
0.000131469
0.000129623
0.000120529
0.000107736
9.59849e-05
8.9208e-05
9.10139e-05
0.000104073
0.000125115
0.000141501
0.000146484
0.000141444
0.000123139
7.99778e-05
1.96153e-05
6.92216e-06
1.0478e-05
6.94014e-06
7.31228e-06
5.17133e-05
0.000111722
9.5493e-05
5.88563e-05
3.60259e-05
2.32535e-05
1.61839e-05
1.52736e-05
2.26825e-05
4.29e-05
7.69555e-05
0.000109778
0.000127466
0.000134827
0.000138649
0.000139645
0.000136597
0.00012951
0.000120281
0.000110464
0.000101591
9.71878e-05
0.000102533
0.000121861
0.000145242
0.000142725
0.000140661
0.000127121
6.75397e-05
2.73582e-05
1.19474e-05
8.42884e-06
1.72576e-05
7.8384e-06
4.58996e-06
2.21578e-05
5.59358e-05
8.32928e-05
0.000104388
0.00012352
9.35316e-05
4.33696e-05
2.37953e-05
1.69835e-05
1.51592e-05
1.71161e-05
2.32403e-05
3.33097e-05
4.41927e-05
5.28542e-05
6.00233e-05
6.69917e-05
7.38807e-05
8.14098e-05
9.07994e-05
0.000102405
0.000116512
0.000133939
0.000145943
0.000143418
0.000140926
0.000138663
0.000136807
8.96927e-05
2.97142e-05
1.01777e-05
7.72906e-06
1.75168e-05
8.1137e-06
6.64625e-06
4.12442e-05
0.000117937
0.000119962
0.000111612
0.000119816
0.000130328
0.000126255
8.67996e-05
4.35935e-05
2.70989e-05
2.09252e-05
1.87238e-05
1.98419e-05
2.58436e-05
3.96279e-05
5.81676e-05
6.9523e-05
7.76016e-05
8.92922e-05
0.000104893
0.000122247
0.000138376
0.000139233
0.000138327
0.000137358
0.000136454
0.000135751
0.000103664
5.63727e-05
2.21374e-05
9.2081e-06
8.54883e-06
2.45714e-05
8.8157e-06
5.54004e-06
2.55025e-05
6.51851e-05
0.000105305
0.000129423
0.000136603
0.000130695
0.000125395
0.000125755
0.000110302
7.2946e-05
4.66949e-05
3.3286e-05
2.55782e-05
2.08674e-05
1.84771e-05
1.88863e-05
2.42489e-05
3.7259e-05
4.84318e-05
5.13133e-05
5.54505e-05
6.22287e-05
6.99925e-05
7.76251e-05
8.35129e-05
8.51896e-05
7.9976e-05
6.46111e-05
3.95657e-05
1.81361e-05
9.09026e-06
8.93063e-06
2.73366e-05
8.98792e-06
5.12098e-06
2.26869e-05
6.2361e-05
0.000118984
0.000148137
0.000150579
0.000139273
0.000121265
0.000107309
0.000106785
0.000117815
0.000121617
9.9208e-05
6.86577e-05
4.78651e-05
3.51103e-05
2.68974e-05
2.19789e-05
2.07477e-05
2.59168e-05
4.25764e-05
5.05876e-05
4.46795e-05
4.24243e-05
4.34737e-05
4.62856e-05
4.96724e-05
5.09658e-05
4.55717e-05
3.13345e-05
1.5626e-05
8.33644e-06
1.04552e-05
3.3799e-05
9.35605e-06
5.01212e-06
2.06428e-05
5.82774e-05
0.000109798
0.000138162
0.000145212
0.000141817
0.000132753
0.00011814
9.81151e-05
8.05965e-05
7.29784e-05
7.5926e-05
8.52412e-05
8.965e-05
7.70803e-05
5.57788e-05
3.87397e-05
2.78314e-05
2.21672e-05
2.21437e-05
3.19714e-05
5.77237e-05
6.09737e-05
4.85853e-05
4.29744e-05
4.30205e-05
4.63103e-05
4.50595e-05
2.90769e-05
1.47315e-05
6.05514e-06
6.27668e-06
2.48812e-05
9.56467e-06
5.60548e-06
2.43527e-05
7.1189e-05
0.00013474
0.000160431
0.000153921
0.000132902
0.000112199
0.000100087
9.69705e-05
9.71339e-05
9.11479e-05
7.82165e-05
6.8911e-05
7.03277e-05
8.29931e-05
9.55387e-05
8.29292e-05
5.41269e-05
3.41823e-05
2.48257e-05
2.35981e-05
3.35106e-05
6.82653e-05
8.22562e-05
5.34869e-05
3.78157e-05
3.31524e-05
3.48709e-05
1.37981e-05
7.4091e-06
8.86679e-06
1.1847e-05
4.85455e-05
9.93017e-06
6.62217e-06
3.0711e-05
0.000100897
0.000157431
0.000152058
0.000123298
9.77558e-05
8.40405e-05
7.87926e-05
7.83829e-05
8.25732e-05
9.11309e-05
9.71071e-05
9.03098e-05
7.71551e-05
7.29832e-05
8.21601e-05
9.51271e-05
8.55832e-05
5.44288e-05
3.24887e-05
2.33535e-05
2.3282e-05
3.54678e-05
6.83609e-05
7.20078e-05
4.85226e-05
3.37649e-05
2.46741e-05
9.25624e-06
5.35593e-06
8.95814e-06
2.51254e-05
0.000111439
9.79615e-06
7.35815e-06
3.72005e-05
0.000128136
0.000168393
0.00012834
8.74816e-05
6.8763e-05
6.49386e-05
6.8831e-05
7.52943e-05
8.1648e-05
8.99906e-05
0.000102631
0.000113977
0.000112898
0.000100719
9.25242e-05
9.39882e-05
9.53942e-05
8.00451e-05
5.19611e-05
3.24592e-05
2.47864e-05
2.60758e-05
3.70077e-05
5.64082e-05
6.90775e-05
6.73618e-05
5.46624e-05
2.05515e-05
3.84565e-06
3.02607e-06
7.8005e-06
5.64035e-05
9.78263e-06
8.31351e-06
5.45195e-05
0.000158398
0.000123175
7.353e-05
5.19307e-05
4.97932e-05
6.01657e-05
7.85181e-05
9.69742e-05
0.00010789
0.00011161
0.000114468
0.000120089
0.000125696
0.000126449
0.000122205
0.000117626
0.000113138
9.99484e-05
7.24666e-05
4.48383e-05
2.98935e-05
2.70094e-05
3.99566e-05
7.94348e-05
6.66767e-05
4.59155e-05
1.51386e-05
4.32297e-06
7.2263e-06
1.13909e-05
2.25847e-05
0.000108673
1.06035e-05
8.61331e-06
6.34498e-05
0.00014095
9.40246e-05
5.76659e-05
4.77534e-05
5.47885e-05
7.21923e-05
9.06271e-05
0.000103777
0.000110876
0.000112815
0.00011175
0.00011088
0.000111713
0.00011284
0.000112116
0.000109361
0.000105475
9.86435e-05
8.38227e-05
6.06585e-05
3.97881e-05
2.80725e-05
2.42534e-05
2.55802e-05
2.45416e-05
1.71107e-05
1.19859e-05
8.93346e-06
7.79841e-06
1.48287e-05
5.91745e-05
6.43355e-05
1.00831e-05
8.52833e-06
6.6517e-05
0.000129832
9.55583e-05
6.79369e-05
5.93737e-05
6.21345e-05
6.90645e-05
7.62231e-05
8.24627e-05
8.76687e-05
9.18782e-05
9.50917e-05
9.76488e-05
0.000100348
0.000103607
0.000106674
0.00010815
0.000107305
0.000104358
9.88148e-05
8.79585e-05
7.02004e-05
5.22485e-05
4.0905e-05
3.59199e-05
3.61371e-05
4.42978e-05
4.93456e-05
8.11906e-06
2.31686e-06
2.64089e-06
6.9103e-06
3.68312e-05
9.36107e-06
7.83004e-06
5.02511e-05
0.000124618
0.000134059
0.000114933
8.556e-05
6.59608e-05
5.80879e-05
5.78979e-05
6.22818e-05
6.88579e-05
7.54912e-05
8.11438e-05
8.66745e-05
9.37703e-05
0.000102793
0.000111412
0.000115209
0.000110703
9.87225e-05
8.44967e-05
7.42008e-05
6.93463e-05
6.65684e-05
6.10476e-05
5.18497e-05
4.2227e-05
3.18966e-05
2.59394e-05
2.57524e-05
1.5132e-05
3.20329e-06
7.18694e-06
5.389e-05
1.1127e-05
7.20124e-06
3.86166e-05
0.000103386
0.000132111
0.00013155
0.000109028
7.86465e-05
5.85542e-05
4.90345e-05
4.58031e-05
4.65924e-05
5.03043e-05
5.54689e-05
6.0419e-05
6.54769e-05
7.26842e-05
8.28653e-05
9.3476e-05
9.91225e-05
9.62438e-05
8.65591e-05
7.68239e-05
7.20372e-05
7.1803e-05
6.99077e-05
5.26907e-05
2.35165e-05
1.3921e-05
1.61041e-05
2.79785e-05
5.15776e-05
5.20218e-05
6.77435e-05
9.75764e-05
1.14291e-05
6.63078e-06
3.18503e-05
9.42263e-05
0.000137011
0.000143247
0.000135018
0.000116438
9.04891e-05
6.79799e-05
5.36103e-05
4.56288e-05
4.25803e-05
4.43658e-05
5.10032e-05
6.05662e-05
6.84419e-05
7.14884e-05
7.11711e-05
7.04967e-05
7.04141e-05
7.02799e-05
6.94396e-05
6.78337e-05
6.68336e-05
6.99e-05
7.54739e-05
5.83564e-05
2.52609e-05
5.00966e-06
6.50219e-06
1.67175e-05
3.39705e-05
7.87542e-05
7.96526e-05
1.00103e-05
6.44879e-06
2.95973e-05
9.26564e-05
0.000143879
0.000147735
0.000132502
0.000115453
0.000104884
9.68589e-05
8.29163e-05
6.43242e-05
4.91069e-05
4.10975e-05
4.10862e-05
4.93846e-05
6.38429e-05
7.61958e-05
7.97981e-05
7.84004e-05
7.79902e-05
7.93831e-05
7.90618e-05
7.41414e-05
6.45884e-05
5.20959e-05
3.9441e-05
3.31289e-05
3.76658e-05
3.62969e-05
2.62654e-05
2.13717e-05
1.1738e-05
2.51206e-05
9.47707e-05
9.64209e-06
6.74143e-06
3.07346e-05
9.18018e-05
0.000143657
0.000148689
0.000127145
9.84474e-05
8.2386e-05
8.27065e-05
9.35713e-05
9.68192e-05
7.57125e-05
5.02972e-05
3.73409e-05
3.66077e-05
4.82537e-05
7.50275e-05
0.000110784
0.000129288
0.00011697
9.23272e-05
7.23698e-05
6.05564e-05
5.39326e-05
4.65961e-05
3.41428e-05
2.15444e-05
2.1367e-05
3.9537e-05
8.26442e-05
6.9663e-05
1.30137e-05
1.58175e-05
8.82875e-05
1.0907e-05
7.27287e-06
3.40882e-05
0.000100407
0.000145012
0.000142885
0.000116623
8.75389e-05
7.06918e-05
6.72548e-05
7.68289e-05
9.78837e-05
0.000113906
9.37105e-05
5.89239e-05
4.19859e-05
4.06557e-05
5.15535e-05
7.48745e-05
0.000107156
0.000132068
0.000131691
0.000112814
9.83245e-05
0.00010385
0.000128869
0.000109466
4.18659e-05
4.31606e-06
8.77733e-06
2.48599e-05
3.91727e-05
2.42208e-05
3.4189e-05
0.000129929
1.16886e-05
7.61774e-06
3.61852e-05
0.000109115
0.000148696
0.000133847
9.79945e-05
7.5272e-05
7.03757e-05
7.47987e-05
8.25606e-05
9.26887e-05
0.00010125
9.66741e-05
7.48149e-05
5.52866e-05
5.04295e-05
6.13253e-05
8.91908e-05
0.000132245
0.000174565
0.000187104
0.000157331
0.000105231
5.89922e-05
3.72741e-05
3.88994e-05
3.01269e-05
8.95073e-06
7.2303e-06
2.15625e-05
4.86182e-05
6.41798e-05
9.80554e-05
7.60961e-05
1.10273e-05
7.86566e-06
3.72248e-05
0.000113556
0.000143221
0.000112763
7.14658e-05
5.36136e-05
5.58658e-05
7.26346e-05
9.64093e-05
0.000115731
0.00012331
0.00011434
8.94552e-05
6.47334e-05
5.37519e-05
5.8459e-05
7.96659e-05
0.000115538
0.000146029
0.000141503
0.000108489
7.13935e-05
4.25273e-05
2.74795e-05
3.02552e-05
5.09515e-05
4.39796e-05
1.99909e-05
1.8979e-05
3.20928e-05
5.97055e-05
0.000107148
5.73229e-05
1.03681e-05
8.35898e-06
4.11117e-05
0.000118122
0.000132228
9.80502e-05
6.23392e-05
4.81979e-05
5.13614e-05
6.81438e-05
9.34154e-05
0.000115139
0.000123669
0.000118396
0.000102918
8.33409e-05
6.83264e-05
6.30177e-05
6.71291e-05
7.67895e-05
8.66812e-05
9.62341e-05
0.000110573
0.000126117
0.000117654
7.49194e-05
3.55306e-05
2.13948e-05
2.46582e-05
3.13799e-05
3.08647e-05
3.16782e-05
4.63466e-05
9.81815e-05
6.18795e-05
1.05193e-05
8.54964e-06
4.27691e-05
0.000115263
0.000124363
9.39749e-05
6.17336e-05
4.72533e-05
4.7709e-05
5.9983e-05
8.26215e-05
0.000110002
0.000129769
0.000130357
0.000112201
8.98259e-05
7.57313e-05
7.16315e-05
7.4024e-05
7.98668e-05
9.03527e-05
0.00010397
0.000102399
8.05378e-05
6.2684e-05
5.39114e-05
4.51718e-05
3.26874e-05
2.74472e-05
3.39008e-05
4.40047e-05
4.88389e-05
5.4325e-05
8.04128e-05
6.65623e-05
9.62462e-06
8.53294e-06
4.23992e-05
0.000111301
0.000126588
0.000108078
7.57771e-05
5.2458e-05
4.38874e-05
4.69263e-05
6.03023e-05
8.26562e-05
0.00010725
0.000122323
0.000118931
0.000101711
8.67741e-05
8.23913e-05
8.3719e-05
7.73934e-05
6.29469e-05
5.75632e-05
6.62054e-05
8.40554e-05
0.000101149
0.000111635
0.000111645
9.03644e-05
5.39915e-05
3.50968e-05
3.69414e-05
4.51432e-05
3.61705e-05
3.59343e-05
7.56758e-05
1.00496e-05
8.34589e-06
3.95775e-05
0.000102876
0.000126964
0.000122807
0.000100172
6.65749e-05
4.3368e-05
3.47377e-05
3.80797e-05
5.41898e-05
8.20117e-05
0.000109033
0.000117535
0.000104593
8.62443e-05
7.59227e-05
7.15239e-05
6.2464e-05
5.41561e-05
5.95379e-05
8.14244e-05
0.000109939
0.000122271
0.000114813
9.67619e-05
7.43773e-05
5.40406e-05
4.47163e-05
4.32602e-05
3.91204e-05
3.28576e-05
4.9132e-05
0.000119576
1.19521e-05
8.1958e-06
3.66324e-05
9.8416e-05
0.000131393
0.000134011
0.000123814
9.92478e-05
6.23278e-05
3.56128e-05
2.572e-05
2.89717e-05
4.47497e-05
7.06389e-05
9.39472e-05
0.000101416
9.35757e-05
8.09546e-05
7.19091e-05
6.70163e-05
6.44049e-05
6.69668e-05
7.92997e-05
9.62979e-05
0.000100087
8.02419e-05
5.09143e-05
3.56427e-05
3.98983e-05
6.32172e-05
7.76262e-05
6.89747e-05
6.81195e-05
0.000107249
9.86258e-05
1.22608e-05
7.98309e-06
3.40141e-05
9.53845e-05
0.000135932
0.000138485
0.000128727
0.000115506
9.24606e-05
5.27337e-05
2.71354e-05
2.09922e-05
2.77006e-05
4.55047e-05
6.98887e-05
8.75046e-05
9.03303e-05
8.52393e-05
8.10201e-05
8.10914e-05
8.58218e-05
9.45029e-05
0.000103567
0.000105205
9.40039e-05
7.12331e-05
4.46611e-05
2.82708e-05
2.77175e-05
4.59477e-05
8.19323e-05
0.000103916
0.00011787
0.000145381
7.01123e-05
1.10465e-05
8.05705e-06
3.39883e-05
9.56314e-05
0.000135744
0.000135869
0.000120746
0.000101309
8.17794e-05
5.54562e-05
2.92503e-05
1.96875e-05
2.43618e-05
4.0791e-05
6.3727e-05
7.97714e-05
8.31468e-05
8.20626e-05
8.33249e-05
8.60791e-05
8.79601e-05
9.01833e-05
9.38444e-05
9.65053e-05
9.40434e-05
8.32626e-05
6.33063e-05
4.19019e-05
3.22472e-05
3.81693e-05
5.83202e-05
8.55078e-05
0.000112802
0.000136281
6.66893e-05
1.07541e-05
8.28836e-06
3.65916e-05
0.000101041
0.00013515
0.000131823
0.000113599
8.94513e-05
6.51015e-05
4.17207e-05
2.30917e-05
1.68568e-05
2.47924e-05
4.58299e-05
6.74338e-05
7.37319e-05
6.87652e-05
6.56059e-05
7.31079e-05
9.43331e-05
0.000123949
0.000145609
0.000148072
0.000135017
0.000115417
9.41338e-05
7.17908e-05
5.03973e-05
3.68463e-05
3.57012e-05
4.6066e-05
6.67787e-05
9.8194e-05
0.000129493
6.39761e-05
1.11843e-05
8.72677e-06
4.16523e-05
0.000112242
0.000136743
0.000127708
0.000105561
7.90196e-05
5.40958e-05
3.32354e-05
1.88237e-05
1.46071e-05
2.45639e-05
4.56057e-05
5.92517e-05
5.98374e-05
5.77712e-05
6.09981e-05
7.5909e-05
0.000112202
0.000173463
0.000223075
0.000223529
0.000189922
0.000147723
0.000109569
7.80438e-05
5.31426e-05
3.67111e-05
3.11349e-05
3.68925e-05
5.61894e-05
9.25202e-05
0.000123516
5.36606e-05
1.11105e-05
8.88261e-06
4.39857e-05
0.000118488
0.000137504
0.000124879
0.000101796
7.72941e-05
5.42899e-05
3.3686e-05
1.84035e-05
1.19267e-05
1.819e-05
3.4791e-05
4.91673e-05
5.4216e-05
5.41972e-05
5.57466e-05
6.43035e-05
8.51886e-05
0.000123985
0.000177424
0.000219201
0.000225167
0.000198722
0.000156191
0.000112774
7.68088e-05
5.11232e-05
3.65684e-05
3.334e-05
4.32852e-05
7.29746e-05
0.000108652
4.79969e-05
1.0793e-05
8.81809e-06
4.20777e-05
0.000117217
0.000138196
0.000123892
0.000100177
7.86339e-05
5.98662e-05
3.97455e-05
2.08085e-05
9.73034e-06
1.08727e-05
2.25213e-05
3.58813e-05
4.52149e-05
5.21179e-05
5.77109e-05
6.37973e-05
7.43871e-05
9.32056e-05
0.0001212
0.000153719
0.00018062
0.00019193
0.00018286
0.000155495
0.00011875
8.37283e-05
5.74368e-05
4.21409e-05
3.94276e-05
5.53498e-05
9.78333e-05
5.30631e-05
1.09053e-05
8.81599e-06
4.08828e-05
0.000114324
0.00013589
0.000120584
9.58349e-05
7.51798e-05
6.10836e-05
4.6683e-05
2.64765e-05
9.87907e-06
5.32387e-06
1.22569e-05
2.58262e-05
3.91323e-05
5.47761e-05
7.33693e-05
8.76298e-05
9.47211e-05
9.97179e-05
0.000108149
0.000121917
0.000138762
0.000153844
0.000162458
0.000160164
0.000143088
0.000113007
8.00213e-05
5.48163e-05
4.32847e-05
5.21141e-05
9.6038e-05
6.63023e-05
1.13436e-05
8.9921e-06
4.24299e-05
0.000115453
0.000134744
0.000120016
9.54431e-05
7.27485e-05
5.61818e-05
4.22684e-05
2.61412e-05
1.0276e-05
3.00503e-06
5.82775e-06
1.67103e-05
3.07953e-05
4.73552e-05
7.4646e-05
0.000113281
0.000145047
0.000154552
0.000148058
0.00013887
0.000133853
0.000133424
0.000135
0.000135471
0.000130866
0.000115034
8.73386e-05
6.07568e-05
4.81507e-05
5.83455e-05
0.000106825
7.56314e-05
1.17591e-05
8.99463e-06
4.46733e-05
0.000119078
0.00013419
0.000119036
9.47792e-05
7.23841e-05
5.48498e-05
3.83456e-05
2.07826e-05
7.15597e-06
2.39836e-06
4.9181e-06
1.2355e-05
2.70864e-05
4.82395e-05
8.04699e-05
0.000133253
0.000192675
0.000221276
0.000212304
0.000186605
0.000160441
0.000139543
0.000124063
0.000112389
0.000103018
9.33922e-05
7.87454e-05
6.1825e-05
5.51176e-05
7.20541e-05
0.000124762
7.44335e-05
1.19617e-05
8.80069e-06
4.45746e-05
0.000119256
0.00013348
0.000118528
9.38444e-05
7.13782e-05
5.45002e-05
3.83985e-05
1.99362e-05
5.78239e-06
2.80578e-06
1.09168e-05
2.21443e-05
3.45941e-05
6.15467e-05
0.000108688
0.000171622
0.000228042
0.000252242
0.000243958
0.000217365
0.000184409
0.000151966
0.000123246
9.94902e-05
8.19159e-05
7.19338e-05
6.71292e-05
6.3371e-05
6.70826e-05
9.35452e-05
0.000142743
7.00325e-05
1.19912e-05
8.6923e-06
4.4001e-05
0.000118799
0.000131444
0.000115175
9.06499e-05
6.9331e-05
5.43564e-05
4.13136e-05
2.47301e-05
9.05647e-06
3.77926e-06
1.93286e-05
5.28567e-05
6.72253e-05
8.33361e-05
0.000119733
0.00017294
0.000220227
0.000244238
0.000244302
0.000226234
0.000196198
0.000160009
0.000123116
9.04512e-05
6.65069e-05
5.49606e-05
5.62452e-05
6.59621e-05
8.41664e-05
0.000119842
0.000152954
6.37183e-05
1.18193e-05
8.79561e-06
4.3608e-05
0.00011855
0.000132845
0.000117286
9.44169e-05
7.43732e-05
6.13123e-05
5.46232e-05
4.69844e-05
2.58938e-05
5.34555e-06
3.0634e-06
1.68589e-05
5.17947e-05
7.52746e-05
9.1716e-05
0.000126846
0.000184124
0.000235874
0.000254696
0.000244441
0.000216828
0.000178979
0.000136428
9.59482e-05
6.47457e-05
4.78901e-05
4.75916e-05
6.33064e-05
9.21248e-05
0.00012962
0.000147955
5.74016e-05
1.14902e-05
8.79377e-06
4.37953e-05
0.000120099
0.000133787
0.000117433
9.44724e-05
7.49185e-05
6.03377e-05
5.00264e-05
4.51333e-05
4.32649e-05
2.52805e-05
1.38947e-06
2.27939e-06
1.2354e-05
5.75077e-05
0.000109144
0.000129498
0.000155926
0.000202782
0.000248483
0.000263026
0.000246126
0.000209419
0.000161769
0.000112317
7.16466e-05
4.68512e-05
3.99672e-05
5.30608e-05
8.74404e-05
0.000126328
0.000135689
5.20867e-05
1.12196e-05
8.64681e-06
4.32644e-05
0.00012062
0.000134397
0.00011641
9.25079e-05
7.57689e-05
6.58515e-05
5.58131e-05
4.18324e-05
2.78714e-05
1.74294e-05
8.64633e-06
1.27791e-06
2.40007e-06
2.35664e-05
9.63955e-05
0.000159046
0.000163258
0.00017049
0.00019724
0.000226083
0.000232782
0.000214651
0.000179625
0.000134805
8.97633e-05
5.60092e-05
3.9465e-05
4.21378e-05
7.0906e-05
0.000117534
0.000123871
4.76996e-05
1.09367e-05
8.59438e-06
4.32466e-05
0.00012
0.000132587
0.000111243
8.54297e-05
7.01315e-05
6.44141e-05
6.16334e-05
5.41662e-05
3.80104e-05
1.84503e-05
3.94316e-06
1.03243e-06
1.24729e-06
2.7754e-06
2.97763e-05
0.000105935
0.000156884
0.000152423
0.000153382
0.000174414
0.000200547
0.000204773
0.000183135
0.000148134
0.000109523
7.47442e-05
5.08895e-05
4.25312e-05
5.40131e-05
9.20599e-05
0.000121393
4.90358e-05
1.10552e-05
8.57299e-06
4.38657e-05
0.000121805
0.000131005
0.000106262
7.98472e-05
6.66321e-05
6.33792e-05
6.20692e-05
5.66171e-05
4.51677e-05
2.86967e-05
1.16412e-05
3.53867e-06
2.13371e-06
3.03613e-06
2.62499e-06
3.04927e-05
0.00011115
0.000171483
0.000149417
0.000133185
0.000143346
0.00017477
0.000198766
0.000185841
0.000144619
9.83391e-05
6.39041e-05
4.66054e-05
4.73148e-05
7.32194e-05
0.000121526
5.58442e-05
1.16199e-05
8.60646e-06
4.41998e-05
0.000122073
0.000130967
0.000103985
7.65322e-05
6.5163e-05
6.70499e-05
7.37913e-05
7.5569e-05
6.748e-05
5.08382e-05
2.99472e-05
1.06925e-05
4.39768e-06
4.26446e-06
1.39152e-06
2.81417e-06
1.63683e-05
7.38667e-05
0.00017712
0.000168482
0.000129424
0.000113612
0.000122681
0.000146219
0.000154382
0.000123759
7.71379e-05
4.88582e-05
4.52283e-05
7.21199e-05
0.000130012
5.6143e-05
1.16389e-05
8.72855e-06
4.58039e-05
0.000123456
0.000129004
0.000100658
7.25794e-05
6.09892e-05
6.38601e-05
7.51216e-05
8.59829e-05
8.86177e-05
8.02928e-05
6.24202e-05
3.91587e-05
1.63886e-05
3.90374e-06
1.49963e-07
2.50131e-07
2.03503e-06
7.89303e-06
4.02633e-05
0.000125012
0.000193984
0.000162244
0.000118922
9.83476e-05
9.65885e-05
9.87142e-05
8.34474e-05
5.88503e-05
5.23657e-05
7.92787e-05
0.000135766
5.24305e-05
1.11808e-05
8.8246e-06
4.74136e-05
0.000122941
0.000127031
0.000100855
7.34469e-05
6.11411e-05
6.37388e-05
7.69573e-05
9.35989e-05
0.000105044
0.0001057
9.38387e-05
7.24776e-05
4.88912e-05
2.66598e-05
6.84277e-06
5.9166e-06
6.88638e-07
2.65498e-06
2.31014e-06
1.62893e-05
5.41045e-05
0.000133786
0.000184192
0.000148673
9.6576e-05
6.76921e-05
5.8025e-05
5.62513e-05
6.37059e-05
9.63789e-05
0.00013707
5.09326e-05
1.09182e-05
8.86171e-06
4.7807e-05
0.000121084
0.000128031
0.000106938
7.89872e-05
6.17336e-05
5.90675e-05
6.86463e-05
8.629e-05
0.000105246
0.000119113
0.000123534
0.000114218
9.0563e-05
6.27844e-05
4.04793e-05
2.17419e-05
3.8164e-06
7.17753e-06
4.69582e-06
1.39439e-06
4.67803e-06
1.8849e-05
4.99375e-05
0.000106899
0.000146426
0.000107565
6.2991e-05
4.9056e-05
6.05643e-05
0.000101261
0.000132616
4.96396e-05
1.06491e-05
8.83122e-06
4.67455e-05
0.00011907
0.000132378
0.00011946
9.40415e-05
6.96025e-05
5.74797e-05
5.88825e-05
7.18873e-05
9.246e-05
0.000113265
0.000127899
0.000133793
0.000128976
0.000110899
8.39174e-05
5.96303e-05
4.25961e-05
2.82784e-05
1.17434e-05
8.78938e-06
2.60587e-06
5.88042e-06
5.96998e-06
1.55175e-05
3.68802e-05
7.53519e-05
9.83392e-05
7.79093e-05
7.37894e-05
0.000102559
0.000133811
5.03994e-05
1.03028e-05
8.76482e-06
4.44627e-05
0.000116336
0.000136406
0.000130135
0.000111566
8.49007e-05
6.20121e-05
5.19798e-05
5.5351e-05
7.09499e-05
9.57481e-05
0.000122433
0.000142559
0.000151161
0.000146592
0.000129437
0.000104729
8.15875e-05
6.54106e-05
5.50092e-05
4.50719e-05
3.0416e-05
1.25302e-05
7.69676e-07
1.83187e-06
3.14227e-06
1.24641e-05
3.38096e-05
6.75975e-05
9.4487e-05
0.000119701
0.000137323
5.455e-05
1.02142e-05
8.66842e-06
4.2048e-05
0.000113521
0.000138992
0.000135391
0.000122169
0.000102484
7.71991e-05
5.66536e-05
4.95262e-05
5.64286e-05
7.63143e-05
0.000105886
0.000137428
0.000161889
0.000172738
0.000167022
0.000147198
0.000121948
0.000100886
8.80939e-05
8.21561e-05
7.76184e-05
6.60322e-05
4.36654e-05
2.11567e-05
6.68339e-06
2.01123e-07
3.79196e-06
2.1385e-05
5.44087e-05
0.000101881
0.000129779
5.97784e-05
1.04711e-05
8.64617e-06
4.0811e-05
0.000112692
0.000140182
0.000134576
0.000120289
0.000105501
8.81761e-05
6.64793e-05
5.17993e-05
5.15775e-05
6.63578e-05
9.50062e-05
0.000132144
0.000167469
0.000190724
0.000195395
0.000181158
0.00015619
0.000132602
0.000117775
0.000112293
0.000111321
0.000104407
8.16881e-05
5.25373e-05
3.17971e-05
1.72563e-05
3.91628e-06
3.16473e-06
1.93254e-05
5.35029e-05
0.000103259
6.67127e-05
1.10308e-05
8.71724e-06
4.1094e-05
0.000113322
0.00013872
0.00012828
0.000109789
9.63338e-05
8.71389e-05
7.36628e-05
5.85991e-05
5.45582e-05
6.64872e-05
9.45509e-05
0.000134206
0.000174794
0.000204538
0.000214923
0.000203602
0.000178608
0.000154297
0.000139866
0.000135897
0.000135905
0.000126806
9.89565e-05
6.73203e-05
4.84825e-05
3.89917e-05
1.94025e-05
2.09337e-06
6.64459e-06
2.68494e-05
7.30135e-05
7.27065e-05
1.17906e-05
8.86178e-06
4.2823e-05
0.000115753
0.000135053
0.000118193
9.57612e-05
8.3144e-05
7.85516e-05
7.28728e-05
6.33727e-05
6.05658e-05
7.3101e-05
0.000103048
0.000145245
0.000187735
0.000218543
0.000229173
0.000216934
0.000190688
0.000166596
0.000154292
0.000152826
0.000152379
0.000137677
0.000103985
7.1928e-05
5.59701e-05
4.90593e-05
2.89882e-05
6.47601e-06
5.23399e-06
2.12295e-05
6.92143e-05
7.18241e-05
1.24377e-05
8.98865e-06
4.49423e-05
0.000119188
0.000130083
0.000105935
8.28859e-05
7.41009e-05
7.39612e-05
7.27853e-05
6.76409e-05
6.76458e-05
8.23197e-05
0.000114532
0.000158202
0.00020073
0.000230538
0.000239237
0.000224412
0.000196509
0.000172944
0.000162855
0.000163407
0.000161609
0.000141424
0.000103623
7.13005e-05
5.63679e-05
4.7843e-05
2.77759e-05
9.74224e-06
8.99364e-06
2.74027e-05
8.92707e-05
6.35978e-05
1.26546e-05
9.03985e-06
4.59413e-05
0.000120847
0.000122318
9.09411e-05
7.001e-05
6.67436e-05
7.19465e-05
7.43542e-05
7.13196e-05
7.28095e-05
8.90363e-05
0.000123228
0.000168805
0.000212418
0.000242011
0.000248879
0.000231205
0.000201154
0.000177136
0.000167994
0.00016965
0.000166773
0.000142731
0.000101528
6.72529e-05
5.14882e-05
4.28109e-05
2.58304e-05
1.25543e-05
1.4704e-05
4.00438e-05
0.000113682
5.43707e-05
1.23832e-05
9.11073e-06
4.6694e-05
0.000120049
0.000111851
7.63335e-05
5.86795e-05
6.03272e-05
7.11208e-05
7.73689e-05
7.5061e-05
7.60253e-05
9.21609e-05
0.000127347
0.000174844
0.000220398
0.000251317
0.000258976
0.000241612
0.000210731
0.000184617
0.000173175
0.000173356
0.000170192
0.000146139
0.000103303
6.49583e-05
4.5292e-05
3.6912e-05
2.58475e-05
1.69063e-05
2.24829e-05
5.75225e-05
0.000123597
4.89184e-05
1.19232e-05
9.19938e-06
4.80738e-05
0.000117158
0.000100975
6.51959e-05
4.95983e-05
5.30524e-05
6.71664e-05
7.74022e-05
7.67957e-05
7.75832e-05
9.36325e-05
0.00012987
0.00017926
0.000226208
0.000257464
0.000265312
0.000249071
0.000219278
0.000192466
0.000178768
0.000176659
0.000173109
0.000150852
0.000108379
6.62673e-05
4.17653e-05
3.2403e-05
2.64528e-05
2.20182e-05
3.20535e-05
7.71351e-05
0.000124339
4.58961e-05
1.14492e-05
9.20417e-06
4.94869e-05
0.000113961
9.55881e-05
6.14584e-05
4.47774e-05
4.56317e-05
5.822e-05
7.05218e-05
7.33026e-05
7.59692e-05
9.27007e-05
0.000129181
0.000178157
0.000223671
0.000253264
0.000261299
0.000248699
0.000224223
0.000200754
0.000187249
0.000183901
0.000180837
0.00016235
0.000122383
7.59199e-05
4.39195e-05
3.04132e-05
2.72483e-05
2.78048e-05
4.15987e-05
8.99923e-05
0.00012542
4.52756e-05
1.11439e-05
8.96639e-06
4.77495e-05
0.000111878
0.000100686
6.73437e-05
4.43285e-05
3.79301e-05
4.43899e-05
5.66723e-05
6.46056e-05
7.11913e-05
8.92676e-05
0.000125541
0.000173554
0.000218299
0.000248499
0.00025969
0.000252495
0.000232908
0.000210936
0.000195381
0.000189024
0.000186366
0.000174588
0.00014289
9.61049e-05
5.47834e-05
3.26359e-05
2.65884e-05
3.05695e-05
4.89731e-05
9.83524e-05
0.000130699
4.75896e-05
1.11564e-05
8.67687e-06
4.43772e-05
0.000111143
0.000110381
7.92295e-05
4.86897e-05
3.39253e-05
3.2564e-05
4.10952e-05
5.21325e-05
6.25822e-05
8.21591e-05
0.000118697
0.000165621
0.000206736
0.000232021
0.000241033
0.000238241
0.000229507
0.000220308
0.000214321
0.000211822
0.000208154
0.000194588
0.000163789
0.000117484
7.03756e-05
3.96265e-05
2.80214e-05
3.07483e-05
5.0606e-05
0.000100225
0.000133686
4.94203e-05
1.12328e-05
8.59571e-06
4.27674e-05
0.000111486
0.000112469
8.26487e-05
5.48615e-05
3.68985e-05
2.91915e-05
3.22741e-05
4.33e-05
5.51293e-05
7.11929e-05
0.000101961
0.000146367
0.000188463
0.000215957
0.000229214
0.000234069
0.000235406
0.000235958
0.000236612
0.000236101
0.000230536
0.000214295
0.000182834
0.000136656
8.60363e-05
4.84062e-05
3.15493e-05
3.1777e-05
5.00774e-05
9.80861e-05
0.000138294
5.2196e-05
1.14876e-05
8.79083e-06
4.48991e-05
0.000114506
0.000100702
6.73666e-05
5.12048e-05
4.25764e-05
3.37041e-05
3.12272e-05
3.94096e-05
5.36309e-05
6.8578e-05
9.02784e-05
0.000123868
0.000161224
0.000190445
0.000209497
0.000223236
0.000235455
0.000246528
0.000254437
0.000256107
0.00024832
0.000228299
0.000194298
0.000147245
9.51458e-05
5.39597e-05
3.37001e-05
3.27102e-05
5.26689e-05
0.0001041
0.000142022
5.24821e-05
1.15582e-05
9.01858e-06
4.9266e-05
0.000113523
8.4105e-05
5.10408e-05
4.0973e-05
4.25155e-05
4.11215e-05
3.66753e-05
3.90226e-05
5.01667e-05
6.8089e-05
9.26343e-05
0.000123307
0.000154508
0.000179575
0.000198509
0.000215903
0.000234488
0.000252629
0.000265637
0.00026863
0.000258663
0.000234972
0.000198156
0.000150625
9.98392e-05
5.89823e-05
3.71567e-05
3.45675e-05
5.45179e-05
0.000108016
0.000142896
5.10454e-05
1.14459e-05
9.04905e-06
5.23895e-05
0.000108436
7.44321e-05
4.46639e-05
3.64144e-05
4.12099e-05
4.76469e-05
4.77648e-05
4.73496e-05
5.04466e-05
5.83306e-05
7.47664e-05
0.000101363
0.000131952
0.000157386
0.000176766
0.000196105
0.000219559
0.000245111
0.000265659
0.000273692
0.000265441
0.000241081
0.000202574
0.000153466
0.000102083
6.14847e-05
3.97285e-05
3.69064e-05
5.72039e-05
0.000112462
0.000144406
5.03275e-05
1.14176e-05
8.79231e-06
5.19333e-05
0.000104904
7.38168e-05
4.50825e-05
3.50118e-05
3.75863e-05
4.5197e-05
4.91475e-05
5.12502e-05
5.56132e-05
6.26433e-05
7.49195e-05
9.58424e-05
0.000122595
0.000146247
0.000163594
0.000180825
0.000204207
0.000232985
0.000258705
0.000270766
0.000263627
0.000238126
0.000198149
0.000149193
0.000100148
6.22533e-05
4.20077e-05
4.04004e-05
6.34293e-05
0.000121116
0.00014348
4.85168e-05
1.1216e-05
8.45525e-06
4.7551e-05
0.000107693
8.8383e-05
5.57797e-05
3.85413e-05
3.53396e-05
4.13005e-05
4.86274e-05
5.10235e-05
5.23354e-05
5.77928e-05
6.97486e-05
8.93843e-05
0.000114231
0.000136396
0.000150959
0.000163389
0.000182434
0.000210943
0.000242354
0.000263406
0.000263542
0.000240913
0.000199922
0.000148641
9.88821e-05
6.22118e-05
4.33696e-05
4.31758e-05
6.91566e-05
0.000128122
0.000141719
4.67754e-05
1.09708e-05
8.27824e-06
4.34259e-05
0.000108794
9.6379e-05
6.5211e-05
4.48733e-05
3.5955e-05
3.66631e-05
4.49937e-05
5.3762e-05
5.63622e-05
5.76764e-05
6.55466e-05
8.3405e-05
0.000109166
0.000133526
0.000147337
0.00015402
0.000164887
0.000186635
0.00021667
0.000243694
0.000254618
0.000243114
0.000210264
0.000162035
0.000110178
6.9429e-05
4.75923e-05
4.58328e-05
7.08642e-05
0.000129168
0.000142988
4.69019e-05
1.08643e-05
8.441e-06
4.33196e-05
0.000112143
8.14826e-05
5.64551e-05
4.92312e-05
4.36649e-05
4.02569e-05
4.43088e-05
5.41051e-05
6.13883e-05
6.31345e-05
6.76374e-05
8.27231e-05
0.000109331
0.0001379
0.000153291
0.00015478
0.000157044
0.000171803
0.000199816
0.000230342
0.000247265
0.000241695
0.000214383
0.00017076
0.000120639
7.8105e-05
5.33136e-05
4.91938e-05
7.19205e-05
0.000128726
0.000145726
4.85597e-05
1.09802e-05
9.01151e-06
5.0712e-05
0.000104869
4.90479e-05
3.70074e-05
4.50034e-05
5.44021e-05
5.53203e-05
5.79756e-05
6.65035e-05
7.30851e-05
7.23059e-05
7.18061e-05
8.17965e-05
0.000105912
0.000137097
0.000156967
0.0001567
0.000149764
0.000152886
0.000172424
0.000203504
0.000230419
0.000237395
0.000220272
0.000183342
0.000135444
9.0559e-05
6.16025e-05
5.38889e-05
7.32829e-05
0.000128717
0.000150439
4.99103e-05
1.10075e-05
9.53947e-06
7.09086e-05
6.10099e-05
2.67959e-05
2.88029e-05
4.92122e-05
7.11713e-05
8.00719e-05
8.40383e-05
8.94173e-05
9.17038e-05
8.72521e-05
8.256e-05
8.78234e-05
0.000108409
0.00014014
0.0001649
0.00016707
0.000154668
0.000146421
0.00015251
0.00017274
0.000197804
0.000212775
0.000207937
0.000183151
0.000144432
0.000103098
7.26483e-05
6.17265e-05
7.72083e-05
0.000129425
0.000160354
5.34518e-05
1.11766e-05
9.55266e-06
9.76932e-05
3.24416e-05
1.85864e-05
3.63064e-05
7.86744e-05
9.89748e-05
0.000104686
0.000106036
0.000105294
0.000101499
9.49925e-05
9.06926e-05
9.53885e-05
0.000113369
0.000141633
0.000165011
0.000167742
0.000153908
0.000141006
0.000140794
0.000155228
0.000178654
0.00019873
0.000202644
0.000185217
0.000150432
0.00011048
8.04855e-05
6.98586e-05
8.59682e-05
0.000138222
0.000169709
5.75984e-05
1.14462e-05
9.16062e-06
9.72933e-05
2.76834e-05
1.78212e-05
4.36297e-05
9.64427e-05
0.000109621
0.000113159
0.000114026
0.000111711
0.000106328
0.000100574
9.93254e-05
0.00010723
0.000126252
0.000151887
0.000170548
0.000169102
0.000150786
0.000132199
0.00012635
0.00013636
0.000156732
0.000175439
0.000181862
0.000172174
0.000147729
0.000115781
8.95328e-05
8.0911e-05
9.95328e-05
0.000151807
0.000177825
5.92241e-05
1.14527e-05
8.83452e-06
7.09842e-05
4.34504e-05
1.82933e-05
2.39019e-05
6.10508e-05
9.34862e-05
0.000108023
0.000114608
0.000115275
0.000110541
0.000104331
0.000103044
0.000112132
0.00013385
0.000163454
0.000186305
0.000187205
0.000166509
0.000139835
0.000122832
0.000122888
0.000139525
0.000162517
0.00017429
0.000166698
0.00014475
0.000118196
9.77856e-05
9.36491e-05
0.000115861
0.000166502
0.000186125
6.137e-05
1.14717e-05
8.68438e-06
4.71606e-05
8.15351e-05
2.35908e-05
1.29154e-05
2.56658e-05
6.24596e-05
9.87061e-05
0.00011828
0.000126601
0.00012653
0.000121239
0.000117067
0.000120337
0.000133935
0.000155025
0.00017325
0.000176251
0.000162389
0.000141925
0.000125414
0.00011843
0.000123237
0.000138253
0.000154553
0.000158945
0.0001468
0.00012606
0.000109813
0.000109568
0.00013446
0.000180448
0.000192772
6.47232e-05
1.15833e-05
8.55656e-06
4.08802e-05
8.8047e-05
3.46938e-05
1.26284e-05
1.35599e-05
3.53083e-05
7.96447e-05
0.00011663
0.000133896
0.000136778
0.000131763
0.000128441
0.000136357
0.000159927
0.000193173
0.000215523
0.000206831
0.000172443
0.000136709
0.00011639
0.000113649
0.000123088
0.000137161
0.000148812
0.000151931
0.000143911
0.000129397
0.000118903
0.000123306
0.000149945
0.000189879
0.000195038
6.6565e-05
1.17159e-05
8.58062e-06
3.89948e-05
8.96604e-05
4.18044e-05
1.5462e-05
1.1169e-05
2.34317e-05
6.16144e-05
0.000113782
0.000149575
0.000165481
0.000164748
0.00015347
0.000144564
0.000150542
0.00017574
0.000209474
0.000221879
0.000194417
0.000148461
0.000114634
0.000103655
0.000112426
0.000131721
0.000148218
0.00015362
0.00014848
0.000138802
0.000133626
0.000142202
0.00016893
0.000201024
0.000195289
6.55673e-05
1.16996e-05
8.90461e-06
3.96953e-05
7.52452e-05
2.26148e-05
1.22802e-05
1.27092e-05
2.60138e-05
6.85503e-05
0.000127585
0.000165261
0.000180573
0.000182434
0.000180268
0.000182663
0.00019606
0.000221287
0.000245376
0.000243327
0.00020664
0.000157034
0.000119775
0.000104799
0.000110733
0.000129571
0.000146394
0.000151464
0.000148034
0.000143891
0.000146082
0.000159977
0.000185371
0.000208636
0.000194028
6.51145e-05
1.17469e-05
9.43797e-06
4.8465e-05
3.39262e-05
8.59014e-06
8.32497e-06
1.71861e-05
4.58528e-05
0.000123095
0.000176285
0.000206628
0.0002263
0.000238928
0.00024639
0.000251447
0.000256213
0.00025886
0.000252009
0.000227586
0.000187272
0.000144251
0.000112448
9.87832e-05
0.00010441
0.000125683
0.000149073
0.000158853
0.000156126
0.000152011
0.000155577
0.000170662
0.000193722
0.000211137
0.000189578
6.3656e-05
1.17737e-05
9.4382e-06
7.40812e-05
1.11647e-05
3.29745e-06
1.45322e-05
4.10014e-05
8.91396e-05
0.000155917
0.0001652
0.000170647
0.000180171
0.000195842
0.000216969
0.000240125
0.000259954
0.000269071
0.000259862
0.000230085
0.000186952
0.000143483
0.00011072
9.40053e-05
9.44499e-05
0.000110336
0.000134182
0.000152677
0.000159596
0.00016077
0.000165549
0.000179304
0.0001995
0.000213676
0.000186929
6.0924e-05
1.1603e-05
8.57006e-06
5.48562e-05
6.36612e-06
3.62149e-06
3.05269e-05
0.000138115
0.000184289
0.000191733
0.000189971
0.000186924
0.000187534
0.000195128
0.000211417
0.000234441
0.000257215
0.000269219
0.000261226
0.000231732
0.000188874
0.000145194
0.000110869
9.11237e-05
8.75495e-05
9.93661e-05
0.000121072
0.00014214
0.000156905
0.000167411
0.00017825
0.000192441
0.000208036
0.000215738
0.000183611
6.01419e-05
1.15562e-05
8.23801e-06
4.74675e-05
2.37022e-05
4.39582e-06
8.47167e-06
4.73649e-05
0.000131213
0.000182872
0.000199923
0.000203775
0.000202089
0.00020102
0.000206096
0.000220058
0.000240829
0.000259965
0.00026484
0.000246742
0.000208558
0.000162484
0.000121446
9.35935e-05
8.22037e-05
8.81304e-05
0.000108705
0.000132282
0.000148284
0.000160414
0.000174564
0.000191305
0.000206197
0.000211357
0.000180978
6.18611e-05
1.17886e-05
8.9197e-06
3.59583e-05
5.08551e-05
8.29101e-06
2.07507e-06
9.42874e-06
5.83016e-05
0.000172295
0.00025847
0.000301003
0.000312521
0.000300384
0.000282388
0.000274151
0.00027941
0.000291488
0.000296518
0.000281017
0.000242673
0.000191491
0.000141347
0.000102804
8.08653e-05
7.72577e-05
9.3749e-05
0.000127277
0.000156893
0.000169215
0.000176244
0.00018792
0.000203135
0.0002114
0.000181264
6.03316e-05
1.17108e-05
9.34222e-06
4.60016e-05
2.52894e-05
5.2045e-06
1.27993e-06
2.01918e-06
3.50201e-05
0.000169224
0.000321186
0.000358032
0.000369706
0.000379707
0.000388126
0.000351584
0.000317839
0.000305266
0.000303041
0.000293656
0.000265569
0.000220042
0.000167626
0.000120627
8.75991e-05
7.17085e-05
7.37979e-05
9.56535e-05
0.000134107
0.000168868
0.000187115
0.000198152
0.000209012
0.00021338
0.000174607
5.58636e-05
1.12604e-05
8.79478e-06
5.37015e-05
1.16233e-05
1.54979e-06
5.39438e-07
2.54151e-06
2.3248e-05
0.000127382
0.00028836
0.000322258
0.000336256
0.000343689
0.000340361
0.000324576
0.00030249
0.000284397
0.00027426
0.000266495
0.000251018
0.000222066
0.000182341
0.000139918
0.00010363
7.97217e-05
7.08311e-05
7.78613e-05
0.000100821
0.0001348
0.000168133
0.000191613
0.000204143
0.000204025
0.000165819
5.53725e-05
1.12727e-05
7.82519e-06
4.40569e-05
4.10709e-05
1.38536e-05
3.17697e-06
6.00957e-07
6.07798e-06
3.88394e-05
0.000140345
0.000220777
0.000238783
0.000252351
0.000266003
0.00027124
0.000266755
0.000257782
0.000250189
0.000245369
0.000238927
0.000224025
0.000197254
0.000161657
0.000124842
9.49562e-05
7.75205e-05
7.51944e-05
8.89358e-05
0.000115227
0.000144361
0.000170674
0.000190507
0.000197545
0.000171967
6.09392e-05
1.18535e-05
8.05006e-06
3.83104e-05
7.87774e-05
7.32711e-05
2.82599e-05
8.77517e-06
1.04496e-06
3.32769e-07
1.14009e-05
5.13275e-05
0.000154614
0.000220536
0.000245159
0.000266385
0.000277349
0.000274615
0.000266099
0.000258401
0.000251414
0.000240384
0.000220448
0.000190207
0.000153015
0.0001162
8.78836e-05
7.35851e-05
7.64276e-05
9.78526e-05
0.000130085
0.000157962
0.000180901
0.000196928
0.000179641
6.33914e-05
1.20849e-05
8.11891e-06
4.21108e-05
0.000114432
0.000123566
0.000121507
6.82457e-05
2.11401e-05
4.46677e-06
7.75634e-07
1.70093e-06
1.91282e-05
7.96587e-05
0.000201374
0.000256611
0.00027849
0.000290075
0.000286799
0.000278081
0.000273727
0.000271547
0.000260907
0.000233495
0.000190871
0.000142911
0.000101352
7.3982e-05
6.35466e-05
7.1785e-05
0.000101314
0.000142962
0.000175367
0.000191724
0.000164886
5.50867e-05
1.14161e-05
8.07102e-06
3.60149e-05
9.7337e-05
0.000110816
8.39153e-05
7.43849e-05
8.1728e-05
4.54228e-05
1.03067e-05
1.82915e-06
1.95767e-06
6.76118e-06
3.73944e-05
0.000140163
0.000240891
0.000268328
0.000277161
0.000271145
0.00025512
0.000242858
0.000238454
0.000234553
0.000218766
0.000184046
0.000137007
9.49138e-05
6.98559e-05
6.42463e-05
8.01127e-05
0.000121206
0.000167453
0.000185885
0.000160705
5.35512e-05
1.1217e-05
8.6812e-06
4.14816e-05
9.54604e-05
8.99762e-05
6.47821e-05
4.76214e-05
4.94853e-05
6.65158e-05
9.25043e-05
2.66406e-05
3.83608e-06
8.72066e-07
4.09383e-06
1.80878e-05
8.60708e-05
0.000238097
0.000288082
0.000270239
0.00023985
0.00021807
0.000211393
0.000214609
0.000218141
0.000211219
0.000185383
0.000143402
0.000103041
8.01735e-05
7.84931e-05
9.87007e-05
0.000138755
0.000176425
0.000176093
6.34478e-05
1.2067e-05
9.08867e-06
4.2487e-05
0.000101863
0.000104494
7.32744e-05
4.35017e-05
3.18421e-05
3.92139e-05
6.24425e-05
8.2141e-05
6.09886e-05
5.55012e-06
8.78517e-07
6.13796e-07
1.13034e-05
5.73681e-05
0.000200086
0.000301799
0.000268024
0.000212895
0.000189513
0.00019494
0.000212973
0.000226249
0.000221406
0.000192079
0.00014552
0.000103995
8.34695e-05
8.59231e-05
0.000112925
0.000159536
0.000184088
7.32929e-05
1.29751e-05
9.41618e-06
5.36212e-05
0.000113905
9.07114e-05
7.01309e-05
5.78783e-05
4.60641e-05
4.13894e-05
5.01282e-05
6.66475e-05
6.41162e-05
2.78504e-05
2.59496e-06
1.84346e-06
2.38568e-06
1.50714e-05
7.45698e-05
0.0002508
0.000306354
0.000238092
0.000188211
0.000179233
0.000195652
0.000215396
0.000218817
0.000195938
0.000150549
0.000105701
8.25283e-05
8.57656e-05
0.000119656
0.000175586
0.000188121
6.53776e-05
1.27944e-05
8.88507e-06
4.56999e-05
9.87357e-05
7.90288e-05
5.57648e-05
4.59267e-05
4.40517e-05
4.18082e-05
3.89601e-05
3.56494e-05
2.51596e-05
1.02883e-05
1.00005e-06
2.5619e-07
5.67899e-07
1.09724e-06
3.09327e-05
0.000139079
0.000283294
0.000258111
0.000199176
0.000172002
0.000171629
0.000178415
0.00017686
0.000162674
0.000136451
0.000107604
9.28847e-05
0.00010385
0.000148175
0.000201333
0.000180069
5.43934e-05
1.18623e-05
8.53282e-06
4.72018e-05
0.000103547
8.98646e-05
6.46904e-05
4.62513e-05
3.73247e-05
3.31983e-05
2.7443e-05
1.7521e-05
6.02512e-06
4.68556e-06
7.2388e-07
1.22851e-06
2.32768e-06
1.11093e-06
6.96994e-06
5.01724e-05
0.000181413
0.000224661
0.000187945
0.000159114
0.000158027
0.000168649
0.000162219
0.000138169
0.000116114
0.000104378
0.000106344
0.000129465
0.00017524
0.000209079
0.000168281
4.9747e-05
1.13317e-05
8.38018e-06
4.56151e-05
0.000107681
9.87997e-05
7.09191e-05
4.6434e-05
3.14334e-05
2.32844e-05
1.72631e-05
8.6717e-06
6.0175e-08
2.80692e-06
3.93043e-06
1.81521e-07
1.66228e-06
2.20904e-06
4.07424e-07
1.51222e-05
8.23133e-05
0.000258885
0.000224111
0.000152731
0.00011856
0.000122053
0.000148135
0.000152928
0.000127379
0.000110085
0.000116336
0.000148107
0.000191431
0.0002108
0.000168748
5.43334e-05
1.193e-05
8.37976e-06
4.82819e-05
0.000110552
9.39087e-05
7.0652e-05
5.45686e-05
4.10454e-05
3.00048e-05
2.32838e-05
1.89189e-05
1.13597e-05
7.44726e-06
5.60053e-06
8.92277e-08
5.59852e-07
1.32371e-06
2.31687e-06
1.82055e-06
1.71158e-05
7.4812e-05
0.000259132
0.000253254
0.000148928
9.12151e-05
8.05868e-05
0.000103358
0.000135386
0.000142993
0.000147827
0.000170768
0.000201877
0.000213824
0.000172089
5.65181e-05
1.1949e-05
8.3692e-06
4.68433e-05
0.000106836
8.5199e-05
6.35204e-05
5.69272e-05
5.42459e-05
4.49286e-05
3.48418e-05
3.01681e-05
2.8797e-05
2.15e-05
7.43977e-06
2.52981e-06
4.14238e-06
1.95309e-06
6.37434e-08
2.38726e-07
1.15126e-06
1.00435e-05
3.89978e-05
0.000117752
0.000242916
0.000175719
0.00010099
7.2259e-05
7.88219e-05
0.00011039
0.00014955
0.000183833
0.000209128
0.000209745
0.000143365
4.5803e-05
1.06497e-05
8.49448e-06
4.83604e-05
0.00010391
7.84982e-05
5.46719e-05
4.96524e-05
5.71042e-05
6.1321e-05
5.13164e-05
3.97349e-05
3.61122e-05
4.07082e-05
4.48681e-05
3.435e-05
1.45436e-05
4.98566e-07
5.59634e-06
2.15047e-06
2.22128e-08
1.16169e-06
3.35845e-06
1.47769e-05
4.06286e-05
9.65621e-05
0.000166624
0.000137556
0.000104678
0.000102023
0.000129704
0.000177045
0.00021199
0.00020506
0.000120477
3.74299e-05
9.3528e-06
8.58796e-06
4.95068e-05
0.000102762
7.70356e-05
5.17829e-05
4.35067e-05
4.97269e-05
6.49834e-05
7.35339e-05
6.52351e-05
5.15607e-05
4.24595e-05
3.85671e-05
3.87225e-05
3.96978e-05
3.58659e-05
2.47753e-05
1.07059e-05
7.62258e-06
1.39738e-06
2.2738e-06
2.07382e-06
4.50903e-06
1.41053e-05
3.36842e-05
7.54498e-05
0.000132021
0.000159137
0.000179719
0.000204401
0.000220368
0.000210135
0.000138277
4.30666e-05
9.65927e-06
8.47409e-06
4.99415e-05
0.000102197
7.75356e-05
5.43368e-05
4.50869e-05
4.71614e-05
5.84602e-05
7.38244e-05
8.36388e-05
8.25741e-05
7.55798e-05
6.89972e-05
6.30946e-05
5.62737e-05
4.88319e-05
4.18302e-05
3.53804e-05
2.83387e-05
1.86232e-05
6.69283e-06
1.21367e-06
5.31342e-07
2.51077e-06
2.46846e-06
1.10484e-05
3.7485e-05
8.25523e-05
0.000123272
0.000150372
0.000169328
0.000174473
0.00014095
4.7996e-05
1.03045e-05
8.34046e-06
4.87804e-05
0.000102293
7.90159e-05
5.6004e-05
4.73059e-05
4.93422e-05
5.937e-05
7.45806e-05
9.01204e-05
0.00010105
0.000104784
0.00010271
9.80667e-05
9.17245e-05
8.25944e-05
7.09837e-05
5.94338e-05
4.99519e-05
4.187e-05
3.2341e-05
1.81478e-05
3.58483e-07
2.6689e-07
1.09834e-06
3.15377e-06
6.69597e-06
3.19554e-05
7.44873e-05
0.000119477
0.000146761
0.000152967
0.000121733
4.02411e-05
1.01335e-05
8.23355e-06
4.82217e-05
0.000100845
7.78882e-05
5.57391e-05
4.82379e-05
5.15425e-05
6.30547e-05
8.09046e-05
0.00010105
0.000119489
0.00013423
0.000144407
0.000149468
0.000148566
0.000139818
0.000122401
0.000101392
8.43873e-05
7.25908e-05
5.94856e-05
3.6744e-05
1.05003e-05
9.71839e-07
1.82652e-06
3.50077e-07
1.70403e-06
3.37622e-05
0.000126274
0.000187073
0.000196634
0.000182079
0.00010339
3.02932e-05
8.99852e-06
8.26027e-06
4.88701e-05
9.93973e-05
7.29378e-05
5.25353e-05
4.81212e-05
5.40781e-05
6.69402e-05
8.48189e-05
0.000105045
0.000124437
0.000141245
0.000155077
0.000165384
0.000170199
0.000164953
0.000145145
0.000116681
9.3108e-05
7.89547e-05
6.83828e-05
5.09251e-05
2.43022e-05
4.346e-06
6.6397e-07
5.62086e-07
3.1618e-06
2.24009e-05
8.06948e-05
0.000149905
0.000180299
0.000170662
9.81428e-05
3.17175e-05
8.45843e-06
8.31619e-06
5.02322e-05
9.50887e-05
6.36196e-05
4.59097e-05
4.55891e-05
5.63583e-05
7.31037e-05
9.16131e-05
0.000109475
0.000125609
0.000139587
0.000150975
0.000158684
0.000160687
0.000153589
0.000134859
0.000108844
8.58497e-05
7.15787e-05
6.44398e-05
5.94078e-05
4.99392e-05
3.2182e-05
1.26538e-05
1.80634e-06
3.14644e-06
4.7038e-06
1.97391e-05
4.23614e-05
7.38233e-05
0.000100199
8.52016e-05
3.43723e-05
8.91214e-06
8.35647e-06
5.07631e-05
9.16809e-05
5.82425e-05
4.16923e-05
4.28958e-05
5.63848e-05
7.65657e-05
9.67712e-05
0.000114094
0.00012865
0.000140873
0.000150688
0.000157417
0.000159528
0.000154222
0.000138531
0.000114181
8.9861e-05
7.3321e-05
6.54056e-05
6.30068e-05
6.2295e-05
5.94128e-05
5.09638e-05
3.64548e-05
2.1756e-05
1.36606e-05
1.29975e-05
1.76482e-05
2.76555e-05
4.08193e-05
5.82725e-05
4.30068e-05
9.85858e-06
8.33256e-06
4.96338e-05
9.02515e-05
5.7199e-05
3.99413e-05
4.01896e-05
5.34706e-05
7.57467e-05
9.93607e-05
0.000119322
0.000135432
0.000148626
0.00015927
0.000167029
0.000170762
0.000167917
0.000154507
0.000129517
0.000101148
8.06265e-05
7.111e-05
6.97439e-05
7.27318e-05
7.67063e-05
7.85725e-05
7.57548e-05
6.7411e-05
5.62366e-05
4.66815e-05
4.07571e-05
3.64426e-05
1.79801e-05
1.30756e-05
6.20287e-05
1.14333e-05
8.33521e-06
4.87818e-05
9.11125e-05
5.89663e-05
4.04313e-05
3.87444e-05
4.97381e-05
7.14213e-05
9.76402e-05
0.000121471
0.000141037
0.000157093
0.000170238
0.000180325
0.000186342
0.000185671
0.000173047
0.00014467
0.000109575
8.43245e-05
7.37209e-05
7.39132e-05
8.03826e-05
8.95729e-05
9.8404e-05
0.000104271
0.000106446
0.000107141
0.000108943
0.000108427
8.79059e-05
1.9844e-05
1.11714e-05
7.15936e-05
1.21808e-05
8.37233e-06
4.95985e-05
9.01178e-05
5.66813e-05
3.98579e-05
3.88243e-05
4.9414e-05
7.09615e-05
9.84596e-05
0.000124265
0.000145679
0.000163438
0.000178289
0.000190128
0.000197915
0.00019894
0.000186698
0.000154166
0.000111681
8.25504e-05
7.20895e-05
7.46901e-05
8.50518e-05
9.90437e-05
0.000112573
0.000121413
0.000123154
0.000120856
0.000122318
0.000131339
0.0001296
3.02146e-05
1.64555e-05
7.68115e-05
1.2812e-05
8.42372e-06
5.2388e-05
8.44154e-05
4.89006e-05
3.71158e-05
4.03129e-05
5.3908e-05
7.68978e-05
0.000103858
0.000128192
0.000148392
0.00016544
0.000179997
0.00019183
0.000199762
0.000200867
0.000187298
0.000149687
0.000102294
7.35444e-05
6.5726e-05
7.1365e-05
8.49964e-05
0.000102304
0.000119145
0.000132757
0.000142763
0.000150924
0.000161319
0.000172076
0.000140552
2.9488e-05
1.86064e-05
7.8597e-05
1.3559e-05
8.41361e-06
5.57802e-05
7.30246e-05
3.94001e-05
3.34781e-05
4.30534e-05
6.30691e-05
8.87125e-05
0.000113616
0.00013479
0.000152738
0.000168428
0.000182234
0.000193747
0.000201662
0.000202701
0.000186977
0.000142629
9.12294e-05
6.46901e-05
6.07173e-05
7.08171e-05
8.92178e-05
0.00010964
0.000125111
0.000131622
0.000130806
0.00012878
0.000128633
0.000116736
6.35818e-05
2.5878e-05
3.22014e-05
0.00015654
1.41192e-05
8.31866e-06
5.7959e-05
6.20954e-05
3.25076e-05
3.06579e-05
4.61821e-05
7.31059e-05
0.000100339
0.000122864
0.000141796
0.000158555
0.000173808
0.000187686
0.000199623
0.000207965
0.000207815
0.000184594
0.000128061
7.59534e-05
5.39735e-05
5.35065e-05
6.67393e-05
8.84835e-05
0.000110995
0.000125928
0.000130342
0.000125454
0.000113135
9.35145e-05
6.46461e-05
3.83595e-05
3.17152e-05
6.59225e-05
0.000101697
1.33686e-05
8.16531e-06
5.75055e-05
5.70623e-05
2.9053e-05
2.81738e-05
4.62485e-05
7.74139e-05
0.000106231
0.000128616
0.000147415
0.000164417
0.000180392
0.00019556
0.000209446
0.000220126
0.000220773
0.000190978
0.000122608
6.86258e-05
4.83172e-05
4.95402e-05
6.48553e-05
8.69842e-05
0.000102261
0.000101009
8.92542e-05
7.9189e-05
7.2822e-05
6.31925e-05
4.98503e-05
4.37859e-05
6.14945e-05
0.000152743
5.49652e-05
1.16395e-05
8.03507e-06
5.58701e-05
5.73752e-05
2.77666e-05
2.52633e-05
4.18009e-05
7.45485e-05
0.000106147
0.000129758
0.000148972
0.000166248
0.000182641
0.000198507
0.000213375
0.000224771
0.000223232
0.000184046
0.000110309
6.01562e-05
4.1519e-05
4.20648e-05
5.64638e-05
7.89255e-05
9.3464e-05
8.78792e-05
7.23798e-05
6.24396e-05
5.93758e-05
5.5854e-05
5.2753e-05
6.35141e-05
0.000112284
0.000145941
3.86617e-05
9.73685e-06
7.9558e-06
5.48381e-05
5.92673e-05
2.74471e-05
2.28396e-05
3.6212e-05
6.81699e-05
0.000102551
0.00012778
0.000147466
0.000164843
0.000181275
0.000197256
0.000212467
0.000224906
0.00022694
0.000195804
0.000122872
6.5117e-05
4.10756e-05
3.75845e-05
4.77399e-05
6.48879e-05
7.3497e-05
6.56242e-05
5.33205e-05
4.89255e-05
5.38989e-05
6.09393e-05
6.91611e-05
9.64786e-05
0.000153312
0.000130902
3.65017e-05
9.40498e-06
7.93259e-06
5.64631e-05
5.73714e-05
2.6376e-05
2.14728e-05
3.31831e-05
6.4084e-05
9.96853e-05
0.000125729
0.000145673
0.000163127
0.000179503
0.000195159
0.000209502
0.000220085
0.000218712
0.000184843
0.000116998
6.39479e-05
3.96486e-05
3.33716e-05
4.00031e-05
5.7334e-05
7.30786e-05
6.83011e-05
5.18829e-05
4.29018e-05
4.72484e-05
6.37583e-05
9.00087e-05
0.000131016
0.000166171
0.000114022
3.39777e-05
8.92774e-06
7.91175e-06
6.01623e-05
5.10323e-05
2.40178e-05
2.08842e-05
3.33656e-05
6.42315e-05
9.88263e-05
0.000124368
0.000144462
0.000162352
0.000179251
0.000195443
0.00021045
0.000222545
0.000226517
0.000206933
0.000147171
8.20989e-05
4.67606e-05
3.35289e-05
3.32204e-05
4.21018e-05
5.3723e-05
5.65026e-05
4.86141e-05
4.13706e-05
4.47324e-05
6.42517e-05
0.000102271
0.000145399
0.000164706
0.000117184
3.60351e-05
9.35237e-06
7.8614e-06
6.47063e-05
4.35314e-05
2.11104e-05
2.06037e-05
3.62092e-05
6.86662e-05
0.000100657
0.000124401
0.000144067
0.000162113
0.000179335
0.000195744
0.000210577
0.000221627
0.000222624
0.000198124
0.000139375
8.11904e-05
4.86337e-05
3.4988e-05
3.28658e-05
4.06345e-05
5.57768e-05
6.36179e-05
5.34946e-05
4.07555e-05
3.87254e-05
5.37196e-05
9.34363e-05
0.000140148
0.000152931
0.000106507
3.52469e-05
9.20728e-06
7.76733e-06
6.75111e-05
3.86552e-05
1.90192e-05
2.02887e-05
3.90822e-05
7.26965e-05
0.000102059
0.000124251
0.000143504
0.000161655
0.000179237
0.00019618
0.000211856
0.000224679
0.000230458
0.000217705
0.000170179
0.000104874
6.03752e-05
3.92646e-05
3.12328e-05
3.13484e-05
3.84406e-05
4.93698e-05
5.41391e-05
4.82201e-05
4.36644e-05
5.29806e-05
8.54227e-05
0.00013104
0.000147226
0.000108368
3.61972e-05
9.35503e-06
7.66665e-06
6.92204e-05
3.60919e-05
1.75871e-05
1.94774e-05
4.06003e-05
7.62319e-05
0.00010457
0.000125887
0.000144881
0.000163139
0.000181002
0.000198216
0.000213922
0.000226137
0.000229636
0.000211455
0.000159485
9.79922e-05
5.89633e-05
4.15946e-05
3.67281e-05
3.88855e-05
4.52091e-05
5.21006e-05
5.32563e-05
4.72407e-05
4.20075e-05
4.73098e-05
7.26868e-05
0.000119125
0.000144003
0.000109488
3.72979e-05
9.41782e-06
7.5739e-06
6.97386e-05
3.55704e-05
1.68423e-05
1.82005e-05
3.91027e-05
7.60063e-05
0.000105213
0.000127
0.000146598
0.000165708
0.000184655
0.000203163
0.000220398
0.000234713
0.000242352
0.000233241
0.00019046
0.00012197
6.84724e-05
4.18074e-05
3.1701e-05
3.03684e-05
3.50913e-05
4.52416e-05
5.6201e-05
5.89693e-05
5.51488e-05
5.78481e-05
7.93044e-05
0.000122384
0.00014966
0.000116546
3.75819e-05
9.33425e-06
7.5029e-06
7.03604e-05
3.55919e-05
1.61678e-05
1.6589e-05
3.68734e-05
7.61042e-05
0.000106656
0.000128816
0.000148934
0.00016888
0.000188978
0.000208824
0.000227222
0.000239484
0.000243498
0.000229477
0.00017685
0.000112028
6.83428e-05
4.76004e-05
4.16899e-05
4.28511e-05
4.43957e-05
4.65939e-05
5.07536e-05
5.29834e-05
5.20731e-05
5.53013e-05
7.36337e-05
0.000115429
0.000153653
0.000127287
4.0617e-05
9.57909e-06
7.46602e-06
6.91947e-05
3.88832e-05
1.66871e-05
1.46061e-05
3.00474e-05
6.76227e-05
0.00010123
0.000124684
0.000145282
0.000165389
0.000185293
0.000204426
0.000221452
0.000233891
0.000237072
0.000222474
0.000180575
0.000118823
6.68071e-05
3.89093e-05
2.94829e-05
3.19473e-05
4.09e-05
5.01859e-05
5.87562e-05
6.67631e-05
7.24716e-05
8.06159e-05
0.000102344
0.000140988
0.00016799
0.000131622
3.97738e-05
9.3869e-06
7.48682e-06
6.63638e-05
4.93165e-05
2.01769e-05
1.3798e-05
2.16173e-05
5.09967e-05
8.98096e-05
0.000116689
0.000137851
0.000157722
0.000176782
0.000194004
0.000207323
0.000213663
0.00020986
0.000195421
0.000173693
0.000146528
0.000110284
6.90056e-05
4.14354e-05
3.34913e-05
3.94781e-05
5.01316e-05
5.50612e-05
5.69422e-05
6.0343e-05
6.8974e-05
8.9721e-05
0.000127319
0.000161632
0.000137741
4.25363e-05
9.45033e-06
7.54187e-06
6.3658e-05
6.58015e-05
2.76769e-05
1.52986e-05
1.58643e-05
3.24849e-05
7.22152e-05
0.000107298
0.000130034
0.000148998
0.000165195
0.000176446
0.000179708
0.000173163
0.000158793
0.000141501
0.00012442
0.000106736
8.59972e-05
6.24438e-05
4.1824e-05
3.06532e-05
3.14011e-05
4.34145e-05
6.10241e-05
7.46956e-05
8.63583e-05
0.000103561
0.000131274
0.000163972
0.000179737
0.000136662
4.07572e-05
9.20539e-06
7.62745e-06
6.24338e-05
8.3749e-05
4.2085e-05
2.08221e-05
1.48581e-05
2.02338e-05
4.67943e-05
9.37661e-05
0.000124917
0.000144479
0.000158991
0.000166654
0.000165061
0.000155692
0.000144388
0.000136542
0.000133422
0.000132748
0.000130082
0.000117332
8.58583e-05
5.04099e-05
3.24616e-05
3.16863e-05
4.25384e-05
5.69259e-05
6.79543e-05
8.06844e-05
0.000103912
0.000139682
0.000168182
0.000141032
4.21632e-05
8.89153e-06
7.67653e-06
6.74249e-05
7.7816e-05
4.33067e-05
2.44171e-05
1.65066e-05
1.86858e-05
4.17545e-05
8.96295e-05
0.000118911
0.000135065
0.000145067
0.000145011
0.000133293
0.000115804
9.99462e-05
8.92116e-05
8.53916e-05
8.95204e-05
9.97406e-05
0.000107973
0.000102138
7.87499e-05
5.19709e-05
3.80205e-05
3.97856e-05
5.50919e-05
7.9831e-05
0.000108238
0.000138336
0.000165742
0.000177229
0.00014285
4.47588e-05
9.60743e-06
7.62526e-06
7.40062e-05
5.6024e-05
3.27933e-05
2.35055e-05
1.83599e-05
2.15943e-05
4.99421e-05
8.94707e-05
0.000106819
0.000118603
0.000122108
0.000110037
9.28155e-05
8.40302e-05
8.80064e-05
0.000105041
0.000130855
0.000154918
0.000168415
0.000168694
0.000154635
0.000124875
8.54982e-05
5.37097e-05
3.966e-05
4.03759e-05
5.15428e-05
7.18001e-05
0.000102593
0.000141214
0.000169769
0.000151962
4.60878e-05
9.49346e-06
7.37505e-06
7.37109e-05
2.56921e-05
1.72027e-05
1.64709e-05
1.90893e-05
4.22856e-05
9.946e-05
0.000110239
0.000109802
9.24997e-05
6.88488e-05
5.68343e-05
6.00821e-05
8.06063e-05
0.000120815
0.000169935
0.000206054
0.000216995
0.00020288
0.00016932
0.000127979
9.20437e-05
6.80453e-05
5.59661e-05
5.42889e-05
6.26547e-05
8.05683e-05
0.000106078
0.000136736
0.000166137
0.000180101
0.000141242
4.42209e-05
9.96044e-06
6.99023e-06
3.76955e-05
1.14333e-05
1.24815e-05
1.7401e-05
2.66389e-05
5.46875e-05
8.82474e-05
9.2352e-05
8.35036e-05
7.1247e-05
6.36542e-05
6.30683e-05
6.99742e-05
8.57543e-05
0.000110848
0.000140902
0.000171853
0.000205733
0.000238755
0.000251331
0.0002239
0.000160759
9.76246e-05
6.05328e-05
4.6082e-05
4.63979e-05
5.78263e-05
7.89511e-05
0.000108759
0.000143654
0.000171458
0.000157307
4.54755e-05
9.55618e-06
6.36725e-06
9.93747e-06
4.08809e-06
6.90961e-06
1.44147e-05
4.87649e-05
7.79306e-05
7.80088e-05
6.6264e-05
5.48659e-05
4.93985e-05
5.13417e-05
6.27558e-05
8.80443e-05
0.000126473
0.000159218
0.000171031
0.000166106
0.000154998
0.000145904
0.000141435
0.000138166
0.000129275
0.00011045
8.61428e-05
6.77025e-05
6.18152e-05
6.90413e-05
8.93104e-05
0.000122147
0.000159715
0.000181011
0.000143718
4.45257e-05
9.90358e-06
5.65794e-06
3.87828e-05
2.15939e-05
1.39653e-05
8.46647e-06
1.00368e-05
2.29649e-05
3.81168e-05
4.749e-05
5.0874e-05
4.71332e-05
4.43445e-05
4.72708e-05
5.80643e-05
8.07272e-05
0.000117522
0.000155289
0.00017224
0.000167005
0.000152627
0.000140069
0.000130686
0.000119025
0.000101719
8.29025e-05
6.95953e-05
6.61628e-05
7.47485e-05
9.72752e-05
0.000132469
0.000167232
0.000183372
0.00016375
5.29491e-05
1.07664e-05
6.1403e-06
4.42522e-05
6.81551e-05
4.62559e-05
2.8497e-05
1.7863e-05
1.02715e-05
5.54925e-06
6.07026e-06
1.56236e-05
3.18561e-05
4.92304e-05
4.753e-05
4.58432e-05
5.35352e-05
7.37448e-05
0.000111039
0.000153499
0.000166271
0.000151901
0.00013658
0.000129845
0.000122168
0.000103177
7.84132e-05
6.31227e-05
6.20788e-05
7.42793e-05
9.81885e-05
0.000129487
0.000160723
0.00018331
0.000149139
4.1426e-05
9.55044e-06
7.54648e-06
4.19929e-05
8.65136e-05
8.46069e-05
7.25351e-05
5.47839e-05
3.13645e-05
1.48049e-05
7.46531e-06
7.12783e-06
1.69413e-05
2.92271e-05
4.46516e-05
4.93774e-05
4.60503e-05
4.96837e-05
6.39391e-05
9.25792e-05
0.00012321
0.000118396
9.39227e-05
7.95305e-05
7.93609e-05
8.93524e-05
0.000104328
0.000122092
0.000144987
0.000172685
0.000196341
0.00020561
0.000194609
0.000151249
7.81183e-05
2.7845e-05
7.12584e-06
8.76428e-06
5.57953e-05
6.41548e-05
5.14813e-05
6.00717e-05
6.2994e-05
4.83813e-05
2.74508e-05
1.41819e-05
1.19338e-05
2.61358e-05
5.67211e-05
9.48723e-05
0.000108046
8.33859e-05
6.90465e-05
6.64432e-05
7.55844e-05
9.90827e-05
0.00013465
0.000151888
0.000133631
0.000110555
9.74519e-05
9.30346e-05
9.55163e-05
0.000105844
0.000125621
0.000154263
0.000184793
0.000203541
0.000193302
0.000109296
3.00879e-05
7.02888e-06
8.64164e-06
4.33382e-05
1.05956e-05
1.33591e-05
1.86134e-05
1.24308e-05
9.81258e-06
2.63733e-05
9.98732e-05
0.00021074
0.000225771
0.000229443
0.000188031
0.000122589
8.52979e-05
7.16024e-05
6.86192e-05
7.1505e-05
7.97416e-05
9.24779e-05
0.000106011
0.000115212
0.00012054
0.000128536
0.00014468
0.000168615
0.00019362
0.000211105
0.000215606
0.000204105
0.000170522
0.000109507
4.94822e-05
1.7399e-05
3.72845e-06
7.2981e-06
1.00306e-06
4.51037e-06
2.67124e-05
4.37332e-05
5.23031e-05
6.99485e-05
6.15498e-05
6.36216e-05
7.47691e-05
9.02673e-05
0.000106022
0.000115108
0.000109107
9.07798e-05
7.41836e-05
6.52745e-05
6.31273e-05
6.6089e-05
7.3464e-05
8.53907e-05
0.000101718
0.000118986
0.000128589
0.000126612
0.000121266
0.000121394
0.000130444
0.000148024
0.000167838
0.000175771
0.000152701
8.93369e-05
3.21261e-05
7.67891e-06
7.09932e-06
1.18567e-05
1.56742e-05
4.96036e-05
0.000115228
0.000120508
9.30285e-05
7.99023e-05
8.49968e-05
9.64186e-05
0.000103461
0.000108513
0.000112106
0.000111257
0.000104797
9.4318e-05
8.25253e-05
7.20125e-05
6.44362e-05
6.04211e-05
6.01662e-05
6.41729e-05
7.41538e-05
9.40946e-05
0.000127254
0.000164358
0.00019003
0.000205012
0.000210877
0.000203234
0.000180789
0.000144075
9.16693e-05
4.03099e-05
8.66159e-06
7.8579e-06
4.63028e-05
2.52872e-05
2.69644e-06
7.82384e-07
8.62485e-06
2.66545e-05
4.32064e-05
6.02671e-05
8.88821e-05
0.00013325
0.00018032
0.00020795
0.000209803
0.000195019
0.000173614
0.000150754
0.000128772
0.00010935
9.37805e-05
8.26659e-05
7.60904e-05
7.42321e-05
7.81724e-05
8.91708e-05
0.00010458
0.000117022
0.000124054
0.000130288
0.000139951
0.000152719
0.000160644
0.000141693
4.57254e-05
8.7188e-06
7.8278e-06
9.70388e-05
3.79625e-05
1.22306e-05
6.55078e-06
1.85179e-05
3.84381e-05
7.41075e-05
0.00011832
0.000142804
0.000152732
0.000161477
0.000170216
0.000175551
0.000177286
0.000174393
0.00016375
0.000143923
0.000118402
9.35953e-05
7.41078e-05
6.11686e-05
5.43429e-05
5.35645e-05
6.05388e-05
7.85946e-05
0.000108359
0.000140348
0.000163787
0.000178108
0.000182482
0.000161799
8.96707e-05
2.94343e-05
7.14839e-06
7.64628e-06
6.74872e-05
5.85289e-05
1.99803e-05
5.20243e-06
3.15295e-06
1.18817e-05
2.76428e-05
4.82297e-05
8.38031e-05
0.000142237
0.000193026
0.000219885
0.000259253
0.00031163
0.000317298
0.000322437
0.000326807
0.000308234
0.000244437
0.00016648
0.00010796
7.44853e-05
5.83769e-05
5.40932e-05
5.99856e-05
7.58227e-05
9.93775e-05
0.000126041
0.000149556
0.000158954
0.000144614
0.00010797
4.53425e-05
1.0253e-05
8.68228e-06
9.31479e-05
7.74485e-05
5.27191e-05
4.5869e-05
3.56949e-05
1.90893e-05
5.33018e-06
7.22191e-06
1.23171e-05
2.56366e-05
4.46862e-05
7.55951e-05
0.000108292
0.000128282
0.000140796
0.00015913
0.000188572
0.000220534
0.000240914
0.000244353
0.000229864
0.000195684
0.000149195
0.000106524
7.81732e-05
6.62971e-05
7.01647e-05
8.80497e-05
0.000108927
0.000124328
0.000144533
0.000139913
3.5064e-05
7.33117e-06
8.62615e-06
9.66857e-05
3.96158e-05
2.09274e-05
1.31011e-05
1.0405e-05
1.60225e-05
3.59618e-05
7.21009e-05
0.000147878
0.000338289
0.000342312
0.000336623
0.000331086
0.000326841
0.000324535
0.000324294
0.000325833
0.000328598
0.000331984
0.000298989
0.000225737
0.000153175
0.00010206
7.5822e-05
6.67456e-05
7.06992e-05
8.80341e-05
0.000120931
0.000165463
0.000157254
7.09634e-05
3.12876e-05
1.3776e-05
1.6831e-06
8.55608e-06
4.5696e-05
2.6162e-05
3.68923e-05
4.34661e-05
2.90207e-05
1.84102e-05
1.97084e-05
3.60321e-05
6.03888e-05
9.42247e-05
0.000141729
0.000185657
0.000202429
0.000195587
0.000180275
0.000165085
0.0001505
0.000134863
0.000118875
0.000104777
9.4321e-05
8.85158e-05
8.83776e-05
9.55365e-05
0.000112292
0.000137469
0.000146539
0.000102004
5.56102e-05
3.14177e-05
1.90649e-05
1.44594e-05
1.41127e-05
1.38511e-06
8.91125e-06
2.16075e-05
2.00379e-05
3.75534e-05
5.61141e-05
7.67794e-05
9.738e-05
0.000128015
0.00016995
0.000206283
0.000225173
0.000230191
0.000226678
0.000218322
0.000207444
0.000195447
0.000183054
0.000170435
0.000157769
0.000145485
0.000134203
0.000124346
0.000116159
0.000109706
0.000104835
0.00010099
9.65926e-05
8.75901e-05
6.89352e-05
4.5232e-05
2.68181e-05
1.81597e-05
2.58635e-05
0.000119681
6.31223e-06
1.65419e-05
5.30665e-05
5.17462e-05
5.35376e-05
5.83416e-05
6.23691e-05
6.53062e-05
6.77334e-05
6.90995e-05
7.01941e-05
7.0251e-05
6.99581e-05
6.89115e-05
6.76015e-05
6.58863e-05
6.40185e-05
6.1967e-05
5.98546e-05
5.76872e-05
5.55558e-05
5.35055e-05
5.16229e-05
4.99748e-05
4.86438e-05
4.77091e-05
4.72804e-05
4.75614e-05
4.87457e-05
5.09546e-05
5.41289e-05
5.61607e-05
6.17658e-05
5.96115e-05
4.12364e-05
5.41601e-06
1.24269e-05
4.62016e-05
4.71238e-05
4.45957e-05
4.44579e-05
4.53418e-05
4.91726e-05
5.20386e-05
5.19455e-05
5.14772e-05
5.05452e-05
4.92086e-05
4.73685e-05
4.51403e-05
4.26142e-05
3.98779e-05
3.7032e-05
3.41982e-05
3.15156e-05
2.91188e-05
2.71191e-05
2.5579e-05
2.44802e-05
2.3714e-05
2.31292e-05
2.26103e-05
2.21442e-05
2.18038e-05
2.16674e-05
2.17435e-05
2.19479e-05
2.21032e-05
2.18636e-05
7.0531e-06
5.77938e-08
1.99146e-06
3.06314e-05
9.08195e-05
0.000131039
0.000160037
0.000158322
0.00015649
0.000163603
0.000177099
0.00019408
0.000209417
0.00021664
0.000213649
0.000204118
0.00018892
0.000171494
0.000154403
0.000138447
0.000124208
0.000112067
0.000102214
9.46024e-05
8.89887e-05
8.50178e-05
8.22801e-05
8.03774e-05
7.89835e-05
7.77159e-05
7.61599e-05
7.38961e-05
7.03056e-05
6.37643e-05
2.95421e-05
7.51905e-06
9.26827e-07
2.55843e-07
6.90862e-07
1.72224e-06
3.94617e-06
3.14328e-06
2.57788e-07
4.03552e-06
1.58116e-05
3.28496e-05
4.52338e-05
6.10522e-05
8.61253e-05
0.000123124
0.000158548
0.000178182
0.000191797
0.000198922
0.000200677
0.000198789
0.00019478
0.000189878
0.000184917
0.000180328
0.000176161
0.000172185
0.000168019
0.000163169
0.000156939
0.000148246
0.000135384
0.000115848
8.71061e-05
3.12794e-05
9.897e-06
1.68239e-06
2.59264e-07
7.79517e-07
3.60332e-06
1.18802e-05
2.62422e-05
4.356e-05
5.59383e-05
6.06568e-05
5.97289e-05
5.7892e-05
6.03955e-05
6.73664e-05
7.10382e-05
8.18277e-05
0.000104541
0.000123684
0.000138844
0.000153328
0.000166401
0.000177793
0.000186843
0.000192979
0.000196347
0.000197608
0.000197294
0.000195509
0.000191923
0.000185675
0.000175297
0.000158723
0.000133473
8.38352e-05
3.31876e-05
9.15312e-06
2.2519e-06
9.86559e-07
3.52862e-06
2.4325e-05
7.6129e-05
8.11452e-05
8.1849e-05
8.35741e-05
9.31074e-05
0.00011608
0.000127619
0.000137702
0.000148826
0.000140675
0.000140633
0.000147803
0.000158606
0.000170836
0.000183062
0.000194087
0.000203846
0.000212992
0.000219792
0.000217829
0.000214434
0.000209786
0.000203782
0.000195915
0.000185224
0.000170311
0.000149556
0.000121316
6.46721e-05
3.19762e-05
9.8815e-06
2.89401e-06
1.57919e-06
6.57692e-06
2.84674e-05
5.88317e-05
8.64621e-05
0.000106229
9.71916e-05
8.46822e-05
7.91574e-05
7.92168e-05
8.49214e-05
9.64066e-05
0.0001103
0.000122532
0.000132547
0.000141284
0.000149394
0.000157296
0.000164636
0.000171465
0.000177829
0.000184485
0.000192193
0.000200633
0.000208619
0.000213998
0.000211688
0.000203287
0.000179734
0.000141113
9.84071e-05
6.06596e-05
3.23152e-05
1.09422e-05
3.21309e-06
1.64791e-06
8.33976e-06
4.0904e-05
8.95923e-05
0.000115281
0.000128029
0.000143408
0.000155477
0.000156323
0.00015014
0.000147794
0.000157115
0.000179938
0.000197382
0.000204696
0.000213847
0.000222378
0.000229268
0.000234151
0.000236772
0.000237036
0.000221459
0.000205326
0.000195673
0.000189548
0.000183673
0.000173968
0.000156754
0.000131474
0.000102425
7.49968e-05
5.09889e-05
2.9735e-05
9.51995e-06
3.7328e-06
1.408e-06
6.40853e-06
2.81944e-05
6.50882e-05
9.572e-05
9.87148e-05
9.79369e-05
0.000101754
0.000109591
0.000120422
0.000135002
0.000153542
0.000162738
0.000168252
0.000174953
0.000184522
0.000198357
0.000214119
0.000228379
0.00023974
0.000247376
0.000251169
0.000251277
0.000247998
0.000222093
0.000196443
0.000177968
0.00015819
0.000132327
0.000102857
7.5304e-05
5.20062e-05
3.16545e-05
1.11163e-05
4.00852e-06
2.12894e-06
1.0336e-05
5.39139e-05
0.000126193
0.000189526
0.000211172
0.000180222
0.000157606
0.000148348
0.0001478
0.000152894
0.000162921
0.000176981
0.000188922
0.000190294
0.00019517
0.000204881
0.000218044
0.00023206
0.000245053
0.000255254
0.000261734
0.000264075
0.000262188
0.000256094
0.000222888
0.000190177
0.000161282
0.000131488
0.000101663
7.498e-05
5.24718e-05
3.22965e-05
1.05914e-05
4.39673e-06
1.80149e-06
1.14979e-05
5.66802e-05
0.000117084
0.000167348
0.000202204
0.000199461
0.000171821
0.000152229
0.000144172
0.000144563
0.000149263
0.000156313
0.000166493
0.000181375
0.000201596
0.000225089
0.000237435
0.000246549
0.000255861
0.000263904
0.000269616
0.000272185
0.000271
0.000265568
0.000255401
0.000220053
0.00017645
0.000138868
0.000106863
7.93529e-05
5.5826e-05
3.46385e-05
1.15664e-05
4.70782e-06
1.58263e-06
6.46183e-06
3.71295e-05
9.05097e-05
0.000143255
0.000185268
0.000214949
0.000233553
0.00022308
0.00019948
0.000186171
0.000185423
0.000192733
0.000203091
0.000214218
0.000226591
0.000240856
0.000254482
0.000260785
0.000267797
0.000274285
0.000279133
0.000281299
0.000279846
0.000273931
0.00026281
0.000221333
0.000178375
0.000141788
0.00011059
8.33327e-05
5.92035e-05
3.68061e-05
1.17386e-05
4.98705e-06
1.5227e-06
8.02335e-06
4.72662e-05
0.000107738
0.00016507
0.000210183
0.000241609
0.000250017
0.000235333
0.000219934
0.000206683
0.000197094
0.000192815
0.000194622
0.000200997
0.000209287
0.000218046
0.000228339
0.000242107
0.000259205
0.000277125
0.000291068
0.000293383
0.000290145
0.000282648
0.000254401
0.000216314
0.00017816
0.000143978
0.000113897
8.69981e-05
6.25641e-05
3.92324e-05
1.22751e-05
5.23341e-06
1.35213e-06
4.32453e-06
3.05737e-05
7.98978e-05
0.000133338
0.000181365
0.000220324
0.000249422
0.000268505
0.000261899
0.000252474
0.00024462
0.000239577
0.000238459
0.000241556
0.000247457
0.000252871
0.00025523
0.000256979
0.000264376
0.000279904
0.000297348
0.00030478
0.000299992
0.000290991
0.000264716
0.000223443
0.000182914
0.000147988
0.000117972
9.10709e-05
6.61557e-05
4.18174e-05
1.28745e-05
5.43649e-06
1.44401e-06
3.07392e-06
2.50613e-05
7.02579e-05
0.00012281
0.000173539
0.000217733
0.000253408
0.000280213
0.000295664
0.000290284
0.000281988
0.000275282
0.000271803
0.000273
0.000280312
0.000293044
0.000304715
0.000304942
0.000294083
0.000286364
0.000291241
0.000302794
0.000308298
0.00029808
0.000268416
0.000226733
0.000185106
0.000149685
0.000120209
9.42487e-05
6.96419e-05
4.45947e-05
1.34613e-05
5.63164e-06
1.65734e-06
2.48937e-06
2.0954e-05
6.02813e-05
0.000107085
0.000154628
0.000199017
0.000238059
0.000270703
0.000296697
0.000314446
0.000322045
0.000327136
0.000328897
0.000326852
0.000324589
0.000327159
0.000336535
0.000347188
0.000344059
0.000321483
0.00030129
0.000298798
0.000304221
0.000298858
0.000273987
0.000233901
0.000190243
0.000151779
0.000120621
9.53531e-05
7.21753e-05
4.70705e-05
1.39536e-05
5.83812e-06
1.90883e-06
3.18508e-06
2.3699e-05
6.20684e-05
0.000106671
0.000152734
0.000197246
0.000238203
0.000274338
0.000304976
0.000329948
0.000349499
0.000364153
0.000368487
0.000368549
0.000363644
0.000355702
0.000350057
0.000348849
0.000346958
0.000333008
0.000306156
0.00028604
0.000281252
0.000278904
0.000263549
0.000232977
0.000195318
0.000158695
0.000126396
9.88042e-05
7.43733e-05
4.86986e-05
1.41613e-05
5.89456e-06
2.10319e-06
4.49899e-06
2.85182e-05
6.64957e-05
0.000107275
0.00014896
0.000190481
0.000230877
0.000269062
0.000303903
0.000334456
0.000360125
0.000380661
0.000387501
0.000386352
0.000382846
0.00037655
0.000367441
0.000358558
0.000352132
0.000345415
0.000330809
0.000307414
0.000287884
0.000275549
0.000259464
0.000231831
0.000196507
0.000161429
0.000130277
0.000102282
7.65825e-05
5.10351e-05
1.46245e-05
5.95889e-06
2.24708e-06
5.76006e-06
3.17332e-05
6.91658e-05
0.000102427
0.00014395
0.000189277
0.000228555
0.00026738
0.000304655
0.000339148
0.000369769
0.000395715
0.000416484
0.000426833
0.000418433
0.00040802
0.000398178
0.000387923
0.000376839
0.000364428
0.000347974
0.000324978
0.000301025
0.000284029
0.000267508
0.000240169
0.000202269
0.00016296
0.000130014
0.000103738
7.91468e-05
5.24638e-05
1.46556e-05
6.07302e-06
2.36366e-06
6.15923e-06
3.01173e-05
6.58757e-05
9.28508e-05
0.000127594
0.000173296
0.000220838
0.000259165
0.000297306
0.000334221
0.000368765
0.000399822
0.000426446
0.000447919
0.000463762
0.000473125
0.000454514
0.000432299
0.000410808
0.000389232
0.000366206
0.000339412
0.000308892
0.000279992
0.000256236
0.000233644
0.000207149
0.000176124
0.000142944
0.000110948
8.2335e-05
5.3977e-05
1.49117e-05
5.98744e-06
2.55718e-06
7.52959e-06
3.33158e-05
7.34808e-05
9.6211e-05
0.000120905
0.00015316
0.000193489
0.000240427
0.000290522
0.000331241
0.000366352
0.000399315
0.000429075
0.000454662
0.000475227
0.000490103
0.00049885
0.000501266
0.000497376
0.000463148
0.00042153
0.000382225
0.000345551
0.000310051
0.000274968
0.000239965
0.000205367
0.00017276
0.000143061
0.000114734
8.50141e-05
5.61285e-05
1.50416e-05
6.10628e-06
2.75958e-06
9.64063e-06
4.22649e-05
8.98022e-05
0.000122769
0.000137057
0.000154543
0.00017939
0.000212147
0.000251858
0.000296416
0.000343333
0.000389421
0.000427785
0.000454369
0.00047698
0.000494598
0.000506399
0.000511818
0.000510593
0.000502786
0.000488768
0.000451552
0.00039601
0.000347716
0.000308976
0.000273592
0.000236639
0.000197225
0.000158004
0.000123214
9.20364e-05
6.06067e-05
1.72208e-05
6.28598e-06
2.91761e-06
1.16554e-05
5.24241e-05
0.00011044
0.000159199
0.000185304
0.000190157
0.000201353
0.000222721
0.000253988
0.000293946
0.000340043
0.000387365
0.00042852
0.000453731
0.000476114
0.000494587
0.000508155
0.000515993
0.000517507
0.000512379
0.00050059
0.00047127
0.000422448
0.000374301
0.000330807
0.000290672
0.000252803
0.000214299
0.000171129
0.000128205
9.30377e-05
6.15498e-05
1.61592e-05
6.44525e-06
2.94962e-06
1.13296e-05
5.35886e-05
0.000117637
0.000176111
0.000221918
0.000240267
0.000242061
0.000251251
0.000270977
0.000300623
0.000338816
0.000382202
0.000424993
0.000460862
0.000483288
0.000500733
0.000514301
0.000523047
0.000526149
0.000520625
0.000494436
0.000460598
0.000424795
0.000388023
0.000349498
0.000308347
0.000264233
0.000219384
0.000178394
0.00014048
0.00010167
6.27568e-05
1.62166e-05
6.2636e-06
3.00431e-06
1.03324e-05
5.15388e-05
0.000117404
0.000181797
0.000236193
0.000276638
0.000281492
0.000286253
0.000299429
0.000321251
0.000350457
0.000384875
0.000420442
0.000452713
0.000479486
0.000500363
0.000515416
0.000524172
0.000524843
0.000514778
0.000492807
0.00046122
0.000424941
0.000388605
0.000353693
0.000317945
0.000278499
0.000236413
0.000194431
0.000154983
0.000118267
7.96491e-05
2.06743e-05
6.48717e-06
3.11471e-06
9.73049e-06
5.0051e-05
0.000115594
0.000182149
0.000241811
0.000291767
0.000313481
0.000322888
0.000334744
0.000353
0.00037831
0.00040962
0.000442624
0.000470585
0.000491583
0.000508128
0.000520756
0.000527906
0.000527862
0.000519491
0.00050282
0.00047899
0.000449095
0.00041336
0.000372035
0.000326342
0.000277864
0.000228648
0.000185996
0.000152522
0.000121945
8.4398e-05
2.20751e-05
6.98509e-06
3.27927e-06
9.99765e-06
5.02859e-05
0.000114868
0.000180925
0.000242155
0.000296203
0.000328867
0.00035075
0.000369717
0.000388463
0.000409675
0.000435759
0.000466279
0.000494623
0.000512731
0.000522864
0.000530213
0.000534767
0.000533717
0.000525176
0.000509337
0.000487825
0.00046232
0.000432316
0.00039391
0.000343512
0.00028601
0.000233991
0.000185355
0.000142602
0.000108702
7.56721e-05
1.87255e-05
6.94041e-06
3.47547e-06
1.05108e-05
5.06314e-05
0.000114385
0.000179784
0.000241434
0.000297553
0.00033665
0.000368154
0.000395304
0.000419522
0.000442375
0.000466008
0.000491578
0.000516561
0.000534214
0.000542242
0.000545058
0.000544904
0.00054022
0.000529154
0.000511631
0.00048861
0.000460844
0.000428945
0.000392965
0.00035172
0.00030479
0.000256461
0.000207541
0.000158234
0.00011331
7.31145e-05
1.66902e-05
6.4971e-06
3.58317e-06
1.05817e-05
4.81223e-05
0.000108832
0.000171508
0.000231808
0.000283942
0.000332652
0.000374864
0.000409734
0.000439759
0.000467571
0.000494945
0.000522284
0.0005471
0.000563432
0.000567701
0.000564309
0.000558027
0.000549034
0.000535521
0.000516865
0.000494106
0.000468161
0.000438198
0.000401436
0.000357184
0.000310677
0.000265741
0.000222126
0.000178107
0.000133141
8.40277e-05
1.86827e-05
6.34635e-06
3.76635e-06
1.17077e-05
4.92223e-05
0.000109009
0.000168548
0.000216403
0.000264522
0.000317611
0.0003684
0.000411664
0.000448425
0.000481879
0.000514044
0.000544842
0.000571883
0.000590689
0.000597212
0.000592175
0.000579981
0.000563627
0.000543915
0.000521667
0.000498138
0.000472803
0.000442125
0.000402665
0.000356369
0.000308909
0.000264636
0.000225076
0.000188575
0.000149538
9.51787e-05
2.27014e-05
6.4963e-06
3.93503e-06
1.28395e-05
5.24318e-05
0.0001152
0.000175109
0.000211012
0.000251526
0.000301538
0.000354985
0.000404546
0.000447595
0.00048606
0.000522803
0.000558689
0.000590957
0.00061343
0.000620847
0.000614239
0.000599418
0.000582181
0.00056575
0.000549347
0.000528472
0.000498906
0.000460977
0.000417463
0.0003696
0.000318953
0.000269868
0.000227102
0.000191698
0.000156893
0.000102311
2.556e-05
6.79663e-06
4.19357e-06
1.43773e-05
5.83193e-05
0.000126958
0.000190602
0.000224025
0.000252532
0.000291055
0.000339055
0.000390711
0.000440031
0.00048454
0.000525016
0.000562899
0.00059773
0.000625683
0.000641423
0.000644147
0.000638878
0.000629606
0.000613515
0.000586515
0.000551337
0.000512815
0.000474117
0.000436482
0.000397835
0.000353
0.000299257
0.00024325
0.000194237
0.000152932
0.000104147
2.61454e-05
7.17512e-06
4.37964e-06
1.5816e-05
6.54316e-05
0.000141725
0.000212108
0.000259936
0.000277036
0.000301579
0.000340199
0.000390028
0.000443607
0.000494352
0.000539908
0.00058072
0.000617442
0.000649117
0.000673099
0.000688448
0.000697
0.000695615
0.000673818
0.000631526
0.000581125
0.000530516
0.000482502
0.000438979
0.000400355
0.000362938
0.00031907
0.000265405
0.000208654
0.000156514
0.00010436
2.59468e-05
7.45973e-06
4.58106e-06
1.71131e-05
7.20537e-05
0.000155421
0.000233304
0.000296696
0.000315088
0.000325691
0.000350164
0.000390839
0.000442721
0.000497629
0.000549382
0.000595317
0.0006346
0.000666472
0.000689874
0.000703834
0.000708095
0.000702283
0.000684735
0.000654208
0.000612766
0.000564525
0.000513459
0.000462972
0.000414252
0.000365287
0.000314616
0.000262533
0.00021151
0.000161438
0.000101654
2.45003e-05
7.53233e-06
4.71988e-06
1.76511e-05
7.53314e-05
0.000162837
0.000246445
0.000315958
0.000350737
0.000356302
0.000370165
0.000399666
0.000442018
0.000489512
0.000537274
0.000582344
0.000622638
0.000655916
0.00067957
0.000691991
0.000693795
0.000686718
0.000671489
0.000647404
0.000613866
0.000571925
0.000524315
0.000474195
0.000423694
0.000372696
0.000320307
0.000266735
0.000213662
0.00016106
9.76611e-05
2.25974e-05
7.17841e-06
4.95243e-06
1.88272e-05
7.97542e-05
0.000170423
0.000257698
0.000331462
0.000375002
0.000381107
0.000391472
0.000415417
0.000451573
0.000490848
0.000529792
0.000567475
0.000603027
0.000635317
0.000662312
0.000681389
0.000690422
0.000688147
0.000674456
0.000650786
0.000619182
0.000581138
0.000537631
0.000489627
0.000438378
0.000385564
0.000333079
0.000281934
0.000230464
0.000174038
0.000100402
2.2746e-05
6.7749e-06
5.06832e-06
1.93046e-05
8.23688e-05
0.000175569
0.000266186
0.000344238
0.000403896
0.000415053
0.000424633
0.000445466
0.000477468
0.000511457
0.00054472
0.00057729
0.000609726
0.000642518
0.000672928
0.000693503
0.000698639
0.000690168
0.000672426
0.000648486
0.000620223
0.000588573
0.000553349
0.000513429
0.000467696
0.000416353
0.000361748
0.000307624
0.000255396
0.000198015
0.000112613
2.56835e-05
6.69683e-06
5.1597e-06
1.98865e-05
8.44745e-05
0.000178612
0.000270793
0.000351584
0.000418895
0.000443293
0.000457922
0.000479382
0.000509517
0.000541278
0.000573015
0.00060473
0.000636875
0.000670351
0.000702171
0.000722041
0.000721759
0.00070562
0.00068083
0.000650655
0.000616615
0.000580877
0.000545505
0.000510626
0.000473864
0.000432002
0.000383928
0.000332344
0.000281022
0.000223385
0.000125135
2.88416e-05
6.90389e-06
5.11909e-06
1.97065e-05
8.36126e-05
0.000176919
0.000269481
0.0003522
0.000422761
0.000462863
0.000481503
0.000502276
0.000530364
0.00056092
0.000592743
0.000625431
0.000657298
0.000686966
0.000712754
0.000730439
0.000733673
0.000720245
0.000694296
0.000660468
0.000621042
0.0005779
0.000534121
0.000492851
0.000455058
0.000418722
0.000380707
0.000339685
0.000294456
0.00022974
0.00012767
2.96513e-05
7.12116e-06
5.12212e-06
1.99508e-05
8.33153e-05
0.000175483
0.000267383
0.000350314
0.000422012
0.0004668
0.000485684
0.000504366
0.000530514
0.000560479
0.000592558
0.000625992
0.00065765
0.000684543
0.000705332
0.000719086
0.000723975
0.000717926
0.000700046
0.000671135
0.00063296
0.000587668
0.000538104
0.000488039
0.000441264
0.00039998
0.000363869
0.000329986
0.000290004
0.000219076
0.000120962
2.82176e-05
7.16007e-06
5.09954e-06
1.9549e-05
8.1527e-05
0.000172619
0.000264233
0.000347542
0.000420161
0.000469985
0.00048778
0.00050125
0.000521799
0.00055001
0.000582904
0.000618891
0.000652007
0.000676855
0.000693207
0.00070321
0.000707335
0.000704351
0.000692951
0.000672487
0.000642779
0.000604048
0.000557347
0.000505139
0.000451346
0.000400421
0.000355559
0.000316431
0.000274901
0.000205394
0.000112556
2.62279e-05
7.04166e-06
5.16985e-06
1.94923e-05
8.08078e-05
0.000171245
0.000262545
0.000345777
0.000418389
0.000459515
0.000477097
0.00048954
0.000506717
0.000534355
0.000569793
0.000610542
0.000649928
0.000678491
0.000692794
0.00069777
0.000697922
0.000693886
0.000684319
0.000668081
0.000644812
0.000614407
0.000576558
0.000531144
0.000479307
0.000424145
0.000369881
0.00031921
0.000268701
0.000200282
0.000108876
2.51177e-05
6.91439e-06
5.27731e-06
1.92838e-05
8.01757e-05
0.000170459
0.000261859
0.000345268
0.000417959
0.000450511
0.000464744
0.000473487
0.000487871
0.000515928
0.000555832
0.000601042
0.000645051
0.000680107
0.000699779
0.00070609
0.000704689
0.000698262
0.00068662
0.000669206
0.000646323
0.000618732
0.000586716
0.000549536
0.000505875
0.000455281
0.00039949
0.000341573
0.000281602
0.000207788
0.000112289
2.5552e-05
6.88178e-06
5.46375e-06
1.99379e-05
8.23395e-05
0.000173695
0.000265538
0.000349033
0.000421671
0.000454882
0.000466664
0.000469272
0.000478354
0.000506134
0.000546285
0.00058942
0.000631565
0.000667432
0.000692546
0.000706271
0.000710738
0.000707427
0.000696452
0.000677979
0.000653184
0.00062402
0.000592236
0.000558347
0.000521171
0.000478541
0.000429289
0.000374138
0.000311151
0.000225502
0.000122344
2.80399e-05
6.94895e-06
5.62203e-06
2.10001e-05
8.63228e-05
0.000179782
0.00027277
0.000357099
0.000430796
0.000486523
0.000502064
0.000500669
0.000501407
0.000520767
0.000550464
0.000578957
0.000608254
0.000638609
0.000665019
0.000684247
0.000695491
0.000698522
0.000692804
0.000678084
0.000655143
0.000625931
0.000593029
0.000558673
0.000523788
0.000487516
0.000447753
0.000401261
0.000337198
0.00024105
0.000130679
3.01079e-05
7.02603e-06
5.75444e-06
2.21751e-05
9.07476e-05
0.000186553
0.000280751
0.000365766
0.000440028
0.000503478
0.000539665
0.000543296
0.000529474
0.000516972
0.000528795
0.000561413
0.000592712
0.000619978
0.000643211
0.000660147
0.000670923
0.000676131
0.000674855
0.000665561
0.000647459
0.000621198
0.000588884
0.000553547
0.000518276
0.00048504
0.000452769
0.000413572
0.000342683
0.000245623
0.000131904
3.00704e-05
6.98821e-06
5.89911e-06
2.31422e-05
9.45466e-05
0.000192749
0.00028842
0.000374307
0.000449099
0.000512919
0.00055434
0.000567963
0.00056225
0.000544075
0.00052508
0.000532179
0.000572398
0.000611079
0.000639557
0.000657759
0.000665457
0.0006656
0.00066106
0.00065208
0.000636938
0.000614246
0.000584214
0.000549005
0.000512261
0.000477843
0.000446875
0.000410866
0.000337527
0.000241907
0.000128581
2.89293e-05
6.83284e-06
5.9864e-06
2.42614e-05
9.88094e-05
0.000199229
0.000295958
0.000382276
0.000457142
0.000518448
0.000551582
0.000567444
0.000568791
0.000559125
0.000546283
0.000543357
0.00056754
0.000604295
0.000630178
0.000647124
0.000655741
0.000654904
0.000647202
0.000635608
0.000620645
0.000600865
0.000574781
0.000542551
0.00050654
0.000470544
0.000436892
0.000399415
0.000328174
0.000234838
0.000123836
2.76352e-05
6.66875e-06
5.97454e-06
2.43565e-05
9.96558e-05
0.000200528
0.000297558
0.000384234
0.000459504
0.000517692
0.000553461
0.000573848
0.000579335
0.000572049
0.000559241
0.000552776
0.000565582
0.000599675
0.000623278
0.000633809
0.000638198
0.00063686
0.000628307
0.000614483
0.000598002
0.000579402
0.00055732
0.000530401
0.000498992
0.000465164
0.00043045
0.000389667
0.000318027
0.000226587
0.000118453
2.63074e-05
6.57474e-06
5.91186e-06
2.38437e-05
9.83049e-05
0.000198363
0.000295077
0.00038199
0.000457834
0.000513627
0.000548566
0.000571655
0.000584297
0.000587413
0.00058414
0.000580611
0.000584747
0.000601234
0.000620973
0.00062427
0.000619097
0.000613267
0.000605564
0.000592753
0.00057534
0.000555448
0.000534143
0.000511001
0.000485315
0.000456954
0.000424539
0.000379775
0.000305777
0.000216162
0.000111732
2.46834e-05
6.47394e-06
5.83676e-06
2.31775e-05
9.61015e-05
0.000194711
0.00029085
0.000378159
0.000455114
0.00051595
0.00055133
0.000574868
0.000590378
0.000598994
0.000602982
0.000605609
0.000608317
0.000610763
0.000614464
0.000617467
0.000609726
0.000593962
0.000579301
0.00056573
0.000550254
0.000532052
0.00051209
0.000491121
0.000469225
0.000445572
0.000416121
0.000368697
0.000294727
0.00020663
0.000105858
2.32992e-05
6.31469e-06
5.78897e-06
2.268e-05
9.39524e-05
0.000191013
0.000286422
0.000373996
0.000452116
0.000520145
0.000558185
0.000581264
0.000597723
0.000609423
0.000617019
0.000622381
0.000627655
0.000631673
0.000629524
0.000620327
0.000608712
0.000593198
0.000571265
0.000547974
0.000526693
0.000507015
0.00048785
0.000469437
0.000451941
0.000433573
0.000408491
0.000362584
0.000288579
0.000200794
0.000101803
2.22138e-05
6.14564e-06
5.76435e-06
2.23991e-05
9.25116e-05
0.00018862
0.000283579
0.000371365
0.000450411
0.000520032
0.000570683
0.000594759
0.000609253
0.000620363
0.000628863
0.000634742
0.000639138
0.00064343
0.000646149
0.00064147
0.000625099
0.000601137
0.000575119
0.000548064
0.000519897
0.000492374
0.000467048
0.000444776
0.000425862
0.000409564
0.00039103
0.000355192
0.000283329
0.000196604
9.87656e-05
2.13401e-05
5.98998e-06
5.77437e-06
2.25607e-05
9.27878e-05
0.000189203
0.000284364
0.000372384
0.000451944
0.000522576
0.00058169
0.000608863
0.000622897
0.000633407
0.000642718
0.000649946
0.000653989
0.000654918
0.000653795
0.000650787
0.000643034
0.000625529
0.000596971
0.000561861
0.000525787
0.000491911
0.000460765
0.000432077
0.000406333
0.000384228
0.000364263
0.000337052
0.00027577
0.000191803
9.60305e-05
2.05687e-05
5.8547e-06
5.83131e-06
2.29343e-05
9.44546e-05
0.000192751
0.000289326
0.000378115
0.000458034
0.000528952
0.000587772
0.000619784
0.000636736
0.000647905
0.000657654
0.000666329
0.000672586
0.000675109
0.000673226
0.000666837
0.000656104
0.000640806
0.000619392
0.000589779
0.000552174
0.000509852
0.000467651
0.000429665
0.000397723
0.000370909
0.000346975
0.000321051
0.000275064
0.000192566
9.73905e-05
2.08905e-05
5.82815e-06
5.96029e-06
2.39193e-05
9.82768e-05
0.000199948
0.000299156
0.000389449
0.00046988
0.000540637
0.000591129
0.000627306
0.000650405
0.000664897
0.000675884
0.000685608
0.000693684
0.000698658
0.00069926
0.000694679
0.000684289
0.00066765
0.000644717
0.000615748
0.000580932
0.00054048
0.000495297
0.000447912
0.000402638
0.000365114
0.000337815
0.000315567
0.000283028
0.000201741
0.000104266
2.29086e-05
6.04046e-06
6.13762e-06
2.49406e-05
0.000102186
0.00020764
0.000310313
0.000403019
0.000484695
0.000554052
0.000598486
0.000636392
0.000665059
0.000683852
0.000697106
0.000708186
0.000717675
0.000724532
0.000727385
0.000725133
0.000716879
0.00070187
0.000679647
0.000650106
0.000613563
0.000570896
0.000523641
0.000473809
0.000423591
0.000375862
0.000336766
0.000310707
0.000284963
0.000214124
0.000112181
2.52584e-05
6.50569e-06
6.33622e-06
2.57191e-05
0.0001053
0.000214123
0.000320272
0.000415824
0.000499459
0.000569903
0.000611624
0.000649637
0.000681823
0.000703672
0.000718386
0.000730273
0.000740745
0.000749035
0.000753587
0.000752955
0.000746121
0.000732295
0.000710918
0.000681882
0.000645492
0.000602398
0.000553754
0.000501411
0.000447863
0.000395594
0.000347031
0.000307634
0.000277383
0.000223195
0.000116417
2.62356e-05
6.99188e-06
6.5286e-06
2.63191e-05
0.000107605
0.000218713
0.000327458
0.000425603
0.000511544
0.000585621
0.000629133
0.000665276
0.000697973
0.000721229
0.000736403
0.000748183
0.000758732
0.000767547
0.000773055
0.000773669
0.000768089
0.000755189
0.000734044
0.00070458
0.000667806
0.000625148
0.00057784
0.000526798
0.000472895
0.000417699
0.000363394
0.000313529
0.000273089
0.000227105
0.000117111
2.61435e-05
7.21527e-06
6.69878e-06
2.68097e-05
0.000109178
0.000221458
0.000331687
0.000431704
0.000519678
0.000595627
0.0006465
0.000680769
0.000710573
0.000732936
0.000748127
0.000759933
0.000770515
0.000779541
0.000785477
0.000786686
0.00078177
0.000769411
0.000748446
0.000718645
0.000681265
0.000638453
0.000592075
0.000542977
0.00049117
0.000437037
0.000381958
0.000328464
0.000280421
0.000227472
0.000116142
2.57369e-05
7.11249e-06
6.83867e-06
2.66099e-05
0.000108034
0.000219714
0.00033017
0.000431348
0.000521131
0.000599131
0.000655103
0.000688422
0.000715415
0.000736628
0.000752341
0.00076509
0.000776452
0.000786108
0.000792661
0.00079455
0.000790365
0.000778683
0.000758176
0.000728496
0.000690919
0.000647827
0.000601501
0.000553151
0.000502922
0.000451207
0.00039916
0.000347519
0.000295724
0.000227586
0.000115597
2.55486e-05
6.85547e-06
6.94777e-06
2.59436e-05
0.000104739
0.000214033
0.000323118
0.000424287
0.000515241
0.000595117
0.00065203
0.000685683
0.000712064
0.000733335
0.000750196
0.00076459
0.000777568
0.000788643
0.000796445
0.000799472
0.000796358
0.000785709
0.000766196
0.000737409
0.000700514
0.000657803
0.000611608
0.000563398
0.000513682
0.000463329
0.000414096
0.000365844
0.000312759
0.000229071
0.000116242
2.5663e-05
6.60836e-06
7.06301e-06
2.52939e-05
0.000101039
0.000207108
0.000313491
0.000413133
0.000503903
0.000584683
0.000638122
0.000673308
0.000701928
0.00072531
0.000744195
0.000760625
0.000775664
0.000788763
0.00079846
0.000803156
0.00080147
0.000792151
0.000774082
0.000746902
0.000711557
0.000670032
0.000624518
0.000576676
0.000527363
0.000477601
0.000429865
0.000384493
0.00033155
0.00023323
0.000118588
2.61927e-05
6.43093e-06
7.18654e-06
2.50954e-05
9.90701e-05
0.000202912
0.000306512
0.000403514
0.000492381
0.000570072
0.000618237
0.000655361
0.000687574
0.000714277
0.000735797
0.00075442
0.000771567
0.000786873
0.000798836
0.000805661
0.000805783
0.00079796
0.000781314
0.000755723
0.00072211
0.000682202
0.000637948
0.000591054
0.000542736
0.000494058
0.000447169
0.000401479
0.000341292
0.000238876
0.000122163
2.71041e-05
6.33319e-06
7.3283e-06
2.5426e-05
9.97545e-05
0.000203697
0.000305786
0.000399943
0.000485396
0.000547115
0.000594055
0.000634603
0.000671052
0.000701707
0.000726341
0.000747184
0.000766051
0.000783027
0.000796835
0.000805625
0.000807624
0.000801446
0.000786278
0.000762194
0.000730206
0.000691935
0.000649185
0.000603721
0.000557172
0.000510797
0.000465559
0.000418981
0.000350001
0.000245039
0.000125895
2.80226e-05
6.27979e-06
7.44915e-06
2.58801e-05
0.000101874
0.000207811
0.000310144
0.000402272
0.000474273
0.000526385
0.000570857
0.000612925
0.000652827
0.000687776
0.000716276
0.000739705
0.000759945
0.000777653
0.000792142
0.000801905
0.000805221
0.000800572
0.000786987
0.000764463
0.000734035
0.000697395
0.000656405
0.000612901
0.000568675
0.000525133
0.000482028
0.000434171
0.000356399
0.00024912
0.000127962
2.84219e-05
6.21529e-06
7.528e-06
2.61536e-05
0.000103311
0.000210756
0.000314077
0.000405901
0.000474812
0.000518274
0.000556772
0.000596059
0.000635907
0.000673184
0.00070521
0.000731726
0.000753721
0.000771844
0.000785886
0.000794938
0.000797799
0.000793303
0.000780641
0.000759783
0.000731551
0.000697398
0.000659126
0.00061866
0.000577764
0.000537304
0.000495567
0.000445
0.000360145
0.00025117
0.000128815
2.85206e-05
6.11899e-06
7.5625e-06
2.57856e-05
0.000101868
0.000208382
0.000312076
0.00040514
0.000486333
0.000525062
0.000554103
0.000585822
0.000621587
0.000658375
0.000692666
0.000722343
0.000746693
0.000765572
0.000778792
0.00078601
0.000786862
0.000781022
0.00076824
0.000748606
0.000722682
0.000691536
0.000656757
0.000620358
0.000584289
0.000549009
0.000510536
0.000456333
0.000361955
0.000251244
0.00012809
2.80706e-05
5.96928e-06
7.61662e-06
2.53575e-05
9.94096e-05
0.000203246
0.000305332
0.000398307
0.000480327
0.000531042
0.000556938
0.000581606
0.000611749
0.000645435
0.000679226
0.000710488
0.000737326
0.000758316
0.00077244
0.000779169
0.000778514
0.000770832
0.000756566
0.000736315
0.000710904
0.000681509
0.000649785
0.00061785
0.000587608
0.000558376
0.000521893
0.00045745
0.000362502
0.000251152
0.000127703
2.77606e-05
5.78789e-06
7.67855e-06
2.53145e-05
9.81395e-05
0.00019993
0.000299845
0.0003913
0.000472787
0.000531437
0.000558353
0.000580802
0.000607782
0.00063874
0.000670665
0.000701108
0.000728202
0.000750151
0.000765292
0.000772537
0.000771679
0.000763178
0.000747753
0.000726348
0.000700207
0.000670992
0.000640855
0.00061228
0.000587116
0.000563484
0.000529296
0.000457087
0.000362111
0.00025071
0.000127369
2.75368e-05
5.60045e-06
7.71677e-06
2.50192e-05
9.66726e-05
0.000197647
0.000296561
0.000386899
0.000467399
0.000528309
0.000557051
0.000579772
0.000605793
0.000635367
0.00066612
0.000696026
0.000723421
0.000746353
0.000762674
0.000770746
0.000770055
0.000761048
0.000744563
0.000721668
0.000693821
0.00066308
0.000632184
0.000604266
0.000581646
0.00056213
0.000531063
0.000454984
0.000360676
0.000249745
0.00012682
2.72729e-05
5.42335e-06
7.74551e-06
2.43098e-05
9.43114e-05
0.000194673
0.000293296
0.000383262
0.000463222
0.000520752
0.000551611
0.000576532
0.000603311
0.0006325
0.00066232
0.0006913
0.000718463
0.000742321
0.000760566
0.000770848
0.000771912
0.000763858
0.000747499
0.000723933
0.000694627
0.000661748
0.000628301
0.000597809
0.000573069
0.0005526
0.000522864
0.000450321
0.000357517
0.00024776
0.000125667
2.68237e-05
5.24945e-06
7.7723e-06
2.37697e-05
9.23492e-05
0.000191435
0.000289152
0.000378596
0.000458254
0.000513916
0.000545223
0.000571683
0.000599706
0.000629225
0.000658494
0.000686449
0.000712784
0.000736764
0.000756483
0.000769291
0.000773102
0.000767315
0.000752487
0.000729652
0.000700125
0.00066586
0.000629756
0.000595395
0.000565822
0.000540502
0.00050919
0.000444636
0.000353871
0.000246069
0.000125272
2.67045e-05
5.10684e-06
7.7886e-06
2.27401e-05
8.81593e-05
0.000184377
0.000280191
0.000368906
0.000448691
0.00050387
0.000535715
0.000563732
0.000593406
0.000623845
0.00065305
0.000680235
0.000705711
0.000729488
0.00075027
0.000765505
0.00077254
0.000769979
0.000757945
0.000737342
0.000709257
0.000675155
0.000637371
0.000599155
0.000563716
0.000531721
0.000496578
0.000438155
0.000348989
0.000243363
0.000124434
2.65208e-05
4.99351e-06
7.79144e-06
2.1407e-05
8.19825e-05
0.000174103
0.000267112
0.000354554
0.000434289
0.00048795
0.000519337
0.000548766
0.000581876
0.000616005
0.000647351
0.000674737
0.000699432
0.000722655
0.000743973
0.000761122
0.000770993
0.000771379
0.000762044
0.000744082
0.000718671
0.00068681
0.000649856
0.000609953
0.000569637
0.000530188
0.000488402
0.000431664
0.000342962
0.000239273
0.000122779
2.61451e-05
4.89606e-06
7.70703e-06
1.92451e-05
7.23036e-05
0.00015976
0.000250087
0.000336406
0.000416206
0.000469722
0.000503546
0.000534647
0.000569641
0.000606739
0.000641162
0.000670112
0.000694596
0.000716925
0.000737968
0.000756367
0.000769108
0.000773098
0.000767024
0.000751794
0.000729088
0.000700164
0.000665861
0.000627066
0.000584805
0.000539563
0.00048972
0.000428704
0.000338498
0.000235577
0.000121482
2.5944e-05
4.82115e-06
7.64122e-06
1.69859e-05
6.10715e-05
0.000144256
0.000233134
0.000318976
0.000387484
0.000442024
0.000487433
0.000528675
0.000568931
0.000608144
0.000643555
0.000672694
0.000696193
0.000716759
0.000736191
0.000754057
0.000767933
0.0007746
0.00077185
0.000759821
0.000740298
0.000715072
0.000685122
0.000650632
0.000611086
0.000564914
0.000508514
0.000434748
0.000340686
0.000235765
0.000121762
2.60526e-05
4.74248e-06
7.64886e-06
1.52668e-05
5.11711e-05
0.00012999
0.000217713
0.000285919
0.000344322
0.000403741
0.000463337
0.000519952
0.000571519
0.000616634
0.000653818
0.000682442
0.000704213
0.000722446
0.00073965
0.000756194
0.000770274
0.000778651
0.000778275
0.000768385
0.000750853
0.000728422
0.000702912
0.00067426
0.000640002
0.00059516
0.000533368
0.000445197
0.000346705
0.000238336
0.000122733
2.60887e-05
4.66465e-06
7.75344e-06
1.50393e-05
4.7799e-05
0.000122483
0.000208265
0.000270832
0.000321722
0.000377045
0.000437693
0.000500206
0.000560248
0.000613523
0.000656615
0.000688412
0.000710953
0.00072808
0.000743065
0.000757305
0.00077014
0.000779127
0.000781038
0.000774131
0.000759643
0.000740577
0.000719483
0.000696715
0.000668659
0.000625556
0.000551579
0.000460542
0.000358065
0.000245364
0.000126272
2.69247e-05
4.58765e-06
7.864e-06
1.60858e-05
5.132e-05
0.000123873
0.00020646
0.00027618
0.000323621
0.000371192
0.000424125
0.000481504
0.000540434
0.00059666
0.000645383
0.000683324
0.000710578
0.00073001
0.000744979
0.000757697
0.000768693
0.000776724
0.000779127
0.000773652
0.000760996
0.000744791
0.000728582
0.000712576
0.000690386
0.00064639
0.000567762
0.000475151
0.000369341
0.000252096
0.000128822
2.71986e-05
4.48121e-06
7.9051e-06
1.70813e-05
5.57879e-05
0.000128414
0.000208099
0.00028172
0.00033013
0.000374719
0.00042213
0.000472995
0.00052625
0.000579613
0.000629487
0.000672146
0.00070562
0.000730428
0.000748604
0.000762245
0.000772574
0.00077947
0.000781457
0.000776779
0.000765329
0.000750022
0.000735242
0.000722597
0.000705102
0.000660963
0.000583873
0.000491445
0.000383905
0.0002629
0.000134625
2.84882e-05
4.39171e-06
7.93481e-06
1.73765e-05
5.81109e-05
0.000132587
0.000212346
0.000286474
0.000334854
0.000379582
0.00042632
0.000474727
0.000523762
0.000572417
0.000618919
0.00066098
0.000697014
0.000726614
0.000750131
0.000768228
0.000781448
0.000789484
0.000790772
0.00078403
0.000770528
0.000754208
0.000739768
0.00072922
0.000715411
0.000672221
0.000597074
0.000505501
0.000397118
0.000273186
0.000140311
2.99593e-05
4.3626e-06
8.01504e-06
1.74492e-05
5.90104e-05
0.000135476
0.000217592
0.000296293
0.000349065
0.000391945
0.000436495
0.000483385
0.000530542
0.000576368
0.000619815
0.000659752
0.000695178
0.000725824
0.00075185
0.000773253
0.000789818
0.000800731
0.000803762
0.000796325
0.000779333
0.000758485
0.000740469
0.000728653
0.000716669
0.000676321
0.000602744
0.000511879
0.000402918
0.000277077
0.000141656
2.98972e-05
4.30771e-06
8.15104e-06
1.78738e-05
5.96788e-05
0.000136844
0.000220506
0.000302309
0.00036952
0.000415534
0.000457772
0.00050178
0.000546439
0.000589204
0.000628423
0.000663845
0.000696119
0.000725923
0.000753202
0.000777042
0.000796288
0.000809689
0.000814934
0.000808857
0.000791191
0.0007675
0.000745568
0.00073043
0.000717893
0.000681043
0.00060931
0.000519879
0.000411251
0.000284075
0.000145671
3.08781e-05
4.29842e-06
8.27781e-06
1.82007e-05
5.89929e-05
0.00013507
0.000215967
0.000299232
0.000374542
0.000432352
0.000479628
0.000522653
0.000564035
0.000604073
0.000642015
0.000677106
0.000709072
0.000737904
0.000763366
0.000784853
0.000801755
0.000813412
0.000818032
0.000812383
0.000794927
0.000770038
0.000745824
0.000728674
0.000716236
0.000681628
0.000611024
0.000522459
0.000413882
0.000285572
0.000145355
3.04478e-05
4.29906e-06
8.4102e-06
1.76953e-05
5.46472e-05
0.000126561
0.000194904
0.000270736
0.000350107
0.000421888
0.000483117
0.000533846
0.000576878
0.000615206
0.000650679
0.000684024
0.000715307
0.000744179
0.000769855
0.000791233
0.000807348
0.000817481
0.000820397
0.000813843
0.000796281
0.000770636
0.000744159
0.000723974
0.000710353
0.000680159
0.000610608
0.000523248
0.000415586
0.000287405
0.000146379
3.073e-05
4.3195e-06
8.50857e-06
1.79962e-05
5.49386e-05
0.000124024
0.000188677
0.000249191
0.000313607
0.00038155
0.000447509
0.000507065
0.000559135
0.000604436
0.000644182
0.000679766
0.000712197
0.000741779
0.000768079
0.000790156
0.000807036
0.000817833
0.000821153
0.000814725
0.000796806
0.000769949
0.000741563
0.000719227
0.000704463
0.000676893
0.000607985
0.000521502
0.000414661
0.000286868
0.000145749
3.06452e-05
4.34657e-06
8.41223e-06
1.91009e-05
5.93622e-05
0.00012562
0.000169318
0.000233222
0.000301525
0.000367463
0.000428134
0.000482628
0.000532115
0.000578216
0.000621296
0.000660743
0.000696429
0.000728476
0.000756713
0.000780536
0.000799173
0.000811811
0.000817237
0.000813397
0.000797773
0.000771
0.000740416
0.000715573
0.000699242
0.000670246
0.000601589
0.000515728
0.000409827
0.000283207
0.00014338
2.99661e-05
4.34931e-06
8.31955e-06
1.94973e-05
6.11501e-05
0.00012727
0.0001483
0.000206288
0.000289763
0.000366289
0.000433666
0.000492304
0.000542177
0.000584804
0.00062272
0.000657808
0.000690489
0.000720656
0.000748084
0.000772033
0.000791431
0.000805077
0.000811601
0.000809436
0.000796542
0.000772002
0.000740594
0.000712781
0.000693883
0.000664158
0.000596086
0.000511154
0.000406362
0.000280846
0.000142028
2.97667e-05
4.41321e-06
8.39838e-06
1.98808e-05
6.42099e-05
0.000129118
0.000144918
0.000192365
0.000286799
0.000374806
0.000446204
0.000505742
0.000555073
0.000595977
0.000630871
0.000661544
0.000688932
0.000713905
0.000737116
0.000758495
0.000777182
0.000791587
0.000799535
0.000798884
0.000787805
0.000765521
0.000734816
0.000704152
0.000681336
0.000654216
0.000587267
0.000503849
0.000400601
0.000276277
0.000138522
2.87855e-05
4.44135e-06
8.49162e-06
2.13885e-05
6.96213e-05
0.000126836
0.000147345
0.000188416
0.000269248
0.000356201
0.000420753
0.000475475
0.000523209
0.000565461
0.000603259
0.000636741
0.000665951
0.000691347
0.00071372
0.000733937
0.000752244
0.00076771
0.000778176
0.000780987
0.00077367
0.000754923
0.00072641
0.000694625
0.000667538
0.00063935
0.000573766
0.000492737
0.000392858
0.000272307
0.000137341
2.87451e-05
4.46466e-06
8.41305e-06
2.50238e-05
8.43588e-05
0.00015886
0.000180165
0.000196492
0.000239217
0.00029852
0.000350223
0.000404007
0.000460933
0.00051505
0.000562356
0.000602097
0.000634732
0.000661238
0.000683154
0.000702249
0.000719831
0.000735806
0.000748262
0.000754397
0.00075146
0.000737839
0.000714541
0.000686149
0.000657716
0.000618929
0.000553305
0.000472885
0.000374904
0.000257998
0.000128392
2.63346e-05
4.43701e-06
7.68709e-06
2.4683e-05
8.61513e-05
0.000162177
0.000210223
0.000202422
0.000206406
0.000243535
0.000307106
0.000365394
0.000413898
0.000463301
0.000512849
0.000557321
0.000594377
0.000624002
0.000647136
0.000665534
0.000681519
0.000696602
0.000710019
0.000719187
0.000720891
0.000712677
0.000694307
0.000668748
0.000639713
0.000599036
0.000534818
0.000456212
0.00036048
0.000246411
0.000120794
2.4303e-05
4.3888e-06
7.17272e-06
1.93351e-05
7.47477e-05
0.000152847
0.000225922
0.000263542
0.000254917
0.00023961
0.00025499
0.00031467
0.000388119
0.000440517
0.000482761
0.000525661
0.000565451
0.000597513
0.000621336
0.000638472
0.000651508
0.000663069
0.000674334
0.000684389
0.000690335
0.000688374
0.000675241
0.000650722
0.00061815
0.0005781
0.000516744
0.000442198
0.000351461
0.000242376
0.000120033
2.45109e-05
4.37215e-06
7.31908e-06
1.89963e-05
7.53601e-05
0.000155025
0.000230148
0.000285308
0.000300527
0.000301529
0.000292496
0.000292356
0.000332905
0.000410049
0.000471172
0.000507652
0.000540903
0.00057356
0.000599199
0.000615929
0.000626063
0.000632772
0.000638516
0.00064445
0.000650001
0.000653039
0.000649325
0.000633019
0.000599995
0.000551959
0.000491917
0.00042035
0.000334829
0.00023294
0.000117388
2.45202e-05
4.39789e-06
7.62117e-06
2.09064e-05
8.22508e-05
0.000166201
0.000245429
0.000314474
0.00037246
0.000375657
0.000364867
0.000353289
0.000341835
0.000353645
0.000415498
0.000488641
0.000524584
0.000548466
0.000573937
0.000593802
0.000603738
0.000606741
0.0006073
0.000607771
0.000608281
0.000608487
0.000607616
0.000601564
0.00057789
0.000526968
0.000466442
0.00039547
0.000312587
0.000216226
0.000108714
2.27192e-05
4.40632e-06
7.96631e-06
2.57659e-05
9.80676e-05
0.000190044
0.000274259
0.000346492
0.00040702
0.000452061
0.000448772
0.000430775
0.000411296
0.000391867
0.000381482
0.000419881
0.000502061
0.000550391
0.000568606
0.000582561
0.000592371
0.000593976
0.000590001
0.000584808
0.000579998
0.000574944
0.000568754
0.000560473
0.000546003
0.000510416
0.000450179
0.000379432
0.000297474
0.00020365
0.00010107
2.07756e-05
4.4007e-06
8.05485e-06
2.74448e-05
0.000104167
0.000200243
0.000289067
0.000366325
0.000431969
0.000486678
0.000531268
0.000525077
0.000495611
0.000457149
0.000418931
0.000401725
0.000445666
0.000528494
0.000571893
0.000585123
0.000591977
0.000592766
0.000585998
0.000575442
0.000565095
0.000555573
0.000545457
0.000532947
0.000515789
0.000489213
0.000441331
0.000372513
0.000292141
0.000199813
9.89594e-05
2.00589e-05
4.36064e-06
8.083e-06
2.94275e-05
0.000110661
0.000209779
0.000300475
0.000379324
0.000446903
0.000504306
0.000552112
0.000570505
0.000564363
0.000530933
0.000480372
0.000438479
0.000440155
0.000498837
0.000560443
0.00058362
0.000590738
0.000593178
0.000587645
0.000574844
0.000559597
0.000545021
0.000530961
0.000515634
0.000496594
0.000470315
0.000430858
0.000365588
0.000287548
0.000197604
9.85798e-05
1.9786e-05
4.28101e-06
7.88286e-06
2.74713e-05
0.000106286
0.000204866
0.000296561
0.000377203
0.00044682
0.000506323
0.000544488
0.000568373
0.000578221
0.000565655
0.000532204
0.000499183
0.000486401
0.000511641
0.000563901
0.000590421
0.000593859
0.000592734
0.000587856
0.000575315
0.000557055
0.000537758
0.000519614
0.000501788
0.000482178
0.000457383
0.000420083
0.000353093
0.000275157
0.000186915
9.13979e-05
1.75074e-05
4.07642e-06
7.79718e-06
2.59964e-05
0.000101808
0.000198095
0.000289021
0.000370067
0.000440713
0.000490132
0.000525805
0.00055502
0.000575993
0.000585224
0.000580175
0.00056326
0.000545142
0.00054511
0.000579143
0.000611547
0.000606055
0.000593199
0.000584876
0.000574265
0.000556178
0.000532953
0.000509801
0.000488886
0.000468568
0.000445194
0.000410402
0.000342312
0.000261256
0.000172163
7.95887e-05
1.38924e-05
3.78259e-06
7.74345e-06
2.41605e-05
9.57867e-05
0.00018839
0.000277474
0.000358577
0.0004304
0.00047569
0.000515146
0.000553477
0.000587374
0.000612566
0.000625671
0.000622503
0.000603264
0.000581259
0.000582213
0.00061677
0.00063835
0.000615119
0.000584755
0.000562796
0.000543851
0.000521798
0.000498159
0.00047692
0.00045839
0.000437785
0.000406805
0.000346832
0.000260934
0.000167896
7.42616e-05
1.17434e-05
3.50134e-06
7.80945e-06
2.36448e-05
9.31349e-05
0.000182774
0.000269139
0.000348612
0.00041421
0.000462183
0.000506769
0.000550782
0.000591667
0.00062537
0.000649662
0.000663436
0.00066287
0.000644333
0.000615898
0.000601101
0.000614776
0.000632214
0.000614472
0.000571983
0.000532995
0.000502674
0.000477755
0.000457251
0.000442733
0.000432023
0.000414982
0.000371581
0.000281361
0.000181608
8.13383e-05
1.27632e-05
3.34769e-06
7.86322e-06
2.36481e-05
9.26667e-05
0.000181119
0.000265723
0.000343568
0.000403793
0.0004534
0.000501752
0.000548673
0.000591933
0.000629574
0.000659291
0.000679572
0.000690808
0.00069297
0.000682758
0.000657777
0.000627264
0.000607344
0.000600283
0.000587832
0.000554343
0.000509035
0.000469735
0.000442317
0.000426823
0.000422794
0.000425757
0.000411859
0.000319166
0.000210183
9.71725e-05
1.6481e-05
3.32225e-06
7.9209e-06
2.35779e-05
9.22652e-05
0.000180222
0.000264097
0.000340871
0.000394643
0.000445351
0.000497363
0.000548303
0.000594654
0.000634028
0.000665557
0.000689115
0.000704798
0.000713323
0.000715979
0.000712871
0.000700634
0.00067494
0.000637402
0.000596614
0.000558851
0.000522265
0.000483208
0.000446339
0.000421579
0.000412646
0.000419409
0.000426842
0.000362514
0.000247653
0.000119528
2.29677e-05
3.64661e-06
7.96285e-06
2.293e-05
9.01685e-05
0.000176808
0.000259946
0.000332167
0.000386916
0.000440191
0.000494771
0.000548138
0.000597083
0.000639405
0.000674137
0.000701246
0.000721287
0.000735164
0.000743747
0.000747685
0.000747222
0.000740898
0.000723446
0.000686936
0.000627939
0.000557565
0.000495003
0.000449571
0.000419238
0.00040374
0.000403739
0.000414156
0.000392743
0.000277797
0.00013977
2.93893e-05
4.21533e-06
8.04697e-06
2.23303e-05
8.78174e-05
0.000172171
0.000253433
0.000319723
0.000376024
0.000433415
0.000492115
0.000548431
0.000598897
0.00064182
0.00067702
0.000705014
0.000726629
0.000743016
0.000755574
0.000765568
0.000773131
0.000776092
0.000768965
0.000742402
0.000686548
0.000602603
0.000513508
0.000447551
0.000411368
0.000395571
0.000396154
0.000410635
0.000400605
0.000284394
0.000142848
3.05666e-05
4.59459e-06
8.14013e-06
2.2085e-05
8.6509e-05
0.00016879
0.000247983
0.000308971
0.000366357
0.000427015
0.00048895
0.000547584
0.000599045
0.00064158
0.000675371
0.000701625
0.000721705
0.000736849
0.000748387
0.000757795
0.000765841
0.000770715
0.000766605
0.000744147
0.000693779
0.00061563
0.000528896
0.000460024
0.000417277
0.000393184
0.000390115
0.000409041
0.00040174
0.000283589
0.000140086
3.08333e-05
4.76594e-06
8.23725e-06
2.23376e-05
8.66227e-05
0.000167107
0.000242605
0.000299553
0.000357697
0.000420105
0.000483116
0.000541852
0.00059258
0.000633618
0.000665342
0.000689184
0.000706748
0.000719395
0.000728229
0.000734333
0.000738575
0.000740248
0.000735352
0.000717205
0.000679113
0.000619315
0.000546986
0.000479208
0.000426865
0.00039161
0.000379711
0.000396369
0.000406404
0.000293546
0.000150313
3.60388e-05
5.20927e-06
8.29116e-06
2.25559e-05
8.68731e-05
0.000165846
0.00023572
0.000291115
0.00034918
0.000411896
0.00047502
0.000532927
0.00058154
0.000619591
0.000648088
0.000668935
0.000684076
0.000694996
0.000702521
0.000707203
0.000709528
0.000709304
0.00070465
0.00069197
0.000666933
0.000626597
0.000571829
0.000509819
0.000451463
0.000404588
0.000375808
0.000373231
0.000390784
0.000297496
0.000160806
4.01871e-05
6.00606e-06
8.31176e-06
2.24543e-05
8.62499e-05
0.000163572
0.000228046
0.000282719
0.000341465
0.000404942
0.000468456
0.000526132
0.000573656
0.0006096
0.000635204
0.000653088
0.000665784
0.000675098
0.000682092
0.000687313
0.000691159
0.000693641
0.000693384
0.00068757
0.000672825
0.000646446
0.0006074
0.000557573
0.000502336
0.000449283
0.000405929
0.000378042
0.000357953
0.000275773
0.000145782
3.40154e-05
6.5059e-06
8.31924e-06
2.19995e-05
8.46375e-05
0.000160008
0.000219568
0.000274521
0.000334961
0.000399985
0.000464458
0.000522323
0.000569162
0.000603678
0.000627422
0.000643327
0.000654224
0.000662155
0.000668418
0.000673817
0.000678933
0.000683991
0.000687782
0.00068765
0.000680468
0.00066373
0.00063623
0.000598453
0.000552918
0.000503928
0.000455545
0.000408032
0.000350165
0.000245772
0.000120897
2.60472e-05
6.50146e-06
8.33848e-06
2.15804e-05
8.29454e-05
0.000156141
0.00021105
0.000267094
0.000329844
0.000396574
0.000461808
0.000519552
0.000565452
0.000598299
0.000619857
0.000633384
0.000642098
0.000648364
0.000653642
0.000658859
0.000664715
0.000671402
0.000677419
0.000679995
0.000676008
0.000662958
0.000640158
0.000608729
0.000570943
0.000528903
0.00048099
0.000419294
0.000324572
0.000213977
9.69507e-05
1.9871e-05
6.07955e-06
8.36125e-06
2.12995e-05
8.13035e-05
0.000150006
0.000202924
0.000260446
0.000325003
0.000392918
0.000458586
0.00051603
0.000560904
0.000592067
0.000611437
0.000622479
0.000628647
0.000632544
0.000635862
0.000639755
0.000645115
0.000652245
0.000659337
0.000663336
0.000661662
0.000652781
0.000635607
0.000609266
0.000573325
0.000527871
0.000471388
0.000394018
0.000298304
0.000189404
7.96678e-05
1.59894e-05
5.48179e-06
8.3639e-06
2.10376e-05
7.96988e-05
0.000143091
0.000194917
0.000252643
0.00031783
0.00038642
0.000452372
0.000509478
0.000553401
0.000583107
0.000600594
0.000609396
0.000613092
0.000614506
0.000615629
0.000617928
0.000622476
0.000629504
0.000636676
0.000640837
0.000640604
0.000636139
0.000626366
0.00060694
0.000571889
0.000517113
0.00044842
0.000366821
0.000272384
0.000167932
6.71439e-05
1.3764e-05
4.89363e-06
8.32954e-06
2.04349e-05
7.72486e-05
0.000136011
0.000186343
0.000243201
0.000307854
0.000376314
0.000442166
0.00049884
0.00054196
0.000570596
0.000586751
0.000593856
0.000595421
0.000594368
0.000592974
0.000593066
0.000595919
0.000601571
0.000606993
0.000609119
0.000608575
0.00060877
0.000610467
0.000602596
0.000557649
0.000500917
0.000431958
0.000350933
0.000259036
0.000160012
6.54808e-05
1.38671e-05
4.44987e-06
8.26337e-06
1.9635e-05
7.44039e-05
0.000129229
0.000178249
0.000234184
0.000298059
0.000365912
0.000431079
0.000486858
0.000529028
0.000556829
0.000572204
0.000578321
0.000578433
0.000575437
0.000571888
0.000570044
0.000571438
0.00057589
0.000579639
0.000579246
0.000575939
0.000574565
0.000578427
0.000580498
0.000548946
0.00049454
0.000427637
0.000348925
0.00026019
0.000164852
7.15122e-05
1.52985e-05
4.36595e-06
8.17709e-06
1.87312e-05
7.12691e-05
0.000122745
0.000171166
0.000227016
0.000290616
0.000357831
0.000422027
0.000476759
0.000518159
0.000545649
0.000561044
0.000567135
0.000566755
0.000562531
0.000557059
0.000552887
0.000551878
0.000553988
0.00055547
0.000552927
0.000548043
0.000546583
0.000553632
0.000564747
0.000547827
0.000498055
0.000435355
0.000360144
0.000273634
0.000178084
8.06469e-05
1.67284e-05
4.33655e-06
8.08544e-06
1.79436e-05
6.82999e-05
0.000116428
0.000165114
0.000222106
0.000286293
0.000353118
0.000416228
0.000469784
0.000510449
0.000537851
0.000553673
0.000560371
0.000560389
0.000556037
0.000549779
0.000544182
0.00054128
0.000541338
0.000541052
0.00053679
0.000529617
0.000525207
0.000529856
0.000543104
0.000540743
0.000495672
0.00043755
0.000366197
0.000281947
0.000186072
8.52185e-05
1.69441e-05
4.33784e-06
7.99308e-06
1.70948e-05
6.48935e-05
0.000109355
0.000158779
0.000217899
0.000283544
0.000350441
0.000412652
0.000465191
0.000505376
0.000533044
0.000549734
0.000557596
0.000558682
0.00055485
0.000548089
0.000540725
0.00053497
0.000531842
0.000529167
0.000523599
0.000515174
0.000508433
0.000509776
0.000522317
0.000532524
0.00049208
0.000438314
0.00036997
0.000286447
0.000188681
8.46333e-05
1.57219e-05
4.07083e-06
7.90483e-06
1.61861e-05
6.10395e-05
0.000101161
0.000151213
0.00021308
0.000281092
0.000348719
0.000410266
0.000461719
0.00050122
0.000528914
0.000546241
0.000555101
0.000557294
0.000554427
0.000548203
0.000540594
0.000533555
0.000528148
0.000522893
0.000515033
0.000503895
0.000492624
0.000486282
0.000488842
0.000495192
0.00047618
0.000426329
0.000361523
0.00028052
0.000183933
8.06316e-05
1.4564e-05
3.90359e-06
7.82181e-06
1.5044e-05
5.62128e-05
9.14957e-05
0.000141258
0.000205484
0.000276248
0.000345262
0.000406665
0.00045734
0.000496359
0.000524288
0.000542519
0.000552702
0.000556359
0.000554776
0.000549217
0.000541244
0.000532678
0.000524878
0.000517149
0.000507427
0.000494652
0.00048056
0.000468751
0.000462959
0.000463434
0.000458098
0.000415907
0.000353935
0.000274527
0.000178278
7.58601e-05
1.32889e-05
3.59886e-06
7.74842e-06
1.39719e-05
5.05733e-05
8.18287e-05
0.000130318
0.000195973
0.000269635
0.00034076
0.000402538
0.000452474
0.000490698
0.00051841
0.000537076
0.000548122
0.000552841
0.000552419
0.00054808
0.00054124
0.000533372
0.000525372
0.000516274
0.000504187
0.000488362
0.000470475
0.000453326
0.000439083
0.000428518
0.000418385
0.000396435
0.000338849
0.000264247
0.000172374
7.35315e-05
1.3466e-05
3.54033e-06
7.68516e-06
1.28501e-05
4.4022e-05
7.21275e-05
0.000117991
0.000183285
0.000259151
0.000332739
0.000395431
0.000444895
0.00048236
0.000509857
0.000529044
0.000541133
0.000547115
0.000547939
0.000544632
0.000538426
0.000530711
0.000522458
0.00051302
0.000500547
0.000483701
0.000463312
0.00044218
0.00042299
0.000406938
0.000393013
0.000374445
0.000326621
0.000255242
0.000166771
7.13257e-05
1.33361e-05
3.35355e-06
7.63356e-06
1.2038e-05
3.91136e-05
6.35908e-05
0.000105568
0.000169332
0.000247298
0.00032398
0.000387945
0.000436712
0.000472925
0.000499693
0.000518929
0.000531612
0.000538406
0.000540121
0.000537867
0.000533025
0.000526933
0.000520168
0.0005114
0.000498208
0.000479417
0.000456489
0.000432086
0.000408357
0.000386482
0.00036699
0.000347884
0.000313887
0.000247456
0.000163965
7.1987e-05
1.41972e-05
3.44885e-06
7.59074e-06
1.11746e-05
3.48714e-05
5.54868e-05
9.25354e-05
0.00015322
0.000232619
0.000312811
0.000374996
0.000420884
0.000458769
0.000487614
0.000506766
0.000520115
0.000527945
0.000530529
0.000528663
0.000523719
0.000517388
0.000510883
0.000503693
0.000493301
0.000476425
0.000452597
0.000424914
0.000397141
0.000371248
0.000348059
0.000327598
0.000302534
0.000238749
0.000158935
7.04257e-05
1.38932e-05
3.34987e-06
7.53814e-06
1.09243e-05
3.25819e-05
4.94189e-05
8.10817e-05
0.000137825
0.000219016
0.000303081
0.000357792
0.000403401
0.000440761
0.000471281
0.000496229
0.000511183
0.000518473
0.000521561
0.000520532
0.000516359
0.000510592
0.000504206
0.000496445
0.000485291
0.000468851
0.000447126
0.000421116
0.000392697
0.000364436
0.000338537
0.000316058
0.000291904
0.000234845
0.00015818
7.13406e-05
1.4194e-05
3.43555e-06
7.45093e-06
1.10974e-05
3.1843e-05
4.48712e-05
7.0443e-05
0.000121243
0.000201527
0.00028211
0.000336909
0.00038275
0.0004202
0.000450766
0.000475862
0.00049647
0.000512294
0.000514654
0.00051325
0.000509376
0.000503279
0.000496018
0.000488344
0.000479242
0.000464592
0.000442383
0.000415065
0.000385328
0.000355376
0.000327195
0.00030198
0.000275925
0.000225062
0.000152004
6.89016e-05
1.34354e-05
3.30776e-06
7.33046e-06
1.2341e-05
3.40448e-05
4.36688e-05
6.31209e-05
0.000106236
0.00018224
0.000259658
0.000314005
0.000359839
0.000397457
0.00042834
0.000453917
0.000475169
0.000492645
0.000506599
0.000512854
0.000506856
0.000498722
0.000490346
0.000480759
0.000469499
0.000455685
0.000436101
0.000410847
0.00038315
0.000355349
0.000328891
0.000304271
0.000276485
0.000220869
0.000148699
6.69821e-05
1.27169e-05
3.21602e-06
7.19124e-06
1.42448e-05
3.84672e-05
4.50002e-05
5.83174e-05
9.20329e-05
0.000159513
0.00023364
0.000286554
0.000332096
0.000370033
0.000401644
0.00042828
0.000450862
0.000469891
0.000485597
0.000498068
0.000507256
0.00049983
0.000487194
0.000473746
0.000459229
0.000442947
0.00042394
0.000400099
0.000371971
0.000342352
0.000314149
0.000288242
0.000259638
0.000207327
0.000138922
6.23711e-05
1.16005e-05
3.02866e-06
7.0659e-06
1.70971e-05
4.64922e-05
5.05186e-05
5.79139e-05
8.16674e-05
0.000137422
0.000207817
0.000258221
0.000302968
0.000340964
0.000373086
0.000400534
0.000424158
0.000444417
0.000461548
0.000475717
0.000486953
0.000491656
0.000479188
0.000464005
0.00045031
0.000436584
0.000419596
0.000397923
0.000372921
0.00034665
0.000320548
0.000294866
0.000263641
0.00020424
0.000133826
5.78718e-05
1.01191e-05
2.7933e-06
7.01471e-06
1.98865e-05
5.72905e-05
5.92336e-05
6.0458e-05
7.2402e-05
0.000110007
0.000173418
0.000219367
0.000262954
0.000301436
0.00033477
0.000363817
0.000389338
0.000411813
0.000431446
0.000448279
0.000462426
0.000473025
0.000478958
0.000471121
0.000451662
0.000430669
0.000408688
0.000383412
0.000355641
0.000328894
0.000304086
0.000279748
0.000251292
0.000201688
0.000133673
5.91738e-05
1.0431e-05
2.73866e-06
7.05598e-06
2.35005e-05
6.84454e-05
7.38833e-05
7.09605e-05
7.32525e-05
9.3494e-05
0.00014305
0.000185513
0.000226149
0.000263806
0.000296976
0.000325931
0.00035155
0.00037518
0.000397532
0.000417964
0.000435587
0.000449453
0.000458864
0.00046083
0.000453211
0.000441865
0.000426301
0.000404213
0.000375009
0.000342378
0.000312047
0.000286178
0.000259408
0.000211214
0.000139096
6.04227e-05
1.00255e-05
2.58269e-06
7.14775e-06
2.6101e-05
7.71148e-05
8.80432e-05
8.40659e-05
7.98603e-05
8.60517e-05
0.000114022
0.000151215
0.000186952
0.000223114
0.000256173
0.00028516
0.000310754
0.000335438
0.000359874
0.000383091
0.000403995
0.000420862
0.000431978
0.000438483
0.000440626
0.000438639
0.000429678
0.00040892
0.000377826
0.000341805
0.000306301
0.0002749
0.00024791
0.000217146
0.000148175
6.75642e-05
1.14705e-05
2.6491e-06
7.14408e-06
2.64241e-05
8.14425e-05
9.68341e-05
9.54015e-05
9.06709e-05
8.89969e-05
9.97466e-05
0.000130458
0.000158198
0.000191378
0.000224467
0.000254672
0.00028173
0.000307537
0.00033306
0.000357298
0.000379237
0.000397327
0.000409733
0.000417309
0.00041746
0.000415954
0.000414676
0.00040625
0.000392439
0.00036155
0.000324183
0.000288998
0.000257226
0.00021789
0.000149372
6.90919e-05
1.1813e-05
2.52287e-06
6.88455e-06
2.14153e-05
7.2195e-05
9.61855e-05
0.000100033
9.81633e-05
9.44334e-05
9.42652e-05
0.000105227
0.00013194
0.000155121
0.000185013
0.000216314
0.000245727
0.000273807
0.000301654
0.000327823
0.000351004
0.000369709
0.000382272
0.000389308
0.000391051
0.000388135
0.000381417
0.000371664
0.000359156
0.000341045
0.000304572
0.00026775
0.000238485
0.000210933
0.000149197
7.06552e-05
1.20592e-05
2.5054e-06
6.3223e-06
1.38367e-05
5.08578e-05
8.76657e-05
0.000101701
0.00010478
0.000102204
9.78837e-05
9.68903e-05
0.000105393
0.000129042
0.000154037
0.000180673
0.000210509
0.000239753
0.000268739
0.000297314
0.000323719
0.000346088
0.000362236
0.000372051
0.000375412
0.00036525
0.000351666
0.000343981
0.000330796
0.000309187
0.000284435
0.000253354
0.000211732
0.000173253
0.000128567
6.24712e-05
1.06205e-05
2.19965e-06
5.95272e-06
9.90941e-06
3.46021e-05
6.77946e-05
9.08569e-05
0.000107955
0.000115699
0.000114213
0.000108181
0.000103339
0.000105187
0.000117986
0.000139713
0.000160926
0.00018765
0.000216009
0.000245556
0.000275641
0.000304058
0.000328122
0.000344987
0.000353833
0.00035557
0.000350343
0.00033693
0.000314522
0.000291117
0.000259868
0.000223881
0.000184745
0.000142284
9.48957e-05
4.19821e-05
6.33488e-06
2.04973e-06
6.4121e-06
1.18182e-05
4.02015e-05
7.9409e-05
9.7503e-05
0.000106908
0.000116672
0.000125644
0.000131271
0.00013196
0.000130794
0.000134085
0.000140179
0.000147971
0.00016674
0.000191933
0.000219802
0.000248495
0.000277724
0.00030532
0.000328301
0.000343412
0.000344037
0.00033639
0.000335194
0.000333216
0.000312632
0.000282531
0.000243348
0.00019704
0.000146108
9.24755e-05
3.86046e-05
5.3711e-06
1.78619e-06
7.45976e-06
1.64632e-05
5.81295e-05
0.000104069
0.000134975
0.000146411
0.000133048
0.000128149
0.000133669
0.000146565
0.000159979
0.000155026
0.000148747
0.000149225
0.000159661
0.000178448
0.000202011
0.000228018
0.000255371
0.000282657
0.000307705
0.00032722
0.000338933
0.000341423
0.00033331
0.00032667
0.000309813
0.000282231
0.000244738
0.00019803
0.000144406
8.70488e-05
2.98174e-05
2.31009e-06
1.672e-06
7.71923e-06
2.60991e-05
8.82151e-05
0.000119846
0.000151013
0.00017235
0.000164598
0.00014571
0.000139604
0.000148857
0.0001669
0.000167064
0.0001668
0.000172855
0.000185564
0.000203338
0.000224192
0.000246692
0.000269934
0.000292936
0.000314245
0.000313071
0.000308094
0.000304001
0.000303018
0.000307675
0.000319606
0.000333086
0.00030939
0.000263031
0.000199745
0.00012596
5.30642e-05
7.17071e-06
1.77287e-06
7.27322e-06
2.32893e-05
8.15951e-05
0.000113755
0.000124628
0.000135727
0.000145315
0.000149136
0.000148588
0.000152766
0.000166963
0.000171917
0.000174964
0.000182894
0.000195119
0.000210549
0.000228253
0.000247448
0.000267318
0.000286862
0.000305009
0.000320568
0.000332326
0.000330127
0.000316262
0.000301566
0.000289619
0.000282385
0.000277512
0.000249659
0.000196049
0.00012408
4.54527e-05
4.39061e-06
1.51015e-06
6.64434e-06
1.71691e-05
6.41759e-05
0.000120101
0.00014235
0.000137329
0.000132903
0.000131345
0.00013367
0.000144181
0.000166096
0.000187564
0.000192959
0.000201393
0.000212684
0.000226322
0.000241758
0.000258505
0.000276029
0.000293726
0.000310893
0.000326633
0.000336418
0.000337839
0.000337518
0.000334581
0.00032801
0.000318948
0.000308918
0.000292367
0.000253202
0.000194833
0.00010726
1.97214e-05
2.37784e-06
6.15282e-06
2.14259e-05
7.34278e-05
0.000106342
0.000129437
0.000152207
0.000161851
0.000156666
0.000147927
0.000145458
0.000155851
0.000180705
0.000201601
0.000211656
0.000223522
0.000236691
0.000250502
0.000264431
0.000278128
0.000291534
0.000304692
0.000317348
0.000328904
0.000338673
0.000344635
0.000344255
0.000350323
0.000347311
0.000322781
0.00027411
0.000201121
0.000114662
3.99421e-05
5.9909e-06
1.72015e-06
5.94671e-06
1.83478e-05
6.57914e-05
0.000111703
0.000131904
0.000163461
0.000183742
0.000178993
0.000161867
0.000145437
0.000137437
0.000144424
0.00016942
0.000203867
0.000216178
0.000226235
0.000236565
0.000246987
0.000256372
0.000263694
0.000268868
0.000272184
0.000273858
0.00027379
0.000271623
0.000265596
0.000258991
0.000253713
0.000242762
0.000224516
0.000194037
0.000145739
7.72011e-05
1.47216e-05
1.87287e-06
5.82121e-06
1.78029e-05
6.20221e-05
0.000114244
0.000123663
0.000127409
0.000156082
0.000198944
0.000228231
0.000228128
0.000214209
0.000206489
0.000214717
0.000238044
0.000264493
0.000275623
0.000287938
0.000301071
0.000314243
0.000326812
0.000338535
0.000349207
0.000358389
0.000365302
0.000368915
0.000367371
0.000362266
0.000349061
0.000324667
0.000283075
0.000218375
0.000131586
4.62011e-05
7.21541e-06
1.78449e-06
5.67405e-06
2.28139e-05
7.61656e-05
0.000129218
0.000158428
0.000153557
0.000144446
0.000144097
0.000151689
0.000162359
0.000176733
0.000200822
0.000232012
0.000249078
0.000241954
0.00023241
0.000221349
0.000209319
0.00019663
0.00018422
0.000173442
0.000165964
0.00016314
0.000164891
0.000169335
0.000173459
0.000171329
0.000170119
0.000158895
0.00013744
0.000103585
5.99086e-05
2.10728e-05
3.75593e-06
7.4504e-07
6.32872e-06
2.04198e-05
6.31598e-05
0.00011109
0.00014164
0.000137848
0.000138391
0.000152243
0.0001746
0.000202632
0.000236757
0.000273699
0.000308539
0.000330984
0.000323642
0.000282178
0.000236752
0.000211788
0.000208079
0.00022066
0.000242966
0.000270008
0.000286465
0.00027292
0.00025833
0.000223203
0.000181367
0.000151842
0.000132129
0.000117371
9.07537e-05
3.64223e-05
9.12622e-06
1.45143e-06
2.2191e-07
6.8964e-06
4.89432e-05
0.00012595
0.000148261
0.000169304
0.000185528
0.000187338
0.000185108
0.000195937
0.000221964
0.000256089
0.000289791
0.000310097
0.000302527
0.000266731
0.000222492
0.000188708
0.000168798
0.000160556
0.000158253
0.000145028
0.000121499
0.000103644
9.12398e-05
8.16817e-05
7.2314e-05
6.17961e-05
4.96302e-05
3.61204e-05
2.27314e-05
1.17489e-05
4.80317e-06
2.00702e-06
6.50552e-07
2.11846e-07
7.64631e-06
8.0762e-05
7.86264e-05
9.1273e-05
0.000112515
0.000131886
0.000149078
0.000165156
0.000180169
0.0001947
0.000211494
0.000232476
0.000249403
0.000227691
0.000204737
0.00018209
0.000160317
0.000139628
0.000120345
0.000102971
8.79366e-05
7.53267e-05
6.50463e-05
5.66597e-05
4.94554e-05
4.28388e-05
3.65754e-05
3.06629e-05
2.52349e-05
2.05414e-05
1.66626e-05
1.33236e-05
9.308e-06
3.52697e-06
6.39323e-07
7.67919e-06
4.10304e-05
4.31852e-05
5.23327e-05
5.99042e-05
6.68433e-05
7.23436e-05
7.62761e-05
7.86339e-05
7.96955e-05
7.9724e-05
7.93372e-05
7.87475e-05
7.80446e-05
7.73485e-05
7.66098e-05
7.58894e-05
7.51873e-05
7.44676e-05
7.37099e-05
7.28986e-05
7.2056e-05
7.12204e-05
7.04408e-05
6.97969e-05
6.94179e-05
6.94762e-05
7.01528e-05
7.14329e-05
7.28271e-05
7.35278e-05
7.38304e-05
7.16275e-05
4.45106e-05
5.89623e-06
2.13905e-07
2.19135e-06
4.8193e-06
9.14535e-06
1.2694e-05
1.61575e-05
2.00338e-05
2.38949e-05
2.47056e-05
2.54962e-05
2.62972e-05
2.70709e-05
2.77947e-05
2.84778e-05
2.9141e-05
2.98608e-05
3.06248e-05
3.13762e-05
3.20562e-05
3.26214e-05
3.3051e-05
3.3349e-05
3.35394e-05
3.36473e-05
3.37e-05
3.37184e-05
3.37144e-05
3.36864e-05
3.36077e-05
3.34027e-05
3.29182e-05
3.18401e-05
2.96005e-05
7.97336e-06
2.3252e-07
3.0087e-07
1.36505e-06
4.17009e-06
7.9543e-06
1.28268e-05
1.87696e-05
2.602e-05
3.47059e-05
4.453e-05
5.48888e-05
6.47724e-05
7.28677e-05
7.60484e-05
7.62961e-05
7.58118e-05
7.49234e-05
7.36506e-05
7.14291e-05
6.97748e-05
6.96133e-05
7.11991e-05
7.46189e-05
7.98897e-05
8.69455e-05
9.53564e-05
0.000104077
0.000111684
0.000116666
0.000117716
0.000113927
0.000104669
8.84827e-05
4.56704e-05
1.29232e-05
9.20874e-07
3.10803e-07
3.5985e-07
3.07985e-07
1.76199e-06
4.2985e-06
5.55321e-06
5.37572e-06
7.0247e-06
1.48202e-05
3.07297e-05
5.28069e-05
7.74363e-05
0.000100453
0.000118681
0.000130917
0.000133023
0.000131723
0.000128566
0.000125831
0.000125031
0.000126928
0.000131191
0.000137941
0.00014795
0.000158156
0.000154455
0.000147973
0.000137667
0.000122239
0.000101584
7.80784e-05
4.04449e-05
2.03002e-05
7.09178e-06
1.82079e-06
7.69379e-07
1.26021e-06
4.83882e-06
1.47135e-05
2.51595e-05
3.15034e-05
3.39331e-05
3.5747e-05
3.91801e-05
4.69974e-05
5.62171e-05
6.58448e-05
7.80434e-05
9.20952e-05
0.000106778
0.000120835
0.000133278
0.00014257
0.000139993
0.000136324
0.000132435
0.000128837
0.000128535
0.000137666
0.000158409
0.000155737
0.000150156
0.000141617
0.000129002
0.000111057
8.75439e-05
4.31039e-05
2.09849e-05
7.66398e-06
2.33806e-06
1.24015e-06
2.69708e-06
1.76773e-05
3.91193e-05
4.29026e-05
4.34813e-05
4.63739e-05
5.71504e-05
8.33604e-05
9.97489e-05
0.000113242
0.000120254
0.000123978
0.000127953
0.00013299
0.00013861
0.000144101
0.000148886
0.000152687
0.000155553
0.000157571
0.000158877
0.000159522
0.000159371
0.000158059
0.000154963
0.000149135
0.000139296
0.000124168
0.000103309
7.3237e-05
3.9674e-05
2.18893e-05
7.81965e-06
2.94502e-06
1.57538e-06
3.92418e-06
2.1274e-05
4.76268e-05
6.15637e-05
5.27832e-05
4.64093e-05
4.54005e-05
4.81957e-05
5.77015e-05
7.76455e-05
0.000103052
0.000117897
0.000129387
0.000135677
0.000138941
0.000140987
0.000142736
0.000144587
0.000146664
0.000148869
0.000151031
0.000152888
0.000154033
0.00015383
0.000151338
0.000145302
0.000134338
0.000117418
9.50856e-05
6.03843e-05
3.70434e-05
2.24511e-05
8.27871e-06
3.34082e-06
1.48061e-06
4.83658e-06
2.84752e-05
6.0536e-05
8.74314e-05
0.000101306
8.85555e-05
7.2986e-05
6.47895e-05
6.42345e-05
7.14417e-05
8.70182e-05
0.000105301
0.000114566
0.00012373
0.000130946
0.00013621
0.000140148
0.000143461
0.000146634
0.000149778
0.000152805
0.000155368
0.000156763
0.000155882
0.000151264
0.000141302
0.000124726
0.000103327
7.34289e-05
4.9486e-05
3.47137e-05
2.2388e-05
8.13106e-06
3.78414e-06
1.34479e-06
2.72914e-06
1.4271e-05
3.89621e-05
6.23451e-05
7.68594e-05
8.56056e-05
8.82174e-05
8.55515e-05
8.17971e-05
8.07424e-05
8.51864e-05
9.70096e-05
0.000111102
0.000115595
0.000121489
0.000128619
0.000135722
0.000142144
0.00014822
0.000154085
0.000159719
0.000164756
0.000168289
0.000168782
0.00016413
0.000151904
0.000130817
0.00010596
7.23629e-05
4.96467e-05
3.62722e-05
2.42996e-05
9.14326e-06
4.08891e-06
1.24997e-06
2.84429e-06
1.73031e-05
4.79014e-05
7.98233e-05
0.000104525
0.000121078
0.000131153
0.000136303
0.000132673
0.000124405
0.000119942
0.000121659
0.000129886
0.00013368
0.000133983
0.000135888
0.000139359
0.000145319
0.000153389
0.000161648
0.000169554
0.00017674
0.000182085
0.000183505
0.000178
0.000162111
0.000136513
0.000104906
7.07565e-05
5.03853e-05
3.77191e-05
2.53419e-05
9.20803e-06
4.45617e-06
1.39171e-06
3.069e-06
1.82621e-05
4.89286e-05
8.2124e-05
0.000111587
0.000134696
0.000151167
0.000162015
0.000168645
0.000172325
0.000174113
0.000174849
0.000175095
0.0001752
0.000175321
0.000175302
0.000175332
0.000177062
0.000181476
0.000187424
0.000193885
0.000200124
0.00020483
0.000205823
0.000199998
0.000183691
0.00015587
0.000115138
7.78972e-05
5.54997e-05
4.15059e-05
2.80117e-05
1.03998e-05
4.74099e-06
1.34982e-06
2.67271e-06
1.63786e-05
4.48538e-05
7.66363e-05
0.00010681
0.000132914
0.000153901
0.000169797
0.000181336
0.000189539
0.000195369
0.000199601
0.000202837
0.000205531
0.000208019
0.000210539
0.000213221
0.000216529
0.000220669
0.000225314
0.000230031
0.000234028
0.000235921
0.000233604
0.000224309
0.000205078
0.000167559
0.000118982
8.35037e-05
6.12e-05
4.5547e-05
3.03162e-05
1.084e-05
5.04172e-06
1.42702e-06
3.30854e-06
2.06875e-05
5.219e-05
8.50542e-05
0.000115714
0.000142757
0.000165555
0.000184012
0.000198457
0.000209518
0.000217965
0.00022454
0.000229858
0.000234398
0.000238523
0.000242492
0.000246458
0.000250682
0.00025525
0.000259846
0.000263964
0.00026676
0.000266934
0.000262671
0.000251743
0.000231909
0.000177709
0.000128292
9.289e-05
6.90057e-05
5.0915e-05
3.35584e-05
1.1828e-05
5.2992e-06
1.41867e-06
3.40999e-06
2.0997e-05
5.20401e-05
8.48902e-05
0.000116147
0.000144315
0.000168787
0.000189506
0.000206744
0.000220954
0.000232665
0.000242412
0.000250683
0.000257886
0.000264343
0.000270289
0.00027587
0.000281209
0.000286297
0.00029084
0.000294328
0.000295953
0.000294555
0.000288632
0.00027644
0.000240465
0.000184587
0.000137585
0.000102694
7.70878e-05
5.64377e-05
3.68344e-05
1.25741e-05
5.52731e-06
1.56687e-06
4.52239e-06
2.66368e-05
6.03247e-05
9.42172e-05
0.000126438
0.00015604
0.000182366
0.000205109
0.000224335
0.000240377
0.00025374
0.000264973
0.000274592
0.000283025
0.000290589
0.000297489
0.000303814
0.000309575
0.000314657
0.000318736
0.000321286
0.000321538
0.000318463
0.000310803
0.000297187
0.000249278
0.000193485
0.000147681
0.000112409
8.48442e-05
6.19283e-05
4.0281e-05
1.33673e-05
5.73106e-06
1.65241e-06
4.85194e-06
2.80042e-05
6.23456e-05
9.59062e-05
0.000127681
0.000157481
0.000185037
0.000210054
0.000232316
0.000251771
0.000268543
0.000282902
0.000295197
0.000305789
0.000314996
0.00032305
0.000330062
0.000336027
0.000340799
0.000344045
0.000345246
0.000343668
0.000338366
0.000328241
0.000310422
0.000255815
0.000201566
0.000157185
0.000121562
9.22586e-05
6.71988e-05
4.35658e-05
1.41279e-05
5.91398e-06
1.84779e-06
5.64849e-06
3.18742e-05
6.97761e-05
0.000100304
0.000130805
0.000163867
0.000198108
0.000223706
0.000246921
0.000267713
0.000286131
0.000302285
0.000316345
0.000328513
0.000338983
0.000347905
0.000355344
0.000361261
0.000365479
0.000367657
0.000367282
0.000363662
0.000355945
0.000343176
0.000312541
0.000259027
0.000207782
0.000165011
0.00012964
9.95373e-05
7.28503e-05
4.70944e-05
1.48789e-05
5.99754e-06
2.00887e-06
5.69987e-06
3.21036e-05
7.24053e-05
0.000104115
0.000130811
0.000158622
0.000189554
0.00022342
0.00025777
0.000285603
0.000305876
0.000323847
0.000339546
0.000353068
0.000364514
0.000373962
0.000381438
0.000386882
0.000390122
0.000390844
0.000388585
0.000382734
0.000372559
0.000357265
0.000313249
0.000260796
0.000212336
0.000170713
0.000135283
0.000104722
7.73524e-05
5.029e-05
1.5151e-05
6.07095e-06
2.23613e-06
6.24909e-06
3.42276e-05
7.84308e-05
0.000120059
0.000146227
0.000168785
0.000192348
0.000218543
0.000247675
0.000279068
0.000311199
0.000341429
0.000364945
0.000379623
0.000391983
0.000401943
0.000409423
0.000414306
0.000416403
0.000415434
0.000411009
0.000402634
0.000389741
0.000359834
0.000313528
0.000264808
0.00021945
0.000178707
0.000142384
0.000110158
8.12736e-05
5.30036e-05
1.56039e-05
6.20353e-06
2.41573e-06
6.63673e-06
3.5348e-05
8.21633e-05
0.000128983
0.000171246
0.000196516
0.000217036
0.000237501
0.000259404
0.000283057
0.000308243
0.000334298
0.000360032
0.000384003
0.000404963
0.000421971
0.000434419
0.000442065
0.000444779
0.000441947
0.000432139
0.000413689
0.00038584
0.000349711
0.000308459
0.000265906
0.000224896
0.000186698
0.000151384
0.000118556
8.77152e-05
5.6936e-05
1.66117e-05
6.19827e-06
2.58443e-06
7.21754e-06
3.71018e-05
8.53686e-05
0.000134396
0.000180298
0.000221998
0.000253809
0.000274534
0.000293468
0.000312462
0.000331826
0.000351547
0.000371188
0.000390013
0.000407146
0.000421629
0.000432549
0.000439151
0.000440759
0.00043652
0.000425298
0.000406057
0.000378651
0.000344384
0.000305734
0.000265433
0.000225748
0.000188278
0.000153861
0.000122289
9.22082e-05
6.0614e-05
1.65885e-05
6.24104e-06
2.61029e-06
7.64967e-06
3.92507e-05
8.94732e-05
0.000140154
0.000187642
0.000231573
0.000271964
0.000308795
0.000342092
0.0003709
0.000387796
0.000403964
0.000420299
0.000435644
0.000449082
0.000459799
0.000466849
0.000469198
0.000465799
0.000455777
0.000438738
0.000414943
0.000385171
0.000350587
0.000312713
0.000273127
0.000233141
0.000193999
0.000157166
0.000123777
9.33658e-05
6.22313e-05
1.66198e-05
6.48327e-06
2.57658e-06
8.21901e-06
4.25918e-05
9.57392e-05
0.000148499
0.000197007
0.000241242
0.000281842
0.000319314
0.000353893
0.000385617
0.00041443
0.000440234
0.000462901
0.000482256
0.000498076
0.0005101
0.000518041
0.000517106
0.000508009
0.000491652
0.000467637
0.000437029
0.000401741
0.000363751
0.000324727
0.0002858
0.000247328
0.000209041
0.00017091
0.000134014
9.96869e-05
6.58417e-05
1.84779e-05
6.54688e-06
2.48712e-06
8.41158e-06
4.48543e-05
0.00010132
0.000157679
0.00020909
0.000255109
0.000296421
0.000333867
0.000368101
0.00039951
0.000428252
0.000454311
0.00047754
0.000497696
0.000514457
0.000527443
0.000536245
0.000540437
0.0005396
0.00052708
0.000496284
0.000459193
0.000418784
0.000376261
0.000333131
0.000291015
0.000251122
0.000213731
0.000178025
0.000142786
0.000107476
7.05296e-05
1.86669e-05
6.42499e-06
2.45499e-06
8.66715e-06
4.69101e-05
0.000106133
0.000165908
0.000220799
0.0002698
0.000313264
0.000351957
0.000386651
0.000417949
0.000446243
0.000471719
0.000494386
0.000514097
0.000530568
0.000543408
0.000552154
0.000556318
0.000555427
0.000549054
0.000530019
0.000490243
0.000444452
0.000397658
0.000350826
0.000304342
0.000259269
0.000217102
0.00017872
0.000143579
0.000109769
7.32655e-05
1.77492e-05
6.47595e-06
2.49576e-06
9.09498e-06
4.91985e-05
0.000111026
0.000174127
0.000232685
0.000285212
0.000331678
0.000372621
0.000408751
0.000440741
0.00046912
0.000494234
0.000516245
0.000535138
0.000550735
0.000562707
0.000570609
0.000573924
0.000572129
0.000564759
0.00054547
0.000506559
0.000461865
0.000416535
0.000371205
0.000325363
0.000278957
0.000233017
0.000189467
0.000149928
0.000114034
7.70247e-05
1.9133e-05
6.70726e-06
2.61902e-06
9.81281e-06
5.20289e-05
0.000116116
0.000181796
0.000243383
0.000299164
0.000348781
0.000392465
0.000430717
0.000464119
0.000493219
0.000518454
0.000540113
0.000558316
0.000573012
0.000583984
0.000590862
0.000593153
0.000590297
0.000578603
0.000548561
0.000509507
0.000466913
0.000423123
0.000379051
0.000335035
0.000290929
0.000246423
0.000202026
0.000159665
0.000120958
8.20951e-05
2.06839e-05
6.81112e-06
2.7915e-06
1.07471e-05
5.53498e-05
0.000121933
0.000190195
0.000254592
0.000313316
0.000365812
0.000412105
0.000452517
0.000487504
0.000517556
0.000543116
0.000564534
0.000582031
0.000595682
0.000605406
0.000610967
0.000611982
0.00060221
0.00058179
0.000552865
0.000517356
0.000476798
0.000432626
0.000386479
0.00034016
0.000295049
0.00025148
0.00020892
0.000167066
0.000126189
8.2857e-05
1.99709e-05
6.68406e-06
3.00014e-06
1.16744e-05
5.81204e-05
0.000126708
0.000197103
0.000263983
0.000325494
0.000380883
0.000429938
0.00047277
0.000509685
0.000541068
0.000567295
0.000584822
0.000597018
0.000605097
0.000609584
0.000610114
0.000605684
0.000595112
0.000577605
0.000553123
0.000522257
0.000485879
0.00044486
0.000400173
0.000353209
0.000305837
0.000259828
0.000216054
0.000174088
0.000131912
8.29859e-05
1.92703e-05
6.58086e-06
3.24161e-06
1.25454e-05
6.02461e-05
0.000130144
0.000201688
0.000269945
0.000333239
0.000390738
0.00044199
0.000483894
0.000515609
0.000541318
0.000562405
0.000579212
0.000591839
0.000600325
0.000604578
0.000604249
0.000598725
0.000587333
0.00056971
0.000546091
0.000517204
0.000483918
0.000446942
0.00040669
0.000363529
0.000318239
0.000272278
0.000227395
0.000184427
0.000141128
8.7587e-05
2.04083e-05
6.66341e-06
3.44333e-06
1.31562e-05
6.16055e-05
0.000132622
0.000204902
0.000273763
0.000337892
0.000396601
0.00044937
0.000487641
0.000518175
0.000544802
0.000567505
0.000585636
0.000598871
0.000607234
0.000610833
0.000609581
0.000603082
0.00059075
0.000572105
0.000547125
0.000516439
0.000481252
0.000443003
0.000402906
0.000361628
0.000319431
0.000276746
0.000234524
0.000193322
0.000150022
9.10101e-05
2.15437e-05
6.86461e-06
3.59657e-06
1.38342e-05
6.36784e-05
0.000136428
0.000209773
0.000279073
0.000343443
0.000402592
0.000456234
0.000503079
0.00053322
0.000557933
0.00058005
0.000598962
0.000613511
0.000623071
0.000627526
0.000626878
0.000620901
0.00060907
0.000590732
0.000565436
0.000533269
0.000495072
0.000452415
0.000407289
0.000361615
0.000316806
0.000273686
0.000232696
0.00019344
0.000151638
9.14316e-05
2.16595e-05
7.10461e-06
3.67445e-06
1.42006e-05
6.53971e-05
0.000140527
0.00021596
0.000286519
0.000351443
0.000410789
0.00046462
0.000512863
0.000550365
0.000573081
0.000593125
0.000612165
0.000628291
0.000639716
0.000645672
0.000646038
0.000640808
0.000629813
0.000612737
0.000589236
0.000559054
0.000522209
0.000479245
0.00043143
0.000380767
0.000329676
0.000280409
0.000234471
0.000191938
0.000149262
9.23915e-05
2.17713e-05
7.20934e-06
3.74201e-06
1.45971e-05
6.74853e-05
0.00014562
0.00022418
0.000297121
0.000363471
0.000423438
0.00047737
0.000525486
0.000566028
0.000585951
0.000602167
0.000618736
0.000634115
0.000645919
0.000652662
0.000653809
0.000649321
0.000639262
0.000623631
0.000602352
0.000575289
0.000542283
0.000503271
0.000458508
0.000408864
0.000356033
0.000302422
0.000250531
0.000201813
0.00015432
9.63185e-05
2.27163e-05
7.0722e-06
3.82352e-06
1.50582e-05
6.98561e-05
0.000151101
0.000233124
0.000309121
0.000377744
0.000439119
0.00049371
0.000541919
0.000583993
0.000601794
0.000613071
0.000625024
0.000637396
0.000647717
0.000653774
0.000654361
0.000649135
0.000638221
0.000621915
0.000600557
0.000574452
0.000543769
0.00050847
0.00046838
0.000423506
0.000374479
0.000322844
0.00027079
0.000219802
0.000167282
9.95022e-05
2.33404e-05
6.88337e-06
3.95241e-06
1.59303e-05
7.3587e-05
0.000158325
0.000243815
0.000322854
0.000393849
0.00045683
0.000512288
0.000560745
0.000602587
0.000624535
0.000633124
0.000640339
0.00064887
0.000656876
0.000661623
0.000661186
0.000654726
0.000642131
0.000623637
0.000599698
0.000570975
0.000538269
0.000502311
0.000463518
0.000421928
0.000377521
0.000330764
0.000282763
0.000233899
0.000179092
9.98284e-05
2.29814e-05
6.8212e-06
4.10888e-06
1.70571e-05
7.8102e-05
0.000166708
0.000255952
0.00033828
0.000411855
0.00047659
0.000532971
0.000581607
0.000623042
0.00064587
0.000652831
0.000657601
0.00066398
0.000670619
0.000674743
0.000674124
0.000667628
0.000654902
0.000635932
0.000610856
0.000580037
0.000544222
0.000504569
0.000462437
0.000419043
0.000375227
0.000331462
0.000287658
0.000241444
0.000183164
9.93246e-05
2.24852e-05
6.8201e-06
4.29757e-06
1.83082e-05
8.24561e-05
0.000174436
0.000267092
0.000352625
0.000428935
0.000495739
0.000553413
0.000602537
0.000643693
0.0006586
0.000662491
0.000666392
0.000672461
0.000678974
0.000683251
0.000683148
0.000677551
0.000666103
0.00064871
0.00062529
0.00059576
0.00056024
0.000519338
0.000474358
0.00042721
0.000380022
0.000334551
0.000291208
0.000246488
0.000187042
0.000100406
2.24664e-05
6.80921e-06
4.4842e-06
1.94954e-05
8.61417e-05
0.000180632
0.000275845
0.000363951
0.000442702
0.000511636
0.000570967
0.000621155
0.000661845
0.00067052
0.000671308
0.000673332
0.000677886
0.000683235
0.000686926
0.000686884
0.000681887
0.000671503
0.000655679
0.000634371
0.000607387
0.000574472
0.000535582
0.000491267
0.000442982
0.000393071
0.00034423
0.000298177
0.000252445
0.000192859
0.000103659
2.31501e-05
6.85056e-06
4.64736e-06
2.06333e-05
8.95419e-05
0.000185965
0.000282918
0.000372756
0.000453272
0.000523952
0.00058491
0.000636491
0.000679101
0.000689073
0.0006873
0.000686242
0.000688058
0.000691129
0.000693031
0.000691716
0.000685914
0.000675129
0.000659347
0.000638691
0.000613116
0.000582312
0.000545876
0.000503708
0.000456515
0.000406189
0.000355657
0.000307546
0.000260264
0.000198993
0.000107494
2.41959e-05
6.94787e-06
4.77913e-06
2.14456e-05
9.2025e-05
0.000190018
0.000288437
0.000379697
0.00046163
0.000533724
0.000596056
0.000648915
0.000692646
0.000708156
0.000706063
0.000702508
0.000701746
0.000702754
0.000703056
0.000700419
0.000693431
0.000681515
0.00066467
0.000643159
0.00061719
0.000586694
0.000551316
0.00051071
0.0004651
0.000415889
0.00036577
0.000317353
0.000268704
0.000203573
0.000110133
2.50162e-05
7.00468e-06
4.91256e-06
2.21835e-05
9.4253e-05
0.000193635
0.00029333
0.000385795
0.000468918
0.000542213
0.00060575
0.000659781
0.000704592
0.00072489
0.000723219
0.0007176
0.000714063
0.000712636
0.000711241
0.000707609
0.000700102
0.000687875
0.000670698
0.000648718
0.000622183
0.000591226
0.000555782
0.00051573
0.00047131
0.000423669
0.000375009
0.000327208
0.00027707
0.000206539
0.000111238
2.53192e-05
6.96643e-06
5.0414e-06
2.30364e-05
9.68184e-05
0.00019741
0.000297924
0.000391063
0.000474877
0.000548973
0.000613463
0.000668599
0.00071463
0.000745694
0.000745679
0.000737187
0.000729262
0.000723593
0.000718811
0.000712815
0.000703882
0.000690999
0.000673739
0.000652027
0.000625897
0.000595342
0.000560312
0.000520859
0.000477444
0.000431282
0.00038426
0.000337372
0.000285765
0.000209414
0.000111962
2.53467e-05
6.85576e-06
5.13277e-06
2.39727e-05
9.97439e-05
0.0002015
0.000302526
0.000395876
0.000479829
0.000554146
0.000619051
0.000674868
0.00072189
0.000760318
0.000774585
0.000766593
0.000754194
0.000743318
0.000733923
0.000724076
0.000711965
0.000696544
0.000677453
0.000654692
0.000628282
0.000598092
0.00056389
0.000525583
0.000483576
0.000439056
0.000393702
0.000347814
0.000294964
0.000212949
0.000113021
2.5356e-05
6.71524e-06
5.19026e-06
2.48246e-05
0.000102599
0.000205622
0.000307234
0.000400773
0.0004847
0.000558922
0.000623788
0.000679739
0.000727169
0.00076636
0.000797008
0.00079378
0.00078151
0.000769394
0.000758222
0.000746086
0.000731134
0.000712455
0.000690035
0.00066427
0.000635494
0.00060379
0.000569001
0.00053097
0.000489948
0.00044695
0.000403447
0.000359098
0.000305437
0.000216926
0.000114303
2.53568e-05
6.55856e-06
5.25132e-06
2.53515e-05
0.000104503
0.000208716
0.000311118
0.000405092
0.000489178
0.000563368
0.00062811
0.000683946
0.000731368
0.000770752
0.000802331
0.000805176
0.000797247
0.000788599
0.000780068
0.000769418
0.00075462
0.000734843
0.000710278
0.000681679
0.000649871
0.000615416
0.000578559
0.000539465
0.000498595
0.000456941
0.000415409
0.000371873
0.000314182
0.000221441
0.000116308
2.56444e-05
6.42592e-06
5.32902e-06
2.58112e-05
0.000106265
0.000211957
0.000315483
0.000410111
0.000494436
0.000568552
0.000633013
0.00068847
0.000735517
0.000774631
0.000802385
0.000805136
0.000801628
0.000797937
0.000793302
0.0007851
0.000771548
0.000752191
0.000727335
0.000697664
0.000664068
0.00062743
0.000588486
0.000547968
0.000506891
0.000466534
0.000427235
0.000384298
0.000319927
0.000225402
0.000118135
2.59815e-05
6.33072e-06
5.38715e-06
2.66324e-05
0.000109197
0.000216832
0.000321733
0.000417127
0.00050167
0.000575561
0.000639476
0.000694189
0.000740413
0.000778735
0.000797549
0.000800066
0.000800313
0.00080085
0.000799617
0.000793765
0.000781563
0.000762784
0.000738102
0.000708417
0.000674462
0.00063689
0.000596571
0.00055482
0.000513373
0.000474028
0.000436887
0.000394961
0.000324691
0.000228793
0.000119702
2.63005e-05
6.25934e-06
5.41644e-06
2.73094e-05
0.000111643
0.000220952
0.000327234
0.000423623
0.000508714
0.000582703
0.000646307
0.00070038
0.00074575
0.000783127
0.000794947
0.000795735
0.000797929
0.000801618
0.000803147
0.000799334
0.000788497
0.000770432
0.000745934
0.000716144
0.000682007
0.000644177
0.000603335
0.000560709
0.000518438
0.00047899
0.000442736
0.000401593
0.000327854
0.000231154
0.000120746
2.65042e-05
6.22507e-06
5.43458e-06
2.80251e-05
0.000114007
0.00022463
0.000332017
0.000429337
0.000515116
0.000589477
0.000653097
0.000706841
0.000751592
0.000788164
0.000796079
0.000795628
0.000798683
0.00080422
0.000807611
0.000805267
0.000795644
0.000778545
0.000754532
0.000724617
0.00068991
0.000651409
0.000610031
0.000566916
0.000523949
0.000483563
0.000446392
0.000404541
0.000329699
0.000232647
0.000121576
2.67323e-05
6.21937e-06
5.45664e-06
2.85672e-05
0.000115717
0.000227264
0.000335539
0.000433767
0.000520389
0.000595406
0.000659395
0.000713164
0.000757597
0.000792818
0.000795895
0.000795603
0.000800251
0.000807741
0.000813152
0.000812566
0.000804249
0.000788155
0.000764894
0.000735235
0.000700145
0.000660774
0.000618448
0.000574776
0.000531743
0.000491426
0.000453825
0.000410202
0.000331657
0.000234254
0.000122873
2.72162e-05
6.18826e-06
5.50597e-06
2.8937e-05
0.00011675
0.000228937
0.000337956
0.000437059
0.000524603
0.000600465
0.000665093
0.000719185
0.000763547
0.000787097
0.000789078
0.000791505
0.000799045
0.000808829
0.000816362
0.000818059
0.000812008
0.000797778
0.000775809
0.000746847
0.000711727
0.000671533
0.000627888
0.00058307
0.000539855
0.000500507
0.000463362
0.000414814
0.000332113
0.000234258
0.000122879
2.72926e-05
6.10324e-06
5.57401e-06
2.91868e-05
0.000117424
0.000230152
0.000339784
0.000439603
0.000527941
0.000604601
0.000669929
0.000724508
0.000767341
0.000774608
0.000776795
0.000783588
0.000794357
0.000805643
0.000814176
0.000817545
0.000814145
0.000803112
0.000784218
0.000757684
0.000724063
0.000684355
0.000640301
0.000594607
0.000550588
0.000510467
0.0004709
0.000414107
0.000330577
0.000232446
0.000121515
2.69397e-05
6.00699e-06
5.63523e-06
2.92419e-05
0.000117565
0.000230825
0.000341094
0.000441541
0.000530494
0.000607749
0.000673611
0.000728573
0.000753333
0.000758524
0.000764738
0.000775489
0.000788137
0.000799406
0.000807115
0.000810126
0.000807791
0.000799505
0.000784593
0.000762529
0.0007332
0.000697154
0.00065588
0.000612059
0.000569075
0.000528543
0.000484375
0.000414808
0.00033002
0.000231491
0.000120906
2.68354e-05
5.9381e-06
5.67654e-06
2.91438e-05
0.000117407
0.000231309
0.000342337
0.000443405
0.000532815
0.000610423
0.000676593
0.000731
0.000742432
0.000747091
0.000756352
0.000769606
0.000783187
0.000793997
0.00080034
0.000801644
0.000797914
0.000789256
0.000775593
0.000756645
0.000732154
0.000702355
0.000668492
0.000632724
0.000596306
0.000554881
0.000492333
0.000416873
0.000330463
0.000231307
0.000120869
2.69047e-05
5.89576e-06
5.70612e-06
2.90205e-05
0.000117359
0.000232193
0.000344269
0.00044615
0.00053607
0.000613927
0.000680161
0.000728527
0.00073764
0.000742577
0.000753067
0.000767455
0.000781532
0.00079209
0.000797525
0.00079738
0.000791846
0.000781312
0.000766123
0.0007466
0.000723284
0.000697282
0.00067035
0.000643719
0.000614201
0.000566736
0.000498252
0.000420353
0.000331752
0.000231099
0.000120173
2.67094e-05
5.90991e-06
5.74359e-06
2.90758e-05
0.000117992
0.000234122
0.00034752
0.000450408
0.000540937
0.000619045
0.000685261
0.000730414
0.000737682
0.000742071
0.00075286
0.000767926
0.000782629
0.00079342
0.000798539
0.000797536
0.000790651
0.000778385
0.00076125
0.000739811
0.000714942
0.000688142
0.000661646
0.00063747
0.000613583
0.000574616
0.000505225
0.000425375
0.000334232
0.000231051
0.000118598
2.61167e-05
6.01906e-06
5.80575e-06
2.9395e-05
0.00011936
0.000237076
0.000352051
0.000456181
0.000547498
0.00062595
0.00069214
0.000735428
0.000741139
0.000744321
0.000754467
0.000769464
0.000784505
0.000795707
0.000801014
0.000799863
0.000792434
0.000779196
0.000760657
0.000737403
0.000710386
0.000681164
0.000651984
0.000625252
0.000601119
0.000571729
0.000511149
0.000430362
0.000337165
0.000231329
0.000116831
2.53891e-05
6.19175e-06
5.90518e-06
2.98504e-05
0.000121018
0.000240388
0.000357045
0.000462587
0.000554886
0.00063384
0.000700081
0.000740443
0.000745064
0.000747542
0.00075718
0.000771957
0.000787035
0.00079843
0.000803955
0.000802918
0.000795453
0.000781947
0.0007628
0.000738521
0.000709925
0.000678382
0.000645944
0.000615129
0.000587619
0.00056026
0.000515732
0.000434609
0.000339974
0.000231965
0.000115548
2.48273e-05
6.35174e-06
6.03651e-06
3.03291e-05
0.000122486
0.000243176
0.000361284
0.000468198
0.000561597
0.000641252
0.000707739
0.000743671
0.000747525
0.00075001
0.000759616
0.000774389
0.000789652
0.000801417
0.000807371
0.000806689
0.000799433
0.000785989
0.000766746
0.000742134
0.000712764
0.000679756
0.000644995
0.000610985
0.000579943
0.000550998
0.000513716
0.00043759
0.000342253
0.000232854
0.000115
2.4529e-05
6.44733e-06
6.19305e-06
3.0839e-05
0.00012369
0.000245081
0.000364061
0.000472016
0.000566458
0.000646957
0.000713933
0.000744437
0.000747773
0.000750933
0.000761029
0.00077605
0.000791592
0.000803828
0.000810422
0.000810424
0.000803786
0.000790848
0.000771983
0.000747565
0.000718116
0.000684584
0.000648621
0.000612621
0.000578999
0.000547701
0.000510297
0.000440279
0.000344621
0.000234467
0.000115589
2.4633e-05
6.47202e-06
6.36293e-06
3.11822e-05
0.000124145
0.000245486
0.000364626
0.000473131
0.000568417
0.000649838
0.000717581
0.000742784
0.000746099
0.000750474
0.000761391
0.00077673
0.000792471
0.000805115
0.000812419
0.000813332
0.000807653
0.000795606
0.000777515
0.000753742
0.000724779
0.000691493
0.000655399
0.00061872
0.000583791
0.0005508
0.000512109
0.000442913
0.000346831
0.000236203
0.00011665
2.49256e-05
6.43706e-06
6.52872e-06
3.12864e-05
0.000123783
0.000244469
0.000363138
0.000471643
0.000567424
0.00064968
0.000718362
0.000739163
0.000743278
0.000749408
0.000761334
0.000776868
0.000792495
0.000805206
0.000812991
0.000814787
0.000810231
0.000799376
0.000782427
0.0007597
0.000731686
0.000699261
0.000663933
0.000627884
0.000593276
0.000559893
0.000519391
0.000446136
0.000349315
0.000238181
0.000118062
2.53432e-05
6.3627e-06
6.67421e-06
3.1127e-05
0.000122756
0.000242517
0.000360324
0.00046831
0.000564074
0.000646807
0.000715506
0.000733885
0.000739835
0.000748288
0.00076148
0.000777149
0.000792308
0.000804546
0.000812248
0.000814478
0.000810802
0.000801102
0.000785412
0.000763934
0.000737125
0.000705893
0.000671844
0.000637307
0.000604504
0.000572607
0.00053094
0.000449991
0.000352037
0.000240087
0.000119297
2.56928e-05
6.27141e-06
6.77349e-06
3.09368e-05
0.000121962
0.000241176
0.00035819
0.000465318
0.000560446
0.000642966
0.000709917
0.000729197
0.000737594
0.000748307
0.00076273
0.000778507
0.000792994
0.000804277
0.000811201
0.000813122
0.000809701
0.000800747
0.00078613
0.000765888
0.000740391
0.000710595
0.000678287
0.000645974
0.000615626
0.000584802
0.000538773
0.000453571
0.000354371
0.000241356
0.000119803
2.57672e-05
6.17852e-06
6.79884e-06
3.09342e-05
0.000122193
0.000241754
0.000358597
0.000465033
0.000559266
0.000641053
0.000710568
0.000730577
0.000738861
0.000750387
0.000765797
0.000781968
0.000795983
0.000806113
0.000811619
0.000812283
0.000808067
0.000798915
0.000784681
0.000765305
0.00074106
0.000712875
0.000682606
0.000652804
0.000625005
0.000594918
0.000543423
0.00045718
0.000356842
0.000242717
0.000120277
2.58089e-05
6.11069e-06
6.76912e-06
3.13128e-05
0.000123775
0.000244414
0.000361776
0.000468044
0.000561578
0.000642426
0.000711059
0.000738845
0.000746022
0.00075591
0.000771172
0.000787884
0.000802099
0.000811645
0.000815855
0.000814836
0.00080893
0.000798392
0.000783276
0.000763626
0.000739754
0.000712594
0.000683965
0.000656279
0.000630637
0.000601601
0.000547782
0.000460606
0.000359106
0.000243776
0.000120413
2.57484e-05
6.05654e-06
6.75212e-06
3.18619e-05
0.00012556
0.000247103
0.000365149
0.000471779
0.000565265
0.000645697
0.000713709
0.000746603
0.000753114
0.000761128
0.000775573
0.000792663
0.000807695
0.000817773
0.000821893
0.000820168
0.00081313
0.000801284
0.000784926
0.000764317
0.000739944
0.00071286
0.000684909
0.000658389
0.000634087
0.000605986
0.000551805
0.000463979
0.00036144
0.000244894
0.000120537
2.56493e-05
5.99763e-06
6.80792e-06
3.22923e-05
0.000126475
0.000248071
0.000366255
0.000473205
0.000567055
0.000647732
0.000715774
0.000748844
0.000755596
0.000763109
0.000777066
0.00079423
0.000809892
0.000820806
0.000825605
0.0008242
0.000817082
0.000804825
0.000787862
0.00076663
0.000741821
0.000714691
0.000687228
0.000661707
0.000638592
0.000611059
0.000555627
0.000467487
0.000364254
0.000246711
0.000121308
2.57512e-05
5.93472e-06
6.90417e-06
3.24581e-05
0.000126442
0.000247359
0.00036492
0.000471588
0.00056549
0.000646423
0.000714768
0.000744318
0.000752532
0.000761948
0.000776985
0.000794658
0.00081073
0.000822172
0.00082757
0.000826686
0.000819882
0.000807677
0.000790521
0.000768953
0.000743848
0.000716699
0.000689728
0.000665305
0.000643589
0.000616639
0.00055882
0.00047057
0.000366877
0.000248509
0.000122101
2.58527e-05
5.86174e-06
6.97335e-06
3.22956e-05
0.000125692
0.000245876
0.000362628
0.000468608
0.000562062
0.000642802
0.000711154
0.000736077
0.000745345
0.000757586
0.00077498
0.000794044
0.000810865
0.000822847
0.000828807
0.00082852
0.000822253
0.000810413
0.000793387
0.000771734
0.000746453
0.000719267
0.000692668
0.000669184
0.00064872
0.000622154
0.000561468
0.000473348
0.000369513
0.000250602
0.000123274
2.60909e-05
5.80652e-06
6.99094e-06
3.24768e-05
0.000126127
0.000246195
0.000362362
0.00046749
0.000560071
0.000640101
0.000708
0.00073267
0.000741777
0.000754811
0.000773218
0.000793009
0.000810255
0.000822567
0.000828934
0.000829171
0.000823484
0.000812172
0.00079552
0.000774032
0.000748767
0.000721661
0.000695543
0.000673232
0.000654402
0.000628283
0.00056319
0.000475229
0.000371435
0.000252299
0.000124422
2.64082e-05
5.75559e-06
6.97276e-06
3.27652e-05
0.000127098
0.000247524
0.000363582
0.000468191
0.000560014
0.000639242
0.000706465
0.000733183
0.000741855
0.000754475
0.000772948
0.000792956
0.000810311
0.000822634
0.000829043
0.000829457
0.000824089
0.000813172
0.000796878
0.000775604
0.000750363
0.00072319
0.000697213
0.000675662
0.000658316
0.000633079
0.000564019
0.000476247
0.000372531
0.000253217
0.000124929
2.65267e-05
5.70575e-06
7.00772e-06
3.31379e-05
0.000128049
0.000248881
0.000365145
0.000469685
0.000561157
0.000639824
0.000706404
0.000729114
0.000738542
0.000752563
0.00077204
0.000792592
0.000810155
0.000822493
0.000828874
0.000829335
0.00082415
0.000813538
0.000797595
0.000776597
0.000751432
0.000724083
0.000697774
0.000676017
0.000658928
0.000634276
0.000564276
0.000476872
0.000373438
0.000254148
0.000125582
2.6769e-05
5.71381e-06
7.16487e-06
3.35815e-05
0.000128716
0.000249657
0.000365984
0.000470488
0.000561724
0.000639886
0.000694229
0.000713385
0.000727559
0.00074623
0.000768398
0.00079018
0.000808242
0.000820779
0.000827263
0.000827844
0.000822865
0.000812578
0.000797056
0.000776484
0.000751609
0.000724273
0.000697645
0.000675342
0.000657784
0.000633194
0.000563837
0.000476752
0.000373615
0.00025448
0.000125877
2.69069e-05
5.7238e-06
7.41008e-06
3.37703e-05
0.000128456
0.0002492
0.000365304
0.000469442
0.000560076
0.000635502
0.000665504
0.000685745
0.000708203
0.000733879
0.00076022
0.00078414
0.00080329
0.000816454
0.000823373
0.000824322
0.000819728
0.000809899
0.000794936
0.000774985
0.000750672
0.000723655
0.000696929
0.000674062
0.00065574
0.000631054
0.00056365
0.000477031
0.000374353
0.000255481
0.000126741
2.72323e-05
5.7558e-06
7.62567e-06
3.3974e-05
0.00012839
0.000249179
0.000365001
0.000468365
0.000557721
0.000618283
0.000643198
0.000664432
0.000690358
0.000719832
0.000749254
0.000775322
0.000795893
0.000810019
0.000817617
0.000819067
0.000814879
0.000805453
0.000790969
0.000771596
0.000747895
0.00072136
0.000694752
0.000671449
0.00065226
0.000627296
0.00056258
0.000476314
0.000374085
0.000255618
0.000127036
2.74074e-05
5.79425e-06
7.70325e-06
3.403e-05
0.000128572
0.00024998
0.000366136
0.000469321
0.000558049
0.000620206
0.000639716
0.000656736
0.000680977
0.000710418
0.000740537
0.000767531
0.00078905
0.000804043
0.000812354
0.00081433
0.000810502
0.000801351
0.000787164
0.000768182
0.000744947
0.000718799
0.00069223
0.000668353
0.000648035
0.000622464
0.000560516
0.000474341
0.000372435
0.000254524
0.00012653
2.73125e-05
5.78594e-06
7.64734e-06
3.37791e-05
0.000128476
0.00025071
0.000367769
0.000471655
0.000560863
0.000635836
0.000653109
0.000662962
0.000681473
0.000707577
0.000736181
0.000762746
0.000784413
0.000799822
0.000808612
0.000810985
0.000807401
0.000798367
0.000784269
0.000765455
0.000742492
0.000716596
0.000690017
0.000665649
0.00064447
0.00061861
0.000558992
0.0004727
0.000370827
0.000253179
0.000125682
2.70942e-05
5.75592e-06
7.53615e-06
3.32523e-05
0.000127747
0.000250278
0.000368034
0.000472833
0.000562988
0.000638674
0.000672987
0.000679264
0.000690424
0.000710989
0.000736333
0.000761217
0.000782181
0.000797485
0.000806502
0.000809211
0.000805904
0.000797013
0.000782951
0.000764164
0.000741278
0.000715416
0.000688532
0.000663193
0.000640485
0.000613877
0.000557429
0.000471006
0.000369171
0.000251802
0.000124778
2.67836e-05
5.71965e-06
7.45995e-06
3.25809e-05
0.000126227
0.000248131
0.000365851
0.000471253
0.000562487
0.000639534
0.000688055
0.00069526
0.000701725
0.000717137
0.000738651
0.000761138
0.000780773
0.000795494
0.000804448
0.000807421
0.000804522
0.00079604
0.000782334
0.000763884
0.000741375
0.000715894
0.00068917
0.000663389
0.000639447
0.000611628
0.000556923
0.000470212
0.00036835
0.000251271
0.000124662
2.67918e-05
5.68541e-06
7.48863e-06
3.2359e-05
0.000125261
0.000245998
0.000362901
0.000468201
0.000559997
0.000638063
0.000690326
0.000701515
0.000708463
0.00072207
0.000741073
0.000761293
0.000779265
0.000792973
0.00080149
0.000804469
0.000801857
0.000793784
0.000780514
0.000762545
0.000740647
0.000715935
0.000689977
0.000664561
0.00064012
0.00061104
0.000556257
0.000468781
0.000366387
0.000249237
0.000123133
2.6251e-05
5.59788e-06
7.63078e-06
3.22107e-05
0.000123825
0.00024275
0.000358121
0.000462605
0.000554322
0.000632863
0.000674541
0.000691925
0.000705673
0.000722469
0.000741746
0.000760843
0.000777369
0.000789858
0.000797593
0.000800265
0.00079776
0.000790092
0.000777415
0.000760204
0.000739321
0.000715992
0.000691716
0.000667866
0.000644141
0.000614303
0.000558079
0.000469991
0.000367184
0.000249903
0.000123759
2.63798e-05
5.5261e-06
7.85085e-06
3.2211e-05
0.000122332
0.000239057
0.000352179
0.000454857
0.00054532
0.000611512
0.000645384
0.000669776
0.000693224
0.000716848
0.000739358
0.000759194
0.000775225
0.000786836
0.000793748
0.000795819
0.000792964
0.000785153
0.000772485
0.000755461
0.000735121
0.000712961
0.000690646
0.000669301
0.000647744
0.000618404
0.000560395
0.000471508
0.000367954
0.000250187
0.000123897
2.64012e-05
5.44936e-06
8.03717e-06
3.16688e-05
0.000119654
0.000234213
0.000345062
0.000445506
0.000533882
0.000580764
0.00061301
0.000643383
0.000674115
0.000703884
0.000730705
0.000753066
0.000770271
0.000782276
0.000789314
0.000791578
0.000789105
0.000781802
0.000769597
0.000752856
0.000732664
0.000710817
0.000689413
0.00066982
0.000650465
0.000622394
0.000562785
0.000473182
0.000368678
0.000250083
0.000123484
2.61646e-05
5.32371e-06
8.09035e-06
3.06847e-05
0.0001163
0.000229016
0.000338222
0.000437121
0.000524105
0.000570127
0.000597633
0.000625466
0.000656436
0.000688063
0.000717195
0.000741584
0.000760207
0.000773028
0.000780532
0.00078326
0.000781545
0.000775414
0.000764682
0.000749442
0.000730537
0.000709761
0.000689536
0.00067169
0.000654667
0.000628106
0.000565754
0.000475816
0.000370586
0.00025104
0.000123659
2.60434e-05
5.19866e-06
7.98361e-06
3.0088e-05
0.000114458
0.000225625
0.000333379
0.000431173
0.000517652
0.00058134
0.000606695
0.00062712
0.000651994
0.000680416
0.000708681
0.000733376
0.000752526
0.000765578
0.00077289
0.000775178
0.000773117
0.000767074
0.000757033
0.000743025
0.000725652
0.00070648
0.000687887
0.000671864
0.000656937
0.000632038
0.000568572
0.000478572
0.000372812
0.000252309
0.000123891
2.58752e-05
5.09806e-06
7.84513e-06
2.96295e-05
0.00011286
0.000222264
0.000328523
0.000425422
0.000511753
0.000587232
0.000622578
0.000640137
0.000659649
0.000683759
0.00070932
0.000732592
0.000751086
0.000763691
0.000770392
0.0007718
0.00076873
0.000761829
0.000751361
0.000737522
0.000720907
0.000702982
0.000686102
0.000672354
0.000660155
0.000637224
0.000571756
0.000481985
0.000376015
0.000254816
0.000125304
2.61306e-05
5.02508e-06
7.82934e-06
2.97048e-05
0.00011244
0.000220201
0.000324621
0.00042004
0.000505519
0.000580946
0.000627292
0.000649327
0.000668905
0.000691401
0.000714989
0.000736547
0.000753745
0.000765324
0.00077096
0.000771061
0.00076646
0.000757995
0.000746204
0.00073153
0.000714709
0.000697279
0.000681756
0.000670581
0.000662221
0.000642527
0.000574235
0.000484867
0.000378773
0.000256897
0.000126372
2.63153e-05
4.95155e-06
7.84006e-06
2.92013e-05
0.000110704
0.000216886
0.000319676
0.000413615
0.000497945
0.000572647
0.000618237
0.000643398
0.000665628
0.000689703
0.000714291
0.00073631
0.000753374
0.000764534
0.000769716
0.000769202
0.000763605
0.000753743
0.000740352
0.000724166
0.000706185
0.000688116
0.000672673
0.000662719
0.000657294
0.000641784
0.000574896
0.000486493
0.000380721
0.000258454
0.000127064
2.6383e-05
4.8949e-06
7.71445e-06
2.89476e-05
0.000109999
0.000214916
0.000315941
0.000407877
0.000490312
0.000563541
0.000614241
0.000639603
0.000661328
0.000685165
0.000710057
0.00073301
0.00075121
0.000763028
0.000768142
0.000767034
0.000760584
0.000749608
0.000734738
0.000716797
0.000696994
0.000677215
0.000660269
0.000649253
0.000644124
0.000632306
0.000573866
0.000486955
0.000382011
0.000259826
0.000127868
2.65648e-05
4.89421e-06
7.36349e-06
2.93352e-05
0.000112142
0.000217144
0.000317074
0.000407086
0.000487304
0.000558645
0.000621869
0.000651118
0.000671889
0.000693683
0.000716649
0.000738329
0.000756195
0.000768373
0.000773832
0.00077245
0.000764809
0.000751841
0.000734562
0.000713989
0.000691332
0.000668511
0.00064842
0.000634436
0.000627645
0.000618694
0.000572286
0.000487261
0.000383419
0.000261521
0.000129122
2.69566e-05
4.91642e-06
6.96853e-06
2.96787e-05
0.000114228
0.000219454
0.000318942
0.000408017
0.000486952
0.00055694
0.000618994
0.00067278
0.000695015
0.000712834
0.000732058
0.000751316
0.000767724
0.000779146
0.00078453
0.000783428
0.000775725
0.00076179
0.000742398
0.000718721
0.000692347
0.000665338
0.000640636
0.000622098
0.000612372
0.000605414
0.000569912
0.000487327
0.000385091
0.000263679
0.000130695
2.73948e-05
4.91295e-06
6.79534e-06
2.96494e-05
0.000114799
0.000219957
0.000319481
0.000408665
0.000487409
0.000556812
0.000618176
0.000672418
0.000716921
0.000734952
0.000750232
0.000766829
0.000782035
0.000792867
0.000797755
0.000796231
0.000788358
0.000774297
0.000754164
0.000728627
0.000699125
0.000667798
0.000637663
0.000612767
0.000597198
0.000589387
0.000564638
0.000484536
0.000384402
0.000264099
0.000131026
2.73609e-05
4.91321e-06
6.95146e-06
3.0522e-05
0.000117266
0.000222458
0.000321489
0.000410273
0.000488786
0.000557955
0.000618908
0.00067267
0.000719897
0.000745136
0.000762837
0.000779086
0.000793582
0.000804072
0.000808922
0.000807515
0.000799766
0.000785715
0.000765436
0.000739247
0.000708029
0.000673607
0.000638825
0.0006075
0.000583928
0.000569531
0.000551618
0.000479959
0.00038222
0.000263858
0.000131562
2.75714e-05
5.00433e-06
7.25791e-06
3.10567e-05
0.000118618
0.000223801
0.000322287
0.00041054
0.00048871
0.000557672
0.000618323
0.000663889
0.000701521
0.000734266
0.000763551
0.000787372
0.000804505
0.000815367
0.000820062
0.000818494
0.000810754
0.000796897
0.000776772
0.000750341
0.000718162
0.000681729
0.000643637
0.000607536
0.000577628
0.000556332
0.00053605
0.000479065
0.000383357
0.000266687
0.000134897
2.89008e-05
5.13643e-06
7.57817e-06
3.1576e-05
0.000119921
0.000225281
0.000322911
0.000409722
0.000481568
0.000533122
0.000581074
0.00062913
0.00067585
0.000719249
0.000757787
0.000789893
0.000813543
0.000827526
0.000832912
0.000831131
0.000823
0.000808837
0.000788556
0.000761922
0.00072911
0.00069135
0.000651287
0.000612848
0.000580389
0.000556267
0.000533797
0.000480207
0.000386148
0.000270753
0.000139071
3.05048e-05
5.16332e-06
7.79669e-06
3.09006e-05
0.000118605
0.000223942
0.000320526
0.000405346
0.000455334
0.000501773
0.000552752
0.000605927
0.000657207
0.000703904
0.000745287
0.000781247
0.000810205
0.000829837
0.000839398
0.000839996
0.00083293
0.000819004
0.000798546
0.000771563
0.000738167
0.000699377
0.000657878
0.000618083
0.000584932
0.000560534
0.000535926
0.000474465
0.000382132
0.000268642
0.000138424
3.03918e-05
5.02779e-06
7.92959e-06
3.10141e-05
0.00011959
0.000226267
0.000323087
0.000403364
0.000448227
0.000491946
0.000541583
0.00059379
0.000643763
0.000688612
0.000727946
0.000762688
0.000792764
0.000816243
0.000830992
0.00083658
0.000833666
0.000822786
0.00080421
0.000778126
0.000744896
0.000705635
0.000662985
0.000621413
0.000586099
0.00055913
0.000530287
0.000460302
0.000369906
0.000259771
0.000133493
2.90585e-05
4.83436e-06
7.95712e-06
3.11684e-05
0.000120429
0.000228157
0.000326078
0.000409418
0.000451145
0.000490536
0.000536787
0.000586823
0.000635257
0.000678412
0.000715333
0.000746912
0.0007742
0.00079698
0.000813685
0.000822959
0.000824623
0.000818679
0.000804736
0.000782378
0.000751672
0.000713672
0.00067094
0.000627745
0.00058904
0.00055664
0.000519416
0.000444918
0.000355695
0.00024908
0.000127871
2.7725e-05
4.64546e-06
7.92342e-06
3.10034e-05
0.000119595
0.000226529
0.000324482
0.000408632
0.000451175
0.000490252
0.000535352
0.000583897
0.00063099
0.000673065
0.000708711
0.000738212
0.000762641
0.000782816
0.000798472
0.00080856
0.000812627
0.000810832
0.000802503
0.000786183
0.00076075
0.00072655
0.000685931
0.000642848
0.000601103
0.000560286
0.000508125
0.000431921
0.000342947
0.000239027
0.000122534
2.6454e-05
4.42735e-06
7.89493e-06
3.02622e-05
0.000116809
0.000221218
0.000317491
0.000395099
0.000441054
0.000484665
0.000532498
0.000581942
0.000628861
0.000670407
0.000705415
0.000733968
0.000756846
0.000775063
0.000789354
0.000799632
0.000805255
0.00080608
0.000802224
0.000792589
0.000774958
0.000747875
0.000712129
0.000670358
0.000623836
0.000567616
0.000498058
0.000419293
0.000329752
0.000227801
0.000115723
2.44938e-05
4.10252e-06
7.95205e-06
2.95238e-05
0.000113752
0.000214945
0.000308211
0.000373028
0.000421865
0.000472194
0.000525281
0.000577494
0.00062529
0.000666691
0.000701207
0.000729248
0.000751527
0.000768816
0.000781907
0.000791602
0.000798537
0.000803046
0.000805041
0.000803299
0.000793775
0.000769143
0.000729226
0.000681426
0.000625676
0.000561735
0.000489246
0.00040776
0.000316676
0.00021555
0.000107421
2.19408e-05
3.757e-06
8.05136e-06
2.8734e-05
0.00011066
0.000208763
0.000298225
0.000350591
0.000400538
0.000456004
0.000513913
0.000569274
0.000618537
0.000660154
0.000694169
0.000721469
0.000743075
0.000759849
0.000772472
0.000781665
0.000788439
0.000794328
0.000800744
0.000806285
0.000801291
0.000770547
0.000731342
0.000683554
0.000627064
0.000561595
0.000486748
0.000402243
0.000308127
0.000205313
9.88849e-05
1.91574e-05
3.51089e-06
8.14266e-06
2.80796e-05
0.000108044
0.000203353
0.000283124
0.000333449
0.000384333
0.000441264
0.000500702
0.000557523
0.000607886
0.000649995
0.000683855
0.000710474
0.000731173
0.000747148
0.000759241
0.000768071
0.000774476
0.000779995
0.000786575
0.000794447
0.000796932
0.000771276
0.000733912
0.000687372
0.000631382
0.000565612
0.000489581
0.000402908
0.000305853
0.000200294
9.34547e-05
1.73679e-05
3.467e-06
8.20409e-06
2.7643e-05
0.000106198
0.000199337
0.000273389
0.000321629
0.000371906
0.000428911
0.000488791
0.000546114
0.000596771
0.000638887
0.000672428
0.00069844
0.000718353
0.000733483
0.000744846
0.00075318
0.000759154
0.000763874
0.000769177
0.000776452
0.000782255
0.000769457
0.00073429
0.000689616
0.000634916
0.000569701
0.00049333
0.000405229
0.000305665
0.000197227
8.93389e-05
1.62004e-05
3.51713e-06
8.24704e-06
2.72517e-05
0.000104279
0.000194975
0.000263704
0.000311255
0.000362005
0.00041952
0.000479876
0.000537685
0.000588674
0.000630687
0.000663614
0.000688697
0.000707635
0.000721917
0.000732594
0.0007404
0.000745968
0.000750172
0.000754403
0.00076033
0.000767213
0.000763918
0.000730621
0.000687875
0.000634929
0.000571101
0.000495573
0.000407461
0.000306736
0.000196269
8.72966e-05
1.58755e-05
3.59773e-06
8.2923e-06
2.67007e-05
0.000101797
0.000189543
0.000252069
0.000299536
0.000351753
0.000410601
0.000471881
0.000530308
0.000581675
0.000623754
0.000656306
0.000680493
0.000698118
0.000710988
0.0007205
0.000727484
0.000732468
0.000736097
0.000739418
0.000744196
0.00075123
0.000753785
0.000724101
0.000683398
0.000632574
0.000570859
0.000497386
0.000410999
0.000311013
0.000199683
8.89275e-05
1.67094e-05
3.68921e-06
8.35345e-06
2.60926e-05
9.92031e-05
0.000183924
0.000239856
0.000286763
0.00034016
0.000400185
0.000462218
0.000520979
0.000572322
0.000614027
0.00064582
0.000668837
0.000684875
0.000695789
0.000703158
0.000708146
0.000711429
0.000713459
0.000714794
0.000716504
0.000720028
0.000724659
0.000714879
0.000676243
0.000627517
0.000567914
0.000496692
0.000412808
0.000315206
0.000204986
9.29261e-05
1.83277e-05
3.96555e-06
8.41373e-06
2.544e-05
9.66796e-05
0.000178767
0.000229292
0.000275214
0.00032884
0.000389084
0.000451045
0.000509452
0.000560197
0.000601053
0.000631719
0.000653302
0.000667585
0.000676392
0.000681276
0.00068348
0.000683982
0.000683435
0.00068215
0.000680728
0.000680472
0.000682587
0.000684505
0.000667937
0.000621403
0.000563501
0.000493539
0.00041078
0.000314502
0.000205586
9.37376e-05
1.87863e-05
4.32115e-06
8.45521e-06
2.49198e-05
9.46334e-05
0.000174627
0.000221515
0.000266748
0.000320126
0.000379859
0.000441079
0.000498664
0.000548557
0.000588492
0.000618093
0.000638409
0.000651188
0.000658232
0.000661038
0.000660768
0.000658433
0.00065496
0.000650813
0.000646562
0.000643441
0.00064323
0.000646362
0.000645365
0.000612109
0.000555861
0.000486832
0.000404537
0.000308818
0.000201119
9.09583e-05
1.8158e-05
4.64865e-06
8.47252e-06
2.44313e-05
9.26372e-05
0.000170505
0.000215249
0.000260686
0.000313994
0.000373083
0.000433377
0.000490024
0.000539075
0.000578251
0.000607101
0.000626584
0.000638366
0.000644183
0.000645487
0.000643408
0.00063892
0.000632906
0.000625901
0.000618632
0.000612325
0.00060902
0.000610788
0.000615244
0.000602057
0.000547826
0.000480099
0.000398437
0.000303021
0.000195937
8.72895e-05
1.72587e-05
4.77234e-06
8.48192e-06
2.40235e-05
9.08153e-05
0.000164471
0.000209279
0.000255486
0.000309223
0.000368225
0.000427959
0.000483746
0.000531866
0.000570198
0.000598334
0.00061718
0.000628297
0.000633309
0.000633566
0.000630114
0.000623906
0.000615843
0.000606421
0.000596182
0.00058615
0.00057828
0.000575258
0.00057807
0.000577621
0.000537575
0.000472366
0.000392569
0.000298548
0.00019271
8.54042e-05
1.7007e-05
4.86404e-06
8.48776e-06
2.34611e-05
8.86317e-05
0.0001577
0.000202771
0.000250236
0.000304934
0.000364254
0.000423637
0.000478596
0.000525714
0.000563135
0.000590581
0.000608944
0.00061968
0.000624279
0.000623964
0.000619665
0.000612254
0.000602587
0.000591144
0.000578396
0.000565081
0.000552544
0.000543033
0.000539177
0.000540227
0.000528084
0.000465934
0.000388513
0.000296053
0.000191084
8.43142e-05
1.68319e-05
4.86746e-06
8.47862e-06
2.28366e-05
8.63421e-05
0.000150835
0.000196258
0.000245207
0.000301178
0.000361121
0.000420363
0.000474579
0.000520687
0.000557173
0.000583958
0.000601958
0.00061254
0.00061705
0.000616567
0.000611892
0.00060379
0.000593032
0.000580056
0.000565276
0.000549261
0.000532923
0.000517735
0.000505806
0.000498797
0.00049236
0.000458713
0.00038536
0.000295771
0.000192331
8.55636e-05
1.73337e-05
4.92901e-06
8.42773e-06
2.17881e-05
8.28741e-05
0.000142768
0.000188883
0.000239697
0.000297254
0.000358044
0.000417327
0.000470985
0.0005163
0.000552101
0.000578513
0.00059649
0.000607314
0.000612202
0.000612091
0.000607651
0.000599526
0.000588384
0.000574607
0.000558565
0.000540738
0.000521819
0.000502856
0.000485316
0.00047075
0.000458872
0.000440721
0.000381424
0.000295187
0.000193419
8.63522e-05
1.73849e-05
4.794e-06
8.33387e-06
2.05145e-05
7.86104e-05
0.00013362
0.000180738
0.000233925
0.000293494
0.00035534
0.00041469
0.000467743
0.000512232
0.000547366
0.000573481
0.000591569
0.000602843
0.0006084
0.000609051
0.000605336
0.000597771
0.000586901
0.00057304
0.000556528
0.00053782
0.000517522
0.000496422
0.000475477
0.000455635
0.00043709
0.000416107
0.000374823
0.000292404
0.000193611
8.74254e-05
1.75469e-05
4.6122e-06
8.20513e-06
1.88598e-05
7.2924e-05
0.000122554
0.000170642
0.000226442
0.000288277
0.00035129
0.000410702
0.000463133
0.000506831
0.000541393
0.000567341
0.00058569
0.000597581
0.000604013
0.000605695
0.000603069
0.000596531
0.000586496
0.000573179
0.000556885
0.000538103
0.000517511
0.000495942
0.000474256
0.000453011
0.00043182
0.00040734
0.000366922
0.000286409
0.000189877
8.55718e-05
1.67411e-05
4.23035e-06
8.06893e-06
1.71081e-05
6.64799e-05
0.000110152
0.000158795
0.000217222
0.000281541
0.000345832
0.000405214
0.000456806
0.000499481
0.000533285
0.000558938
0.000577469
0.000589938
0.000597245
0.000600012
0.000598606
0.000593329
0.000584475
0.00057212
0.000556484
0.000538065
0.000517634
0.000496185
0.000474771
0.000453983
0.000432762
0.000405817
0.000358415
0.000279843
0.000186102
8.44083e-05
1.63514e-05
3.96823e-06
7.94223e-06
1.50319e-05
5.85277e-05
9.609e-05
0.000144287
0.000204575
0.000271063
0.000336573
0.000395963
0.000446806
0.000488593
0.000521802
0.000547323
0.000566168
0.000579307
0.000587548
0.000591453
0.000591357
0.000587529
0.000580169
0.000569207
0.000554736
0.000537238
0.000517624
0.000497121
0.000476984
0.000457878
0.000438241
0.000409877
0.000350172
0.000272404
0.000180395
8.11287e-05
1.52237e-05
3.62569e-06
7.84372e-06
1.29756e-05
5.02574e-05
8.2002e-05
0.000128531
0.000189595
0.000257781
0.000324374
0.000383688
0.000433694
0.000474548
0.000507181
0.000532629
0.000551845
0.000565676
0.000574823
0.000579794
0.000580919
0.000578484
0.000572675
0.000563304
0.000550285
0.000533955
0.000515214
0.000495439
0.000476056
0.000457521
0.000436958
0.000403687
0.000341214
0.000265495
0.000176257
7.96984e-05
1.49048e-05
3.49279e-06
7.76991e-06
1.0728e-05
4.10786e-05
6.79239e-05
0.000111214
0.000171226
0.00024001
0.000307271
0.000366473
0.000415818
0.000456062
0.000488526
0.00051432
0.000534283
0.0005491
0.000559354
0.000565501
0.000567889
0.000566873
0.000562701
0.000555163
0.000544065
0.000529608
0.000512654
0.000494716
0.000477401
0.000460709
0.000439132
0.000395342
0.000332888
0.00025792
0.000170229
7.60987e-05
1.38429e-05
3.25707e-06
7.72947e-06
9.27237e-06
3.35413e-05
5.57484e-05
9.44229e-05
0.000151858
0.000220381
0.000287863
0.000346583
0.000394999
0.000434556
0.000466953
0.000493281
0.000514174
0.000530097
0.000541483
0.000548724
0.000552187
0.000552319
0.000549486
0.000543513
0.000534162
0.000521497
0.000506179
0.000489546
0.000473118
0.000456746
0.000434305
0.000387133
0.000325682
0.000252374
0.000166951
7.51301e-05
1.37838e-05
3.23903e-06
7.7156e-06
8.44439e-06
2.7847e-05
4.51359e-05
7.78041e-05
0.000130739
0.00019763
0.00026461
0.000322449
0.000369795
0.0004088
0.000441487
0.000468828
0.00049115
0.000508629
0.000521501
0.000530072
0.000534719
0.000535985
0.000534383
0.000529844
0.000522223
0.000511635
0.000498719
0.000484772
0.000471226
0.000457087
0.000432754
0.000381885
0.000320304
0.00024717
0.000162537
7.24325e-05
1.30066e-05
3.08193e-06
7.71922e-06
8.04242e-06
2.44275e-05
3.76416e-05
6.40281e-05
0.000111272
0.000175692
0.000241734
0.000298103
0.000343689
0.000381631
0.000414375
0.000442743
0.000466673
0.000485958
0.000500559
0.000510618
0.00051647
0.000518718
0.000518007
0.000514334
0.000507633
0.000498103
0.00048639
0.000473614
0.000460914
0.000447591
0.000425966
0.000376528
0.000316331
0.000244558
0.000161288
7.23408e-05
1.31122e-05
3.11577e-06
7.73126e-06
7.81764e-06
2.22717e-05
3.21877e-05
5.22668e-05
9.21406e-05
0.000152369
0.000216883
0.000271527
0.000314987
0.000351518
0.00038417
0.000413677
0.000439577
0.00046123
0.000478246
0.000490545
0.000498358
0.000502279
0.000503026
0.000500615
0.000495048
0.000486661
0.000476287
0.000465231
0.000454631
0.000443073
0.000420372
0.000371603
0.000311825
0.000240413
0.000157732
6.99972e-05
1.23626e-05
2.97438e-06
7.72987e-06
7.93331e-06
2.18895e-05
2.96529e-05
4.47376e-05
7.74976e-05
0.000133138
0.000196282
0.000248862
0.00028901
0.0003227
0.000354049
0.000383876
0.000411309
0.000435191
0.000454692
0.000469442
0.000479519
0.000485444
0.000487957
0.000486938
0.000482285
0.000474353
0.000464082
0.000452852
0.000441846
0.000430334
0.000411542
0.000365716
0.000307871
0.000237985
0.000156348
6.93286e-05
1.22508e-05
2.99277e-06
7.68753e-06
8.13967e-06
2.23242e-05
2.82786e-05
3.9069e-05
6.43999e-05
0.000113639
0.000175198
0.000226726
0.000263816
0.000293896
0.000322714
0.000351725
0.000379951
0.000405762
0.000427846
0.000445524
0.000458718
0.000467799
0.000473472
0.000475374
0.000473138
0.000466925
0.000457607
0.000446621
0.000435304
0.000423113
0.000403358
0.000357431
0.000300454
0.000231649
0.000151412
6.62454e-05
1.13585e-05
2.84631e-06
7.6006e-06
8.86088e-06
2.51827e-05
2.95852e-05
3.68861e-05
5.54317e-05
9.74322e-05
0.000157714
0.000210363
0.000245717
0.000271599
0.000295753
0.000321392
0.000348254
0.000374245
0.000397457
0.000416906
0.000432413
0.00044424
0.000453262
0.000458836
0.000460184
0.000457116
0.000450293
0.000441104
0.000430853
0.000418488
0.000395838
0.000351823
0.000296739
0.000229549
0.000150419
6.58725e-05
1.13165e-05
2.85226e-06
7.48878e-06
9.87686e-06
2.95497e-05
3.29444e-05
3.6857e-05
4.78623e-05
7.8782e-05
0.000134349
0.000189543
0.000227675
0.000258041
0.0002786
0.000298316
0.000320328
0.000343843
0.000366384
0.000386136
0.000402708
0.000416255
0.000428025
0.000437282
0.000442944
0.000444511
0.000442381
0.000437602
0.000430553
0.000417505
0.000385434
0.000341787
0.000287722
0.000222278
0.000145512
6.3417e-05
1.0694e-05
2.74617e-06
7.38134e-06
1.16723e-05
3.59997e-05
4.13436e-05
4.25142e-05
4.69633e-05
6.53681e-05
0.0001095
0.000160178
0.000199902
0.000234898
0.000266842
0.000295286
0.000308758
0.000323228
0.000340695
0.000358221
0.000373479
0.000385985
0.000397827
0.000408584
0.00041718
0.000423019
0.00042646
0.000428259
0.000426869
0.000412594
0.000380156
0.000338184
0.000285593
0.000221302
0.000145229
6.3479e-05
1.07878e-05
2.7801e-06
7.29445e-06
1.38073e-05
4.35297e-05
5.44633e-05
5.37123e-05
5.25292e-05
5.92494e-05
8.57936e-05
0.000128358
0.00016852
0.000206375
0.000240304
0.000272879
0.000304082
0.000324188
0.00033133
0.000340433
0.000351162
0.000360333
0.000369566
0.000378726
0.000387061
0.000393974
0.000399509
0.000404147
0.000406858
0.000399232
0.000367403
0.000325802
0.000273819
0.000210848
0.000137147
5.88758e-05
9.89896e-06
2.7383e-06
7.22515e-06
1.59101e-05
5.26954e-05
7.42776e-05
7.28669e-05
6.7115e-05
6.53055e-05
7.65155e-05
0.000106603
0.000141191
0.000179961
0.000216153
0.000249525
0.000282009
0.000312595
0.000340217
0.000344121
0.000344637
0.000346763
0.000351174
0.00035643
0.000361632
0.000366528
0.000371397
0.000376893
0.000382843
0.000384238
0.000363816
0.000324579
0.000273675
0.000210678
0.000136234
5.76588e-05
9.64726e-06
2.74949e-06
7.18098e-06
1.69702e-05
5.90617e-05
9.57222e-05
9.61204e-05
8.72226e-05
7.86686e-05
7.79149e-05
9.42495e-05
0.000117408
0.000151864
0.000188811
0.000223378
0.000256278
0.000288024
0.000317404
0.000343333
0.000351332
0.000344653
0.000340735
0.000340019
0.00034032
0.00034064
0.000341188
0.000342691
0.000345684
0.000348776
0.000344152
0.00030952
0.000260254
0.000198971
0.000127037
5.23229e-05
8.71358e-06
2.68256e-06
7.09372e-06
1.84825e-05
6.54012e-05
0.000108324
0.000118623
0.00011034
9.87538e-05
9.10098e-05
9.51537e-05
0.000113796
0.000137125
0.000170424
0.000204353
0.000236601
0.000267934
0.000297852
0.000325125
0.000348718
0.000357086
0.000347843
0.000339099
0.000333241
0.00032869
0.000324732
0.000321916
0.000321194
0.000322835
0.000323699
0.000308852
0.000262195
0.000201238
0.000128115
5.19915e-05
8.49895e-06
2.62272e-06
6.82679e-06
1.93577e-05
6.91629e-05
0.000114515
0.000132643
0.000127366
0.000116439
0.000105933
0.000102656
0.000114769
0.00012734
0.000153091
0.00018376
0.000214544
0.00024475
0.000274405
0.000302325
0.000327334
0.000348434
0.000355292
0.00034391
0.000330617
0.000318747
0.000307876
0.000298072
0.000290346
0.00028594
0.000284788
0.000280399
0.0002482
0.000191369
0.000121152
4.8214e-05
7.91079e-06
2.50849e-06
6.28091e-06
2.02452e-05
7.32142e-05
0.000118647
0.000139844
0.00013633
0.000128183
0.00012069
0.000118063
0.000126703
0.00013637
0.000154085
0.000179213
0.000206069
0.000233303
0.000260575
0.00028697
0.000311481
0.000333085
0.000350714
0.000362595
0.000352475
0.000336903
0.000319892
0.000302249
0.000285225
0.000270587
0.000259676
0.000251793
0.000238528
0.000188273
0.000118662
4.49178e-05
6.86397e-06
2.29569e-06
5.70806e-06
1.98774e-05
7.27214e-05
0.000115454
0.000135719
0.000138374
0.000134552
0.000130851
0.000131306
0.000135133
0.000137163
0.000149517
0.000169673
0.000192708
0.000217146
0.000242643
0.000267985
0.000291804
0.00031304
0.000330749
0.000344281
0.000350597
0.000341552
0.000327334
0.000309553
0.000288654
0.000266539
0.000245546
0.000226989
0.000209841
0.000185212
0.000122722
4.97842e-05
7.90291e-06
2.24163e-06
5.43013e-06
1.99149e-05
7.27361e-05
9.93978e-05
0.000115232
0.000126447
0.000134766
0.000141608
0.000140387
0.000140194
0.000144525
0.000155377
0.000171441
0.000190249
0.000211047
0.000233778
0.00025711
0.000279485
0.000299725
0.000316882
0.000330476
0.000340186
0.000344859
0.000339238
0.00032785
0.000310027
0.000286741
0.000261145
0.000236281
0.000212739
0.000183576
0.000124242
5.31463e-05
8.4368e-06
1.95882e-06
5.46054e-06
1.68989e-05
5.96316e-05
7.99963e-05
9.28087e-05
0.000104187
0.000117263
0.000131226
0.000129357
0.000128839
0.000132375
0.000141552
0.000155249
0.000171303
0.000189872
0.000211403
0.000234252
0.000256714
0.000277051
0.000293984
0.000293992
0.000294354
0.00029867
0.000303536
0.000303885
0.000296095
0.000279737
0.000257391
0.000232347
0.000204814
0.000165734
0.000112637
4.96905e-05
8.25376e-06
1.85385e-06
5.46578e-06
1.49103e-05
5.15808e-05
6.93343e-05
8.09348e-05
8.95323e-05
9.86742e-05
0.000111925
0.000128939
0.000129904
0.000133917
0.00014186
0.000153088
0.000166388
0.000182069
0.000200665
0.000221
0.000241743
0.000261245
0.000277857
0.000279903
0.000278118
0.000280751
0.00028759
0.000294796
0.000297146
0.000290149
0.000272484
0.000244583
0.00020783
0.000162401
0.000107586
4.64494e-05
7.29848e-06
1.65259e-06
5.46742e-06
1.25525e-05
4.78431e-05
7.51014e-05
8.8467e-05
9.58235e-05
0.000100635
0.000106082
0.000115552
0.000129567
0.000125671
0.000124632
0.000128598
0.000137533
0.000150537
0.000168
0.000188464
0.000210294
0.000231634
0.000249286
0.000243354
0.00023922
0.000240614
0.00024654
0.000255407
0.000264765
0.000268554
0.000252343
0.000223548
0.000185747
0.000139674
8.65596e-05
3.2583e-05
4.78895e-06
1.48253e-06
5.42609e-06
1.25691e-05
4.8883e-05
9.28369e-05
0.000117419
0.000123598
0.000124008
0.000122447
0.00012175
0.00012501
0.00013462
0.000148708
0.000145098
0.000144146
0.000147939
0.000156769
0.000170223
0.000187964
0.00020797
0.000228089
0.00024605
0.00025262
0.000243442
0.00023742
0.000235781
0.00023571
0.000234297
0.000229015
0.000216731
0.000190089
0.000147652
9.62539e-05
4.01741e-05
6.03365e-06
1.67745e-06
5.59887e-06
1.29293e-05
4.75006e-05
9.20906e-05
0.000130633
0.000157964
0.00017394
0.000173626
0.000160277
0.000149376
0.000143078
0.000141998
0.000146204
0.000153504
0.000147875
0.000145309
0.000148489
0.000159159
0.00017669
0.000197774
0.000219139
0.000236614
0.000231449
0.000229858
0.000233863
0.000240683
0.000246375
0.00024322
0.000219734
0.000183589
0.000135099
7.78803e-05
2.45054e-05
3.29035e-06
1.43735e-06
5.941e-06
1.92765e-05
6.4353e-05
0.000108625
0.000143581
0.000169609
0.000187577
0.000198448
0.000201151
0.000190686
0.000178121
0.000169139
0.000165794
0.000169115
0.000178509
0.000188851
0.000186961
0.000187791
0.000192176
0.000200328
0.000211577
0.000223912
0.000230637
0.000215172
0.000203174
0.000198474
0.00020044
0.000206064
0.000201502
0.00017844
0.000144824
9.95697e-05
4.37622e-05
6.37258e-06
1.70685e-06
6.31391e-06
2.53591e-05
7.86929e-05
0.00012662
0.000160615
0.000180883
0.000197179
0.000212037
0.000220881
0.000223964
0.000217494
0.000205001
0.000192165
0.000183355
0.000180547
0.000184634
0.000195972
0.000213125
0.000217318
0.00022577
0.000238024
0.000252145
0.000264931
0.000270703
0.000254728
0.000238959
0.00022802
0.000220254
0.000211572
0.000189583
0.000140108
7.79695e-05
2.45435e-05
3.79321e-06
1.53922e-06
6.27447e-06
4.32437e-05
0.00012193
0.00016726
0.000177366
0.00018775
0.000201785
0.000216072
0.000228267
0.000237284
0.000243049
0.000245868
0.000245642
0.000242745
0.000238441
0.000233934
0.00023007
0.000226826
0.000221315
0.000216274
0.000212145
0.000208873
0.00020632
0.000203412
0.000195202
0.000185627
0.000174955
0.000163474
0.000151356
0.000137696
0.000118897
8.66247e-05
3.3448e-05
4.1658e-06
1.4202e-06
6.04756e-06
3.97858e-05
0.00011335
0.000170886
0.000191819
0.000215842
0.000248076
0.000258634
0.000265632
0.000270252
0.000273197
0.000275147
0.000276827
0.00027893
0.000282178
0.000287414
0.000295576
0.000307478
0.000323655
0.00034364
0.000364595
0.000382116
0.000391182
0.000368052
0.000303055
0.000247492
0.000209564
0.000183085
0.000161676
0.000140294
0.000103368
3.88409e-05
7.95925e-06
1.2517e-06
3.65871e-07
5.22832e-06
8.08412e-05
0.000149918
0.000153924
0.000162866
0.000180471
0.000199923
0.000221184
0.000235081
0.000232821
0.000227405
0.000219299
0.000208913
0.000196474
0.00018223
0.00016686
0.000151672
0.000138409
0.000128577
0.000122459
0.000119157
0.000117062
0.000114555
0.000110401
0.000103939
9.48659e-05
8.25933e-05
6.6935e-05
4.88213e-05
3.06047e-05
1.54419e-05
5.4872e-06
1.38526e-06
2.71995e-07
4.17024e-08
4.05009e-06
5.75445e-05
4.68356e-05
6.27392e-05
7.58338e-05
8.28965e-05
8.9089e-05
9.43059e-05
9.84628e-05
9.9073e-05
9.3474e-05
8.71107e-05
8.02739e-05
7.32575e-05
6.64099e-05
6.00322e-05
5.4368e-05
4.95829e-05
4.57392e-05
4.27694e-05
4.0566e-05
3.88655e-05
3.7376e-05
3.57819e-05
3.37809e-05
3.11176e-05
2.76228e-05
2.33162e-05
1.8524e-05
1.38223e-05
9.79108e-06
6.72282e-06
4.07286e-06
1.29621e-06
1.64825e-07
6.34805e-06
3.8449e-05
2.81175e-05
5.32998e-05
7.60429e-05
8.30642e-05
8.78164e-05
9.03854e-05
9.12107e-05
9.15168e-05
9.15576e-05
9.12654e-05
9.06921e-05
8.99292e-05
8.90434e-05
8.8032e-05
8.69106e-05
8.57189e-05
8.44928e-05
8.32348e-05
8.19623e-05
8.07242e-05
7.95582e-05
7.84773e-05
7.74752e-05
7.6555e-05
7.5731e-05
7.49836e-05
7.42003e-05
7.34007e-05
7.35275e-05
7.59525e-05
7.47353e-05
3.36108e-05
2.87763e-06
3.37388e-07
3.76363e-06
5.13303e-06
5.336e-06
5.89758e-06
6.80814e-06
7.97545e-06
9.39501e-06
1.10599e-05
1.27414e-05
1.36598e-05
1.40109e-05
1.5201e-05
1.75713e-05
2.05265e-05
2.37703e-05
2.80006e-05
3.37173e-05
3.80326e-05
4.02077e-05
4.20603e-05
4.36078e-05
4.4762e-05
4.54402e-05
4.55918e-05
4.52641e-05
4.45967e-05
4.3764e-05
4.29021e-05
4.20583e-05
4.10821e-05
3.96677e-05
3.51913e-05
1.29555e-05
3.65597e-07
6.98056e-08
1.39541e-07
3.16754e-07
1.11693e-06
2.57984e-06
4.33492e-06
6.09455e-06
7.98791e-06
1.03161e-05
1.25875e-05
1.41434e-05
1.71545e-05
2.52569e-05
3.37678e-05
3.74129e-05
4.88146e-05
6.96805e-05
9.7352e-05
0.000123426
0.000141608
0.000152097
0.000156714
0.000156896
0.000153807
0.000147618
0.000139407
0.000132756
0.00012585
0.000116307
0.000107211
9.60055e-05
7.86475e-05
4.0617e-05
1.20977e-05
1.12187e-06
4.38428e-07
7.17596e-07
1.73606e-06
6.02097e-06
1.2036e-05
1.72964e-05
2.07091e-05
2.25039e-05
2.351e-05
2.43805e-05
2.53293e-05
2.65044e-05
2.83885e-05
3.11908e-05
3.48004e-05
3.88571e-05
4.30132e-05
4.70902e-05
5.09879e-05
5.46219e-05
5.79177e-05
6.06933e-05
6.26251e-05
6.32311e-05
6.20145e-05
5.88115e-05
5.10509e-05
4.22278e-05
4.04248e-05
4.82017e-05
5.92272e-05
5.75352e-05
3.51418e-05
1.32744e-05
1.56704e-06
9.43966e-07
1.40064e-06
6.38119e-06
1.95083e-05
2.87448e-05
3.77322e-05
4.73658e-05
5.7299e-05
6.23131e-05
6.62372e-05
6.89528e-05
7.07122e-05
7.21697e-05
7.39368e-05
7.63535e-05
7.94012e-05
8.28555e-05
8.64434e-05
8.99223e-05
9.32313e-05
9.63524e-05
9.93169e-05
0.000102244
9.99714e-05
9.76839e-05
9.86256e-05
0.000105246
0.000120738
0.000140455
0.000137169
0.000120893
6.86701e-05
3.30443e-05
1.08974e-05
2.12644e-06
1.07503e-06
2.07978e-06
1.1326e-05
2.66064e-05
3.35485e-05
3.82779e-05
4.25852e-05
4.79031e-05
5.53936e-05
6.56246e-05
7.76695e-05
8.33768e-05
8.91148e-05
9.49296e-05
0.000100812
0.000106714
0.00011261
0.000118499
0.000124527
0.00013084
0.000137452
0.000144344
0.000151382
0.000158199
0.000164
0.000167355
0.000166174
0.000157928
0.000140406
0.000112983
8.28809e-05
4.69103e-05
2.71496e-05
1.07042e-05
2.58512e-06
1.17056e-06
1.72901e-06
7.58797e-06
2.27302e-05
3.90196e-05
4.78361e-05
5.22912e-05
5.54932e-05
5.9468e-05
6.51362e-05
7.00819e-05
7.1749e-05
7.3366e-05
7.52505e-05
7.7777e-05
8.13372e-05
8.62158e-05
9.23752e-05
9.96823e-05
0.00010818
0.000117799
0.000128194
0.000138715
0.000148602
0.000156832
0.00016187
0.000161525
0.000153063
0.000133918
0.000105255
7.30278e-05
4.2229e-05
2.54416e-05
9.95956e-06
2.98146e-06
1.44075e-06
2.8682e-06
1.77657e-05
3.76859e-05
5.66718e-05
7.47984e-05
9.04312e-05
0.000101951
0.000107056
0.000108613
0.000108676
0.00010791
0.000106826
0.000105878
0.000105496
0.000106074
0.000107906
0.000111039
0.000115587
0.000121714
0.000129176
0.000137452
0.00014589
0.000153665
0.000159572
0.000161854
0.000158196
0.000146064
0.00012422
9.82272e-05
6.42108e-05
4.10038e-05
2.56297e-05
9.70546e-06
3.37681e-06
1.28989e-06
1.90607e-06
8.7521e-06
2.62852e-05
4.05312e-05
5.4348e-05
6.76219e-05
7.99421e-05
9.16806e-05
0.000103581
0.000114188
0.000119547
0.000123671
0.00012684
0.000129377
0.000131635
0.000133951
0.000136545
0.000139947
0.000144579
0.000150293
0.000156746
0.000163398
0.000169351
0.000173205
0.000172992
0.000166276
0.000150609
0.000126519
9.69211e-05
6.35663e-05
4.29712e-05
2.74377e-05
1.02948e-05
3.71353e-06
1.42475e-06
2.56504e-06
1.46137e-05
3.77864e-05
6.03144e-05
7.94982e-05
9.51349e-05
0.000107522
0.000117116
0.000124479
0.000130185
0.000134698
0.000138354
0.000141422
0.000144174
0.000146881
0.000149779
0.000153008
0.000157022
0.000162139
0.000168086
0.000174437
0.000180518
0.000185246
0.000187065
0.000183997
0.000173881
0.000154994
0.000129666
9.21003e-05
6.33371e-05
4.49334e-05
2.89757e-05
1.04026e-05
4.05528e-06
1.52409e-06
3.07047e-06
1.75396e-05
4.29414e-05
6.37039e-05
8.33433e-05
0.000102256
0.000120378
0.00013616
0.000147157
0.000156191
0.000163552
0.000169534
0.000174415
0.000178464
0.000181942
0.000185103
0.000188167
0.000191524
0.000195372
0.00019954
0.00020369
0.000207179
0.000208955
0.000207535
0.000201133
0.000187956
0.000166791
0.000131568
9.25234e-05
6.60847e-05
4.7965e-05
3.11005e-05
1.09906e-05
4.35827e-06
1.53395e-06
2.99331e-06
1.67212e-05
4.16759e-05
6.58527e-05
8.7438e-05
0.000106362
0.00012279
0.000137002
0.000149314
0.000160019
0.000169389
0.000177659
0.000185035
0.000191698
0.000197807
0.000203498
0.000208866
0.000214118
0.000219312
0.000224199
0.000228376
0.000231151
0.000231495
0.000228065
0.000219362
0.000204046
0.000178886
0.000131619
9.51581e-05
7.05587e-05
5.17611e-05
3.34558e-05
1.14068e-05
4.64358e-06
1.69975e-06
4.22497e-06
2.45079e-05
5.56193e-05
8.31445e-05
0.000106166
0.000127892
0.000147837
0.000163357
0.000176632
0.00018798
0.00019771
0.000206122
0.00021349
0.000220059
0.000226037
0.000231579
0.000236776
0.000241726
0.000246387
0.000250476
0.000253519
0.000254784
0.000253263
0.000247746
0.000236991
0.000220017
0.000176567
0.000132219
9.94203e-05
7.56923e-05
5.58436e-05
3.60138e-05
1.19305e-05
4.9038e-06
1.77177e-06
4.35198e-06
2.44886e-05
5.61113e-05
8.37774e-05
0.000106653
0.0001288
0.000150838
0.000170192
0.000185398
0.000198918
0.000210973
0.000221753
0.000231425
0.000240137
0.000248018
0.000255161
0.000261607
0.000267376
0.000272364
0.000276266
0.000278601
0.000278669
0.000275565
0.000268257
0.000255753
0.000225168
0.000176712
0.000135929
0.000105337
8.14464e-05
6.03041e-05
3.88839e-05
1.25218e-05
5.13665e-06
1.89774e-06
5.1711e-06
2.90726e-05
6.52648e-05
9.86787e-05
0.000124514
0.000146667
0.000168481
0.00019033
0.000209911
0.000224093
0.000236541
0.000247555
0.000257387
0.000266236
0.000274244
0.000281484
0.000287951
0.000293576
0.000298166
0.000301355
0.000302622
0.000301272
0.000296466
0.000287309
0.000270712
0.000223202
0.000177117
0.00014033
0.000111326
8.70025e-05
6.46367e-05
4.17341e-05
1.3059e-05
5.35437e-06
2.02254e-06
5.30496e-06
2.96991e-05
6.80218e-05
0.000103687
0.000130065
0.0001527
0.000175016
0.000198158
0.000221713
0.000243604
0.000258256
0.000271226
0.000282696
0.000292826
0.000301736
0.000309494
0.000316092
0.000321447
0.000325352
0.000327448
0.000327233
0.000324061
0.000317181
0.000305811
0.000268419
0.000221789
0.00018026
0.000146158
0.000117741
9.27289e-05
6.91523e-05
4.4781e-05
1.36844e-05
5.54449e-06
2.10566e-06
5.46651e-06
3.05525e-05
7.13282e-05
0.000111053
0.0001462
0.000173093
0.000194234
0.00021486
0.000236705
0.000259451
0.000280959
0.000296134
0.000308697
0.00031973
0.000329303
0.000337427
0.000344042
0.000349012
0.000352097
0.000352928
0.000351018
0.00034577
0.000336517
0.000308383
0.000265351
0.000222122
0.000184158
0.00015183
0.000123691
9.80746e-05
7.34633e-05
4.77547e-05
1.42111e-05
5.71882e-06
2.22407e-06
5.83465e-06
3.22283e-05
7.49913e-05
0.000117045
0.000155014
0.000188411
0.000213353
0.00023465
0.000255584
0.000277197
0.000299332
0.000320215
0.000335977
0.000348177
0.000358561
0.000367097
0.000373682
0.000378143
0.00038022
0.000379549
0.000375675
0.000368063
0.000344207
0.000306739
0.000265135
0.000225256
0.000189538
0.000158041
0.000129742
0.000103416
7.78202e-05
5.08392e-05
1.47904e-05
5.87347e-06
2.25805e-06
6.02855e-06
3.33825e-05
7.80228e-05
0.000122795
0.000163861
0.000200451
0.000232623
0.000260783
0.000283744
0.000302561
0.000321875
0.000341856
0.000360565
0.000374169
0.000385507
0.000394684
0.000401531
0.000405809
0.000407204
0.000405323
0.000398632
0.00037711
0.000345337
0.000307637
0.000268225
0.000230399
0.000195782
0.000164468
0.000135733
0.000108624
8.20732e-05
5.38874e-05
1.52924e-05
6.01138e-06
2.31397e-06
6.52803e-06
3.57445e-05
8.23161e-05
0.000129089
0.000172406
0.000211539
0.000246479
0.00027746
0.000304821
0.000328968
0.000350318
0.000369205
0.0003858
0.000400126
0.000412134
0.000421698
0.000428605
0.000432564
0.000433201
0.000427049
0.000409687
0.000383495
0.000350363
0.000312968
0.000274468
0.000237394
0.000202984
0.000171338
0.000141911
0.000113929
8.64203e-05
5.70482e-05
1.58219e-05
6.1432e-06
2.34359e-06
6.83966e-06
3.74783e-05
8.60847e-05
0.00013506
0.000180559
0.000221824
0.000258868
0.000291943
0.000321367
0.000347465
0.000370534
0.00039083
0.000408531
0.000423717
0.000436351
0.00044628
0.00045325
0.000456914
0.000456857
0.000445257
0.000423395
0.000394121
0.000359309
0.000321358
0.000282832
0.000245678
0.000210863
0.000178498
0.000148178
0.000119262
9.08284e-05
6.03298e-05
1.63718e-05
6.27433e-06
2.38261e-06
7.29376e-06
3.9592e-05
9.01849e-05
0.000141391
0.000189251
0.000232889
0.00027222
0.000307429
0.000338798
0.000366626
0.000391191
0.000412719
0.000431366
0.000447199
0.000460182
0.00047017
0.000476905
0.000480029
0.000476985
0.00046113
0.000436744
0.000405892
0.000370254
0.000331908
0.000293019
0.000255258
0.000219523
0.000186019
0.00015451
0.000124517
9.51769e-05
6.36627e-05
1.68798e-05
6.39996e-06
2.45194e-06
7.81965e-06
4.19359e-05
9.46195e-05
0.000147845
0.00019766
0.000243224
0.000284464
0.000321539
0.000354689
0.000384164
0.000410194
0.000432964
0.000452594
0.00046912
0.000482489
0.000492542
0.000499021
0.000501571
0.000493595
0.000474891
0.000449038
0.0004175
0.000381619
0.000343181
0.000304061
0.000265733
0.000229042
0.000194262
0.000161309
0.000129911
9.94057e-05
6.6826e-05
1.73184e-05
6.52841e-06
2.5156e-06
8.39848e-06
4.45272e-05
9.96264e-05
0.000155302
0.000207473
0.000255236
0.000298485
0.000337367
0.000372114
0.000402968
0.000430149
0.000453829
0.000474113
0.000491026
0.0005045
0.000514373
0.000520383
0.000521371
0.000508568
0.000487531
0.000460449
0.000428296
0.000392197
0.000353712
0.000314477
0.000275799
0.000238466
0.000202773
0.000168694
0.000136072
0.000104407
7.06047e-05
1.79539e-05
6.63846e-06
2.63661e-06
9.17809e-06
4.77449e-05
0.000105477
0.000163454
0.000217693
0.000267371
0.000312409
0.000352949
0.000389198
0.000421369
0.000449654
0.000474201
0.000495094
0.000512341
0.000525867
0.000535505
0.000540996
0.000537184
0.000522559
0.000500609
0.000472783
0.000440014
0.000403456
0.000364538
0.000324721
0.00028524
0.00024694
0.00021024
0.000175198
0.000141662
0.000109113
7.4257e-05
1.83614e-05
6.74152e-06
2.75313e-06
9.94451e-06
5.1014e-05
0.000111879
0.000172811
0.000229636
0.000281525
0.000328438
0.000370555
0.000408109
0.000441328
0.00047041
0.000495504
0.000516691
0.000533978
0.000547287
0.000556446
0.000556212
0.000548536
0.000533996
0.000512804
0.000485415
0.000452766
0.000416184
0.000377109
0.000336856
0.000296486
0.000256803
0.000218393
0.000181658
0.000146809
0.000113478
7.76929e-05
1.87991e-05
6.8488e-06
2.9019e-06
1.07519e-05
5.41868e-05
0.000118001
0.000181727
0.000241039
0.000295102
0.000343892
0.000387595
0.00042645
0.000460686
0.000490501
0.000516043
0.00053609
0.000549534
0.000558758
0.000563917
0.000563974
0.000557687
0.000544257
0.000523611
0.000496404
0.000463831
0.000427356
0.000388434
0.000348288
0.000307791
0.000267511
0.000227916
0.000189594
0.00015319
0.000118442
8.00095e-05
1.93674e-05
6.93334e-06
3.02456e-06
1.13961e-05
5.68218e-05
0.000123564
0.000190327
0.000252373
0.000308754
0.000359433
0.000404618
0.000444568
0.000479525
0.000509022
0.000527837
0.000542729
0.000555662
0.000565992
0.000572231
0.000572902
0.000566902
0.000553666
0.000533236
0.000506247
0.000473808
0.000437313
0.000398218
0.000357822
0.000317095
0.000276625
0.000236759
0.00019789
0.000160512
0.000124041
8.1822e-05
1.9765e-05
6.97808e-06
3.13897e-06
1.19025e-05
5.8784e-05
0.000127895
0.000197362
0.000262034
0.000320767
0.000373438
0.000420221
0.000461359
0.00049709
0.000521933
0.000537613
0.000551073
0.000563472
0.000573605
0.000579777
0.000580498
0.000574695
0.000561819
0.000541889
0.000515476
0.00048357
0.000447397
0.000408264
0.000367427
0.000325997
0.000284838
0.000244526
0.000205417
0.000167591
0.000129577
8.30643e-05
1.98754e-05
7.01421e-06
3.22159e-06
1.23023e-05
6.0429e-05
0.000131722
0.000203821
0.000271129
0.00033227
0.000387012
0.000435483
0.000477918
0.000514561
0.000539509
0.000552122
0.000562546
0.00057294
0.000582005
0.000587664
0.000588144
0.000582262
0.000569472
0.000549829
0.000523904
0.000492634
0.000457116
0.000418455
0.000377697
0.000335842
0.00029387
0.000252671
0.000212889
0.000174506
0.000135225
8.4885e-05
2.01321e-05
7.08283e-06
3.29507e-06
1.26907e-05
6.20187e-05
0.000135265
0.000209728
0.000279491
0.00034298
0.000399837
0.000450116
0.000494012
0.00053176
0.000560476
0.000570914
0.000577696
0.000585126
0.000592349
0.000597004
0.000596944
0.000590771
0.000577862
0.000558247
0.000532477
0.000501462
0.000466277
0.000427972
0.000387473
0.000345604
0.00030321
0.000261246
0.000220628
0.000181528
0.000141161
8.74735e-05
2.07083e-05
7.19064e-06
3.36701e-06
1.31948e-05
6.40543e-05
0.000139372
0.000216122
0.000288178
0.000353843
0.000412681
0.00046469
0.000510033
0.000548926
0.000581585
0.000593231
0.000596557
0.000600382
0.000605126
0.000608387
0.000607623
0.000601102
0.000588012
0.000568281
0.000542385
0.000511179
0.00047573
0.00043714
0.000396395
0.000354313
0.000311634
0.000269198
0.00022794
0.000188143
0.000146692
8.9775e-05
2.12805e-05
7.29994e-06
3.45427e-06
1.38584e-05
6.66598e-05
0.000144252
0.000223267
0.000297477
0.000365134
0.000425762
0.000479332
0.00052598
0.000565898
0.000599287
0.00061553
0.000617279
0.000617676
0.000619581
0.000621126
0.000619499
0.000612608
0.000599409
0.000579687
0.000553793
0.000522443
0.000486597
0.000447338
0.000405757
0.000362841
0.000319454
0.000276431
0.000234609
0.000194127
0.00015141
9.11305e-05
2.15559e-05
7.36441e-06
3.5694e-06
1.46824e-05
6.9729e-05
0.0001498
0.000231172
0.00030753
0.000377091
0.000439369
0.000494332
0.000542112
0.000582896
0.000616873
0.000634001
0.000634764
0.00063313
0.000632915
0.000632811
0.00063016
0.000622799
0.000609565
0.000590133
0.000564733
0.000533908
0.000498394
0.000459071
0.000416938
0.000373071
0.00032856
0.00028447
0.000241722
0.000200303
0.000156045
9.21918e-05
2.16527e-05
7.37679e-06
3.71161e-06
1.54979e-05
7.26399e-05
0.0001551
0.000238774
0.000317254
0.000388707
0.000452623
0.000508957
0.000557834
0.000599433
0.00063393
0.00064783
0.00064772
0.000645421
0.000644162
0.000642839
0.000639116
0.000631028
0.000617483
0.000598166
0.000573275
0.000543263
0.000508691
0.000470185
0.000428477
0.00038447
0.000339278
0.000294167
0.00025029
0.000207647
0.000161522
9.37136e-05
2.18319e-05
7.36649e-06
3.87831e-06
1.63776e-05
7.56358e-05
0.000160447
0.000246329
0.000326804
0.000400022
0.000465459
0.00052306
0.000572945
0.000615287
0.000650255
0.00065911
0.00065825
0.00065608
0.000654539
0.000652467
0.000647825
0.000638901
0.000624736
0.000605075
0.000580158
0.00055047
0.000516557
0.000478937
0.000438127
0.000394761
0.000349755
0.000304365
0.000259898
0.000216395
0.00016843
9.57451e-05
2.21822e-05
7.3583e-06
4.05525e-06
1.72862e-05
7.86765e-05
0.000165823
0.000253841
0.000336209
0.000411071
0.000477901
0.000536638
0.000587398
0.000630349
0.000662164
0.000669802
0.00066912
0.000667286
0.000665744
0.000663292
0.000658027
0.000648384
0.000633492
0.000613135
0.000587588
0.00055741
0.000523251
0.000485723
0.000445344
0.000402617
0.000358236
0.000313281
0.000269008
0.00022534
0.000175892
9.7697e-05
2.2531e-05
7.36611e-06
4.23779e-06
1.82748e-05
8.18812e-05
0.000171336
0.000261405
0.000345556
0.000421947
0.000490055
0.000549814
0.000601333
0.000644778
0.000673347
0.000680268
0.000680092
0.000678999
0.000677969
0.000675697
0.000670352
0.000660468
0.000645225
0.000624392
0.000598192
0.000567156
0.000531994
0.000493482
0.000452357
0.000409287
0.000364983
0.000320412
0.000276699
0.000233489
0.000182907
9.96836e-05
2.29025e-05
7.3851e-06
4.41844e-06
1.92572e-05
8.4986e-05
0.000176644
0.000268663
0.000354498
0.000432331
0.000501647
0.000562374
0.000614606
0.000658496
0.000683237
0.000688911
0.00068919
0.000689116
0.000688989
0.000687304
0.000682303
0.000672673
0.000657694
0.000637124
0.000611065
0.000579869
0.000544095
0.000504498
0.000461985
0.000417543
0.000372244
0.000327314
0.000283845
0.000240654
0.000187199
0.000101502
2.32495e-05
7.38614e-06
4.59644e-06
2.02247e-05
8.79633e-05
0.000181707
0.000275555
0.00036294
0.000442078
0.000512488
0.000574105
0.000627014
0.000671346
0.000691603
0.000695684
0.000696252
0.000697095
0.000697772
0.000696558
0.000691799
0.000682395
0.000667806
0.000647867
0.000622628
0.000592253
0.000557017
0.000517398
0.000474172
0.000428471
0.000381768
0.00033576
0.000291722
0.000247839
0.000191487
0.000103404
2.35996e-05
7.3613e-06
4.76483e-06
2.11077e-05
9.06745e-05
0.000186407
0.000282025
0.000370881
0.000451222
0.000522613
0.000585025
0.000638555
0.000683324
0.000699458
0.000702033
0.00070269
0.000704124
0.000705269
0.000704201
0.000699341
0.000689776
0.000675174
0.000655523
0.000630945
0.000601559
0.000567451
0.000528791
0.000486037
0.000440165
0.000392788
0.000345968
0.000301192
0.000256035
0.000195764
0.000105439
2.40109e-05
7.32628e-06
4.92388e-06
2.19205e-05
9.31959e-05
0.000190842
0.00028818
0.000378448
0.000459909
0.000532181
0.000595289
0.000649365
0.000694547
0.000708008
0.000709501
0.000710053
0.000711669
0.000712905
0.000711708
0.000706513
0.000696505
0.00068148
0.000661565
0.000637005
0.000607999
0.000574631
0.000536949
0.000495187
0.00045009
0.000403175
0.000356569
0.000311702
0.000265217
0.000199724
0.000107286
2.44304e-05
7.29146e-06
5.07382e-06
2.27153e-05
9.57246e-05
0.000195278
0.000294316
0.000385956
0.000468473
0.000541543
0.000605255
0.000659794
0.000705335
0.000718178
0.000718878
0.000718927
0.000720293
0.000721339
0.000719861
0.000714249
0.000703725
0.000688154
0.000667729
0.000642764
0.000613535
0.000580204
0.000542868
0.000501748
0.000457511
0.000411564
0.000365912
0.000321636
0.000274105
0.000202956
0.000108472
2.46719e-05
7.25546e-06
5.21283e-06
2.34797e-05
9.82091e-05
0.000199642
0.000300348
0.000393321
0.000476841
0.000550644
0.000614893
0.000669842
0.000715717
0.000730124
0.000730415
0.000729646
0.000730365
0.000730923
0.000728962
0.000722796
0.000711663
0.000695494
0.000674548
0.000649161
0.000619605
0.000586055
0.000548655
0.000507696
0.000463907
0.000418699
0.000373973
0.000330407
0.000282084
0.000205963
0.00010941
2.48145e-05
7.2155e-06
5.33544e-06
2.42187e-05
0.000100672
0.000203953
0.000306288
0.000400543
0.000484997
0.00055945
0.000624153
0.000679449
0.00072564
0.000743981
0.000744545
0.00074298
0.000742965
0.000742959
0.00074038
0.000733372
0.000721222
0.000704051
0.000682267
0.000656265
0.000626311
0.000592533
0.000555029
0.000514082
0.00047046
0.000425632
0.000381476
0.000338358
0.000289287
0.000209014
0.000110343
2.49061e-05
7.16318e-06
5.43051e-06
2.48537e-05
0.000102901
0.00020794
0.000311865
0.000407387
0.000492755
0.000567811
0.000632889
0.000688434
0.000734852
0.000757215
0.000758666
0.000757247
0.000757468
0.00075767
0.000754923
0.000747221
0.000733939
0.000715399
0.000692242
0.000665077
0.000634293
0.00060003
0.00056233
0.000521407
0.000477964
0.000433414
0.000389541
0.000346438
0.00029631
0.000212262
0.000111486
2.50307e-05
7.09093e-06
5.50561e-06
2.5478e-05
0.000105107
0.000211861
0.000317345
0.000414121
0.000500385
0.000575997
0.00064136
0.000697011
0.000743463
0.000767528
0.000769552
0.000768965
0.000770454
0.000771975
0.000770134
0.000762647
0.000748826
0.000729107
0.000704416
0.000675696
0.000643578
0.000608356
0.000570142
0.000529099
0.000485838
0.000441714
0.000398465
0.00035588
0.000304818
0.000215837
0.000112902
2.5233e-05
7.00087e-06
5.5673e-06
2.61705e-05
0.000107499
0.000215939
0.000322904
0.000420868
0.000507985
0.00058412
0.000649717
0.000705387
0.000751735
0.000776533
0.000778327
0.00077811
0.000780782
0.000783935
0.000783703
0.00077737
0.000763962
0.000743843
0.00071804
0.000687722
0.000653856
0.000617095
0.000577814
0.000536356
0.000493428
0.000450354
0.000408477
0.000366117
0.000310666
0.000219074
0.000114196
2.54291e-05
6.89979e-06
5.62003e-06
2.68981e-05
0.00010997
0.000220019
0.00032835
0.000427419
0.000515355
0.000592011
0.000657849
0.000713523
0.00075971
0.00078429
0.000785463
0.000785409
0.000789097
0.000793787
0.000795235
0.000790425
0.000778145
0.000758561
0.000732541
0.000701217
0.000665747
0.000627124
0.00058615
0.000543638
0.000500657
0.000458608
0.000418279
0.000376076
0.000315376
0.000221957
0.000115314
2.55938e-05
6.80098e-06
5.66564e-06
2.76266e-05
0.000112421
0.000223994
0.000333578
0.000433658
0.00052236
0.000599529
0.000665625
0.000721322
0.000767336
0.000789742
0.000790187
0.000790605
0.000795427
0.000801566
0.000804626
0.000801476
0.000790736
0.000772338
0.000746934
0.000715512
0.000679176
0.000639043
0.000596276
0.000552191
0.000508386
0.000466589
0.000427265
0.000385108
0.000319707
0.000224719
0.00011648
2.57963e-05
6.7145e-06
5.70463e-06
2.82483e-05
0.000114538
0.000227476
0.000338203
0.000439226
0.00052867
0.000606366
0.00067276
0.000728526
0.000774396
0.000791818
0.000791595
0.000793225
0.000799598
0.000807177
0.000811665
0.000810099
0.000801097
0.000784404
0.000760373
0.000729701
0.000693319
0.000652372
0.000608251
0.000562652
0.000517631
0.000475274
0.000435976
0.000393244
0.000323593
0.000227316
0.000117702
2.60383e-05
6.6406e-06
5.73574e-06
2.87158e-05
0.000116179
0.00023028
0.000342034
0.000443937
0.0005341
0.000612333
0.000679064
0.000734958
0.000780751
0.000790365
0.000789702
0.00079331
0.00080153
0.000810393
0.000815988
0.000815758
0.000808474
0.000793778
0.000771746
0.000742712
0.000707268
0.000666379
0.000621513
0.000574719
0.000528534
0.000485393
0.000445574
0.000401494
0.000327169
0.00022978
0.000119017
2.63516e-05
6.58118e-06
5.76306e-06
2.90433e-05
0.000117382
0.000232455
0.000345122
0.000447832
0.000538664
0.000617403
0.000684451
0.000740452
0.000781267
0.00078598
0.000786273
0.000791797
0.000801427
0.000811118
0.000817341
0.000817961
0.000812026
0.000799237
0.000779509
0.000752856
0.000719469
0.00067994
0.000635534
0.000588366
0.000541305
0.000497203
0.000456399
0.000410226
0.000330069
0.000231676
0.000120023
2.658e-05
6.52537e-06
5.79304e-06
2.93301e-05
0.000118409
0.000234357
0.000347866
0.000451319
0.000542762
0.00062196
0.000689295
0.000745388
0.00077749
0.000780289
0.000781721
0.000788869
0.000799557
0.000809629
0.000815883
0.000816618
0.000811236
0.000799644
0.000781805
0.000757606
0.000726953
0.000690034
0.000647728
0.000601969
0.00055573
0.00051192
0.000469846
0.000417172
0.000332224
0.000232763
0.000120534
2.67335e-05
6.4739e-06
5.83671e-06
2.96373e-05
0.000119399
0.000236144
0.000350443
0.000454601
0.000546615
0.000626228
0.000693816
0.00074998
0.000772992
0.000774309
0.000777063
0.00078566
0.00079707
0.000807161
0.000813044
0.000813337
0.0008077
0.000796248
0.000779115
0.000756319
0.000727821
0.000693774
0.000654935
0.000613031
0.000570597
0.000529323
0.000485341
0.000420502
0.000333688
0.000233059
0.000120455
2.67533e-05
6.43378e-06
5.89871e-06
2.99777e-05
0.000120427
0.000237969
0.000353019
0.000457823
0.000550351
0.000630333
0.000698139
0.000754362
0.000768757
0.000769156
0.000773357
0.000783278
0.000795282
0.000805363
0.000810895
0.000810687
0.000804518
0.000792603
0.000775206
0.000752532
0.00072479
0.000692422
0.000656447
0.000618681
0.000581264
0.000544348
0.000500141
0.000424062
0.000335077
0.000232922
0.000119801
2.65781e-05
6.40949e-06
5.98237e-06
3.0284e-05
0.000121372
0.000239706
0.000355484
0.000460902
0.000553905
0.000634213
0.000702186
0.00075629
0.000765295
0.000765958
0.000771493
0.000782319
0.000794719
0.000804901
0.000810363
0.000809957
0.000803471
0.000791141
0.000773273
0.00075017
0.00072223
0.000690195
0.00065547
0.000620251
0.000586644
0.00055316
0.000506622
0.000427838
0.00033687
0.000232935
0.000118922
2.62658e-05
6.40347e-06
6.09167e-06
3.07323e-05
0.000122615
0.000241746
0.000358168
0.00046409
0.000557465
0.000638
0.000706035
0.000753639
0.000762024
0.000764006
0.000770852
0.000782492
0.000795279
0.000805613
0.000811136
0.000810772
0.000804311
0.000791936
0.000773908
0.000750533
0.00072228
0.000690044
0.00065545
0.00062091
0.000588649
0.000557036
0.000512076
0.000432161
0.000339532
0.000233773
0.000118463
2.60112e-05
6.40932e-06
6.21488e-06
3.12066e-05
0.000123882
0.000243749
0.000360723
0.000467062
0.000560743
0.000641466
0.000709549
0.000751112
0.000758818
0.000762125
0.000770422
0.000783057
0.00079638
0.000806964
0.000812631
0.000812418
0.000806152
0.000793996
0.000776158
0.000752888
0.000724634
0.000692317
0.000657615
0.000622978
0.000590708
0.000559725
0.000517619
0.000436884
0.000342949
0.000235542
0.00011873
2.59466e-05
6.41524e-06
6.33932e-06
3.16216e-05
0.000124942
0.000245412
0.000362843
0.000469535
0.000563486
0.000644388
0.000712539
0.000748921
0.000755903
0.000760362
0.000769997
0.000783554
0.000797363
0.000808187
0.000814029
0.000814019
0.000808018
0.000796194
0.000778733
0.000755839
0.000727908
0.000695831
0.000661279
0.000626709
0.000594443
0.000563583
0.000522946
0.000441528
0.000346564
0.000237778
0.000119522
2.60509e-05
6.40886e-06
6.45138e-06
3.18662e-05
0.000125525
0.000246437
0.000364263
0.000471284
0.000565506
0.000646618
0.0007149
0.000747579
0.000753829
0.000759059
0.00076973
0.000784036
0.000798229
0.000809201
0.00081512
0.000815231
0.000809449
0.000797947
0.0007809
0.000758485
0.000731064
0.000699486
0.000665405
0.000631291
0.000599489
0.000569043
0.000527955
0.000445899
0.000350013
0.000240054
0.000120523
2.62495e-05
6.38698e-06
6.54098e-06
3.19591e-05
0.000125699
0.000246876
0.000365
0.000472306
0.000566795
0.000648152
0.000716645
0.00074767
0.000753331
0.000758844
0.000770073
0.00078482
0.000799212
0.000810204
0.000816082
0.00081619
0.00081049
0.00079918
0.000782435
0.00076044
0.000733547
0.000702582
0.000669198
0.00063593
0.000605132
0.000575283
0.000532593
0.000449851
0.000353069
0.00024205
0.000121423
2.64417e-05
6.35512e-06
6.60801e-06
3.1953e-05
0.000125628
0.00024694
0.000365268
0.000472795
0.000567518
0.000649126
0.000717887
0.000749251
0.000754616
0.000760037
0.00077139
0.000786273
0.000800684
0.000811575
0.000817302
0.000817283
0.000811527
0.000800248
0.000783631
0.000761877
0.000735369
0.000704972
0.000672389
0.000640201
0.000610641
0.000581431
0.000536985
0.000453511
0.000355822
0.000243783
0.000122174
2.66046e-05
6.31956e-06
6.65787e-06
3.19562e-05
0.000125609
0.00024702
0.000365477
0.000473141
0.000568025
0.000649836
0.000718855
0.000751955
0.000757366
0.000762521
0.000773726
0.000788545
0.000802862
0.000813584
0.000819098
0.000818874
0.000812963
0.000801595
0.000784957
0.000763263
0.000736943
0.000706949
0.000675088
0.000643973
0.000615652
0.000587135
0.000541241
0.000457056
0.000358468
0.000245432
0.000122892
2.6759e-05
6.2824e-06
6.70001e-06
3.20209e-05
0.000125774
0.000247288
0.000365814
0.000473534
0.000568493
0.000650433
0.000719657
0.000754982
0.000760784
0.000765745
0.000776761
0.000791477
0.000805695
0.000816254
0.000821544
0.000821078
0.000814949
0.000803409
0.000786646
0.000764884
0.000738591
0.000708816
0.0006775
0.000647322
0.000620149
0.000592346
0.000545408
0.000460565
0.000361104
0.000247074
0.000123607
2.69018e-05
6.24191e-06
6.74663e-06
3.21785e-05
0.000126189
0.000247844
0.000366403
0.000474108
0.000569057
0.00065103
0.000720365
0.000757372
0.000763843
0.000768985
0.000780075
0.000794856
0.000809089
0.000819568
0.000824683
0.000823986
0.000817618
0.000805857
0.000788901
0.000766979
0.000740599
0.000710897
0.000679936
0.000650484
0.000624291
0.000597163
0.000549419
0.000464024
0.000363759
0.000248755
0.00012434
2.7038e-05
6.19583e-06
6.80521e-06
3.24403e-05
0.000126853
0.000248671
0.000367212
0.000474829
0.00056968
0.000651589
0.000720923
0.000758204
0.000765451
0.0007713
0.000782928
0.00079809
0.00081255
0.000823102
0.000828155
0.000827307
0.000820745
0.000808782
0.000791628
0.000769523
0.000743013
0.000713315
0.000682601
0.000653711
0.000628301
0.000601689
0.000553053
0.000467226
0.000366281
0.000250389
0.000125063
2.71647e-05
6.14346e-06
6.86996e-06
3.26824e-05
0.000127452
0.00024937
0.000367827
0.000475296
0.00057
0.000651795
0.000721063
0.000757249
0.000765238
0.000772231
0.000784842
0.000800712
0.000815628
0.000826428
0.000831567
0.000830688
0.000824022
0.000811915
0.000794597
0.000772327
0.000745687
0.000715973
0.000685463
0.000657064
0.000632322
0.000606003
0.000556044
0.000469862
0.00036835
0.000251694
0.000125577
2.72215e-05
6.08205e-06
6.93105e-06
3.28812e-05
0.000127927
0.000249885
0.000368193
0.000475447
0.000569941
0.000651563
0.000720707
0.000754896
0.00076347
0.000771835
0.000785721
0.000802528
0.000818069
0.00082927
0.000834656
0.00083391
0.000827291
0.000815163
0.000797773
0.000775401
0.000748668
0.000718946
0.000688615
0.000660653
0.000636475
0.000610207
0.000558334
0.000471857
0.000369906
0.00025265
0.000125908
2.72336e-05
6.01534e-06
6.97456e-06
3.29777e-05
0.000128128
0.000250019
0.000368117
0.000475111
0.00056936
0.000650786
0.000719797
0.000751982
0.000760958
0.000770638
0.000785831
0.000803618
0.000819816
0.000831457
0.000837161
0.000836659
0.00083022
0.000818207
0.000800876
0.000778523
0.000751811
0.000722179
0.000692096
0.000664585
0.000640895
0.000614415
0.000559997
0.000473249
0.00037096
0.000253266
0.000126075
2.72102e-05
5.94752e-06
7.00184e-06
3.30025e-05
0.000128123
0.000249838
0.000367659
0.000474354
0.000568334
0.000649551
0.000718424
0.00074905
0.000758286
0.000769085
0.00078548
0.000804203
0.000821032
0.000833104
0.000839141
0.000838928
0.000832738
0.00082093
0.000803757
0.000781537
0.000754974
0.000725574
0.000695877
0.000668908
0.000645662
0.000618663
0.000561099
0.000474063
0.00037152
0.000253549
0.0001261
2.71648e-05
5.88324e-06
7.021e-06
3.29971e-05
0.000128019
0.00024949
0.000366989
0.000473357
0.00056705
0.000648042
0.000716767
0.000746013
0.000755455
0.000767213
0.000784644
0.000804176
0.000821561
0.000834028
0.000840395
0.000840495
0.000834608
0.000823083
0.000806173
0.000784216
0.000757967
0.000729007
0.000699939
0.00067375
0.000651063
0.000623335
0.000561906
0.000474485
0.000371679
0.000253523
0.000125969
2.7089e-05
5.82401e-06
7.04213e-06
3.30337e-05
0.000127993
0.0002492
0.000366335
0.000472333
0.000565701
0.000646439
0.000714992
0.000742739
0.000752429
0.00076512
0.000783489
0.000803713
0.000821549
0.000834325
0.000840949
0.000841301
0.00083568
0.000824435
0.000807824
0.000786214
0.000760422
0.000732115
0.000703966
0.00067889
0.000657038
0.000628565
0.000562713
0.000474813
0.000371689
0.000253369
0.000125791
2.70146e-05
5.77161e-06
7.06401e-06
3.3079e-05
0.000127988
0.000248935
0.000365696
0.000471302
0.000564314
0.000644766
0.000713117
0.000739062
0.000749029
0.000762731
0.000782043
0.000802911
0.000821136
0.000834156
0.000840965
0.000841496
0.000836067
0.00082504
0.000808687
0.000787416
0.000762117
0.000734569
0.000707545
0.000683909
0.000663293
0.000634342
0.000563768
0.000475342
0.000371838
0.000253314
0.000125709
2.69755e-05
5.72715e-06
7.08342e-06
3.31411e-05
0.000128025
0.000248733
0.000365132
0.000470341
0.00056298
0.000643122
0.000711248
0.000735437
0.000745639
0.000760311
0.000780511
0.000801961
0.000820518
0.000833727
0.00084066
0.000841295
0.000835978
0.000825082
0.000808902
0.000787885
0.000763
0.000736144
0.00071021
0.000688073
0.000668935
0.000639922
0.00056494
0.000475998
0.000372059
0.000253241
0.000125556
2.69155e-05
5.69087e-06
7.10038e-06
3.3188e-05
0.000128054
0.000248539
0.000364588
0.000469404
0.000561662
0.000641483
0.000709381
0.000732074
0.000742564
0.000758152
0.000779171
0.000801157
0.00082001
0.000833364
0.000840365
0.000841038
0.000835755
0.000824905
0.000808804
0.000787934
0.000763333
0.000737016
0.000712066
0.000691408
0.000673359
0.000641347
0.000566101
0.000476773
0.000372428
0.000253271
0.000125432
2.68587e-05
5.66674e-06
7.13104e-06
3.32949e-05
0.000128266
0.000248628
0.000364376
0.000468802
0.000560647
0.000640093
0.000707718
0.000728042
0.000739227
0.000756038
0.000777966
0.000800481
0.00081959
0.000833035
0.000840044
0.000840689
0.000835363
0.000824467
0.000808333
0.000787477
0.000762996
0.000737016
0.00071277
0.000693204
0.000675997
0.000642607
0.000567198
0.00047759
0.000372879
0.000253345
0.000125285
2.67993e-05
5.65671e-06
7.18832e-06
3.34032e-05
0.000128475
0.000248798
0.000364315
0.00046837
0.000559759
0.000638713
0.000702166
0.000721612
0.000734765
0.000753436
0.000776579
0.000799739
0.000819122
0.000832647
0.000839652
0.000840258
0.000834869
0.000823889
0.00080766
0.00078672
0.000762204
0.000736277
0.000712225
0.000693054
0.000676446
0.000643505
0.000568015
0.000478209
0.000373194
0.000253314
0.000125038
2.6699e-05
5.6566e-06
7.27235e-06
3.35195e-05
0.000128714
0.000249091
0.000364423
0.000468077
0.000558916
0.000637227
0.000693078
0.000712671
0.000728599
0.000749913
0.000774787
0.000798843
0.000818597
0.000832237
0.00083926
0.000839848
0.000834411
0.000823346
0.000806999
0.00078593
0.000761291
0.000735249
0.000711064
0.000691813
0.00067562
0.000644386
0.000568898
0.00047899
0.000373771
0.000253614
0.000125091
2.67081e-05
5.66815e-06
7.36724e-06
3.36446e-05
0.000129045
0.000249615
0.000364829
0.000468056
0.000558236
0.000635746
0.000683417
0.000702754
0.000721511
0.000745773
0.000772692
0.000797867
0.000818133
0.000831987
0.000839105
0.000839732
0.000834275
0.000823118
0.000806609
0.000785322
0.000760428
0.00073408
0.000709463
0.000689671
0.000673531
0.00064494
0.000569489
0.000479529
0.000374146
0.000253734
0.000124993
2.66678e-05
5.67808e-06
7.46008e-06
3.37265e-05
0.000129348
0.000250231
0.000365463
0.000468343
0.000557865
0.000634496
0.000673782
0.000692687
0.000714105
0.000741217
0.000770177
0.000796558
0.000817492
0.000831751
0.00083916
0.000840001
0.000834669
0.000823528
0.000806925
0.000785449
0.000760289
0.000733591
0.000708487
0.000688033
0.000671407
0.000644987
0.000569723
0.000479811
0.000374405
0.000253899
0.000125036
2.66733e-05
5.68193e-06
7.54856e-06
3.36716e-05
0.000129279
0.00025041
0.000365753
0.000468446
0.000557457
0.000633308
0.000663683
0.000682349
0.00070631
0.000735874
0.000766521
0.000794007
0.00081576
0.000830723
0.000838756
0.000840114
0.00083515
0.000824206
0.000807633
0.000786048
0.000760672
0.000733657
0.000708103
0.000687015
0.000669675
0.000643067
0.000569541
0.000479659
0.00037426
0.000253748
0.000124909
2.66513e-05
5.67496e-06
7.63953e-06
3.35485e-05
0.000128936
0.000250137
0.000365522
0.000468059
0.000556611
0.000627679
0.000653144
0.000672717
0.000698453
0.000729343
0.000760948
0.000789315
0.000812023
0.000828023
0.000837111
0.000839451
0.000835308
0.000824966
0.000808755
0.00078731
0.000761885
0.000734655
0.000708696
0.000686956
0.000668731
0.000641442
0.000568777
0.00047885
0.000373453
0.000253014
0.000124374
2.64801e-05
5.64366e-06
7.72937e-06
3.33645e-05
0.00012832
0.000249365
0.000364677
0.000467094
0.000555331
0.000619856
0.000644063
0.000664252
0.000690676
0.000721916
0.000753698
0.000782354
0.00080566
0.000822606
0.000832898
0.000836551
0.000833679
0.000824451
0.000809139
0.000788367
0.000763414
0.00073648
0.000710616
0.000688656
0.000669726
0.000641267
0.000567812
0.000477799
0.000372483
0.000252269
0.000123946
2.63486e-05
5.59466e-06
7.81123e-06
3.31552e-05
0.000127501
0.000248111
0.000363168
0.000465452
0.000553553
0.00061414
0.00063765
0.000658081
0.000684534
0.00071537
0.00074653
0.000774682
0.000797874
0.000815215
0.000826379
0.000831243
0.000829742
0.000821875
0.000807804
0.000788106
0.000764069
0.000737909
0.000712651
0.00069098
0.000671713
0.000641913
0.000566348
0.000476062
0.000370716
0.000250735
0.000122916
2.60283e-05
5.52287e-06
7.87416e-06
3.27263e-05
0.000126059
0.000245937
0.000360558
0.000462662
0.000550742
0.000609141
0.000632699
0.000653568
0.000679958
0.000710121
0.000740224
0.000767283
0.000789678
0.000806753
0.000818267
0.000824046
0.000823869
0.000817541
0.000805042
0.000786842
0.0007642
0.000739371
0.000715372
0.000694597
0.000674876
0.000641285
0.000564643
0.000473999
0.00036858
0.000248878
0.000121695
2.5638e-05
5.43117e-06
7.9147e-06
3.22632e-05
0.000124436
0.000243313
0.000357278
0.000459069
0.000547127
0.000606226
0.000630095
0.00065115
0.000677436
0.000706995
0.000735966
0.000761579
0.000782531
0.000798482
0.000809433
0.000815323
0.000815915
0.000810892
0.000800068
0.000783772
0.000763193
0.000740542
0.000718651
0.000699269
0.000678757
0.000640157
0.000562916
0.000471854
0.000366307
0.000246854
0.00012034
2.5213e-05
5.33148e-06
7.92967e-06
3.19497e-05
0.000123245
0.000241024
0.000354074
0.00045529
0.000543159
0.000605378
0.000629633
0.00065039
0.000676492
0.000705848
0.000734261
0.000758807
0.000778312
0.000792726
0.000802366
0.00080743
0.000807843
0.000803343
0.000793703
0.000779161
0.000760805
0.000740713
0.000721409
0.000703857
0.000682788
0.00063898
0.000561096
0.000469528
0.000363746
0.000244473
0.000118667
2.46729e-05
5.22358e-06
7.93216e-06
3.15485e-05
0.000121831
0.000238442
0.000350537
0.000451158
0.000538828
0.000604273
0.000629666
0.000650355
0.00067604
0.00070501
0.000733113
0.000757173
0.000775773
0.000788898
0.000797117
0.000800936
0.000800542
0.00079586
0.000786766
0.000773527
0.000757205
0.000739762
0.000723388
0.000708184
0.000687044
0.000638092
0.000559693
0.000467658
0.000361605
0.000242424
0.000117208
2.42014e-05
5.12226e-06
7.93364e-06
3.13617e-05
0.000120982
0.000236398
0.000347289
0.000446993
0.00053417
0.000600955
0.000628237
0.000650247
0.00067649
0.000705398
0.00073302
0.000756402
0.000774273
0.000786519
0.000793548
0.000795979
0.000794319
0.000788804
0.000779525
0.000766886
0.000752012
0.000736832
0.00072328
0.000710673
0.000690117
0.000637033
0.000558318
0.000465886
0.000359508
0.000240282
0.00011556
2.36595e-05
5.02143e-06
7.89848e-06
3.08974e-05
0.000119472
0.000233505
0.000343095
0.000441757
0.00052825
0.000595838
0.000624257
0.000647811
0.00067559
0.000705584
0.000733536
0.000756541
0.000773626
0.000784967
0.000791137
0.000792684
0.000789998
0.000783459
0.000773479
0.000760742
0.000746551
0.000732914
0.000721671
0.000711582
0.000692141
0.000635804
0.000557151
0.000464605
0.000358044
0.000238748
0.000114326
2.32345e-05
4.92965e-06
7.83091e-06
3.06145e-05
0.000118492
0.000231246
0.000339543
0.00043714
0.000522929
0.000595155
0.000624117
0.000647535
0.000675533
0.000706037
0.000734526
0.000757771
0.000774476
0.000784846
0.000789809
0.000790202
0.000786553
0.000779234
0.000768587
0.000755417
0.000741313
0.000728516
0.000718921
0.000710933
0.000692714
0.000633921
0.000555629
0.000463225
0.000356643
0.000237318
0.000113131
2.28173e-05
4.85162e-06
7.77119e-06
3.09013e-05
0.000119231
0.000231042
0.000337927
0.000434224
0.000519084
0.000592805
0.00062619
0.000650568
0.000678852
0.000709349
0.000737648
0.000760648
0.00077712
0.000787082
0.000791118
0.00079007
0.000784858
0.000776207
0.000764614
0.0007509
0.000736655
0.000724268
0.000715845
0.000709659
0.000692658
0.000631579
0.000553976
0.000462033
0.000355667
0.000236406
0.000112355
2.25335e-05
4.79292e-06
7.78182e-06
3.1324e-05
0.000120462
0.000231667
0.000337185
0.000431993
0.000515545
0.0005841
0.00061919
0.000649105
0.000681168
0.000713305
0.000741863
0.000764481
0.000780376
0.000789758
0.000793221
0.000791406
0.000784963
0.000774657
0.000761429
0.000746533
0.000731699
0.000719417
0.000711971
0.000707504
0.000691174
0.000628334
0.000551725
0.000460604
0.000354778
0.000235763
0.000111828
2.23489e-05
4.75113e-06
7.87289e-06
3.19054e-05
0.000122125
0.000233016
0.000337112
0.000430065
0.000511771
0.000562323
0.000601018
0.000639789
0.00067881
0.000714731
0.000744742
0.000767594
0.000783219
0.000792116
0.000794936
0.000792316
0.000784897
0.000773375
0.000758592
0.000741948
0.000725646
0.00071259
0.000705295
0.000701764
0.000685309
0.000623627
0.000548203
0.000458162
0.00035318
0.00023469
0.000111074
2.21259e-05
4.72565e-06
7.96008e-06
3.17296e-05
0.000121901
0.00023243
0.000335265
0.000426194
0.00049256
0.000536756
0.000580126
0.000625973
0.000670874
0.000710828
0.000743382
0.000767753
0.000784224
0.000793502
0.00079631
0.000793277
0.000785025
0.00077227
0.000755913
0.000737407
0.000719104
0.000704136
0.00069535
0.000691646
0.000678191
0.000617585
0.000543323
0.000454381
0.000350322
0.000232531
0.000109557
2.17046e-05
4.7238e-06
8.02331e-06
3.13963e-05
0.00012115
0.00023131
0.000333214
0.000422589
0.000474926
0.00051665
0.000562316
0.000611301
0.000659018
0.000701461
0.000736353
0.000762916
0.000781307
0.000792112
0.000795988
0.000793501
0.000785189
0.000771705
0.000753957
0.000733459
0.000712628
0.00069482
0.000683269
0.000677622
0.000665719
0.000610907
0.000538031
0.000450377
0.000347425
0.000230526
0.000108344
2.14646e-05
4.75683e-06
8.06253e-06
3.08905e-05
0.000119754
0.00022921
0.000330275
0.000417182
0.000462233
0.00050301
0.000549213
0.000598654
0.000646695
0.000689642
0.000725476
0.000753509
0.000773796
0.000786689
0.000792588
0.00079182
0.000784675
0.000771571
0.000753242
0.000731143
0.000707729
0.000686467
0.000671003
0.000662091
0.000650232
0.000603503
0.000532222
0.000446131
0.000344579
0.0002288
0.000107433
2.13128e-05
4.78151e-06
8.09432e-06
3.05459e-05
0.00011848
0.000226801
0.000326785
0.000409064
0.000453076
0.000493831
0.000539908
0.000588901
0.000636235
0.000678444
0.000713806
0.000741906
0.000762975
0.000777372
0.000785342
0.000786955
0.000782152
0.000770917
0.000753525
0.000731033
0.00070569
0.000681004
0.000661013
0.000647688
0.000634467
0.000594607
0.00052488
0.000440504
0.00034063
0.000226336
0.000106172
2.10653e-05
4.76715e-06
8.10899e-06
3.00083e-05
0.000116546
0.000223151
0.000321642
0.000399077
0.000443537
0.00048583
0.000532821
0.000581817
0.000628451
0.000669584
0.000703811
0.000731
0.000751635
0.000766288
0.000775335
0.000778846
0.000776594
0.000768191
0.000753323
0.000732316
0.000706725
0.00067965
0.00065527
0.000636651
0.000620156
0.000584403
0.000515891
0.000433193
0.000335165
0.000222598
0.000103983
2.05276e-05
4.71172e-06
8.12192e-06
2.93801e-05
0.000114244
0.000218727
0.000315256
0.000386614
0.000431984
0.000476851
0.000525799
0.000575647
0.000622186
0.000662589
0.000695744
0.000721758
0.000741325
0.000755256
0.000764179
0.000768403
0.000767852
0.000762107
0.00075051
0.000732656
0.000709067
0.000681803
0.000654423
0.000630424
0.000608725
0.00057406
0.000506258
0.000425132
0.000329227
0.000218855
0.000102065
2.01014e-05
4.66904e-06
8.13477e-06
2.86384e-05
0.000111537
0.000213611
0.000307832
0.000372225
0.000418349
0.000466068
0.000517431
0.000568662
0.000615686
0.000655926
0.000688477
0.000713602
0.00073213
0.000745023
0.00075312
0.00075701
0.000756932
0.000752774
0.00074403
0.00073005
0.000710538
0.000686224
0.000659231
0.000632188
0.000604652
0.000565178
0.000497376
0.000417342
0.000323478
0.00021557
0.000100798
1.98906e-05
4.62946e-06
8.15455e-06
2.7877e-05
0.000108681
0.000208214
0.00029994
0.000357299
0.000403736
0.000453967
0.000507627
0.000560255
0.000607884
0.000648237
0.000680561
0.000705154
0.000722903
0.000734843
0.00074193
0.000744945
0.000744424
0.00074067
0.000733653
0.000723066
0.000708503
0.000689847
0.000667495
0.000641559
0.000608835
0.000557252
0.000488604
0.00040896
0.00031684
0.000211679
9.95538e-05
1.97977e-05
4.58489e-06
8.17751e-06
2.71091e-05
0.000105724
0.000202655
0.000291926
0.000343084
0.000389764
0.000441845
0.000497204
0.000550983
0.000599183
0.000639659
0.000671848
0.000696136
0.000713353
0.00072451
0.000730618
0.000732567
0.000731082
0.000726813
0.000720311
0.000712079
0.000702447
0.000691171
0.000676425
0.000652976
0.000610208
0.000549359
0.000479223
0.000399055
0.000307824
0.00020512
9.63915e-05
1.9183e-05
4.47468e-06
8.20824e-06
2.63812e-05
0.00010275
0.000196791
0.000279558
0.000329468
0.000377505
0.000430802
0.000486918
0.000541314
0.00059009
0.000630916
0.000663109
0.000687112
0.000703867
0.000714409
0.000719692
0.000720595
0.000717936
0.000712576
0.000705485
0.000697943
0.000691321
0.000685953
0.000678364
0.000656984
0.000604105
0.000541808
0.000470056
0.000388659
0.000297285
0.000196197
9.10763e-05
1.798e-05
4.35635e-06
8.24974e-06
2.5708e-05
9.99359e-05
0.000191094
0.000267062
0.000316331
0.000365589
0.000420147
0.00047712
0.000532013
0.000581169
0.000622385
0.000654847
0.00067882
0.000695229
0.000705206
0.00070979
0.000709841
0.000706122
0.000699513
0.000691112
0.000682609
0.00067625
0.000673514
0.000670949
0.000652285
0.000599604
0.000536685
0.000463606
0.000380559
0.000287921
0.000186968
8.45595e-05
1.63308e-05
4.23281e-06
8.30177e-06
2.50896e-05
9.7272e-05
0.000185539
0.000254625
0.000303361
0.000354039
0.000410075
0.000468123
0.000523643
0.000573077
0.000614434
0.00064706
0.000671186
0.000687568
0.000697226
0.000701221
0.000700518
0.000695942
0.000688273
0.000678416
0.000667972
0.000659416
0.00065527
0.000654709
0.000645883
0.00059576
0.00053331
0.000459852
0.000375693
0.000281686
0.00018008
7.92683e-05
1.5027e-05
4.1775e-06
8.35926e-06
2.44797e-05
9.46781e-05
0.000180105
0.000242597
0.000290705
0.000342655
0.000400088
0.000459208
0.000515479
0.000565382
0.000606936
0.000639585
0.000663717
0.000680138
0.000689768
0.000693523
0.000692292
0.000686964
0.000678407
0.00066733
0.000654867
0.000643158
0.000635251
0.000632848
0.000628822
0.000592889
0.000532018
0.000459204
0.000374663
0.000279416
0.000176421
7.57575e-05
1.41336e-05
4.154e-06
8.41964e-06
2.39329e-05
9.23345e-05
0.000175074
0.000231305
0.00027878
0.000331843
0.000390481
0.000450463
0.000507272
0.000557521
0.000599292
0.00063199
0.000656011
0.000672276
0.000681798
0.000685446
0.000683962
0.000678105
0.000668709
0.000656476
0.000642271
0.000627513
0.000614534
0.000606099
0.000602141
0.000589398
0.000530843
0.000459837
0.000376218
0.000280864
0.000176897
7.53118e-05
1.41079e-05
4.26302e-06
8.47603e-06
2.34006e-05
9.01094e-05
0.000170378
0.000220973
0.000268005
0.00032202
0.000381553
0.000442084
0.000499167
0.000549536
0.000591371
0.000624125
0.00064815
0.000664313
0.000673658
0.000677136
0.000675516
0.000669464
0.000659616
0.000646506
0.00063084
0.000613725
0.000596896
0.000582794
0.000573421
0.000564627
0.000530101
0.000461768
0.000379743
0.000284747
0.000179826
7.64411e-05
1.43608e-05
4.37841e-06
8.52267e-06
2.29593e-05
8.8163e-05
0.000166121
0.000211879
0.00025892
0.000313782
0.000373901
0.000434706
0.000491888
0.000542268
0.000584063
0.000616767
0.000640786
0.000656994
0.000666369
0.000669819
0.00066811
0.000661928
0.000651898
0.000638372
0.000621805
0.000603024
0.000583391
0.000564919
0.0005498
0.000537952
0.000520027
0.000461951
0.000382663
0.000289329
0.000184567
7.94478e-05
1.51487e-05
4.52475e-06
8.54864e-06
2.25292e-05
8.6141e-05
0.000158608
0.00020391
0.000251555
0.000306826
0.000367132
0.000428018
0.000485221
0.000535576
0.000577317
0.000609976
0.000634005
0.000650327
0.000659952
0.000663729
0.000662315
0.000656326
0.00064634
0.000632696
0.000615774
0.000596157
0.000574881
0.000553628
0.000534568
0.000519003
0.000502242
0.000461024
0.000384414
0.00029286
0.00018852
8.19999e-05
1.56942e-05
4.53373e-06
8.5591e-06
2.22164e-05
8.46556e-05
0.000152502
0.000197097
0.000245014
0.000300654
0.000361223
0.000422176
0.000479235
0.000529294
0.000570702
0.000603102
0.00062702
0.000643403
0.000653256
0.000657417
0.000656514
0.000651062
0.000641506
0.000628087
0.000611105
0.000591074
0.000568876
0.000545857
0.000523824
0.000504359
0.00048607
0.000457123
0.00038316
0.000294178
0.000191558
8.48298e-05
1.64894e-05
4.54518e-06
8.53577e-06
2.181e-05
8.299e-05
0.000146618
0.000190859
0.000239236
0.000295239
0.000355877
0.000416588
0.000473157
0.000522607
0.000563437
0.000595419
0.000619154
0.000635609
0.000645764
0.000650415
0.000650142
0.000645425
0.000636656
0.000623969
0.00060752
0.000587711
0.000565313
0.000541573
0.000518216
0.000496853
0.000476717
0.000448163
0.000380435
0.000293446
0.000192354
8.59777e-05
1.6708e-05
4.41306e-06
8.47951e-06
2.1384e-05
8.12902e-05
0.000141071
0.000185057
0.000233885
0.000290195
0.00035076
0.000410963
0.000466679
0.000515129
0.000555036
0.000586344
0.000609737
0.000626186
0.000636628
0.000641797
0.000642215
0.000638312
0.000630432
0.000618663
0.000603107
0.000584043
0.000562084
0.000538327
0.000514332
0.000491579
0.000469485
0.000439772
0.000375862
0.00029115
0.000192389
8.72854e-05
1.71283e-05
4.32696e-06
8.38925e-06
2.06723e-05
7.87199e-05
0.000134667
0.00017863
0.000228123
0.000284805
0.000345158
0.000404546
0.000459035
0.00050614
0.000544869
0.000575352
0.000598343
0.000614794
0.000625576
0.000631349
0.000632568
0.000629618
0.000622808
0.000612195
0.000597845
0.000579996
0.000559205
0.000536481
0.000513281
0.000490983
0.000468798
0.000437983
0.000371386
0.000287706
0.000190369
8.6591e-05
1.68073e-05
4.11876e-06
8.27356e-06
1.97821e-05
7.55055e-05
0.000127378
0.000171419
0.000221788
0.000278997
0.000339122
0.000397502
0.000450466
0.000495922
0.000533226
0.000562708
0.000585177
0.000601546
0.000612601
0.000618915
0.000620874
0.000618815
0.000613028
0.000603554
0.000590444
0.000573901
0.000554393
0.000532788
0.00051039
0.000488434
0.000465956
0.000434027
0.000366156
0.000283963
0.000188643
8.66554e-05
1.68812e-05
4.01849e-06
8.13903e-06
1.8465e-05
7.07898e-05
0.000118317
0.000162409
0.000213732
0.000271533
0.000331428
0.000388762
0.000440189
0.000484055
0.000520058
0.0005487
0.000570816
0.000587254
0.000598713
0.000605677
0.00060847
0.000607388
0.000602706
0.000594467
0.000582759
0.000567848
0.000550239
0.00053073
0.000510356
0.000489747
0.000466714
0.000430155
0.000361424
0.000279647
0.000185224
8.46487e-05
1.614e-05
3.78984e-06
7.99983e-06
1.69823e-05
6.52686e-05
0.000108029
0.000152044
0.000204435
0.00026301
0.000322782
0.000379084
0.000428966
0.000471263
0.00050603
0.000533921
0.000555761
0.000572319
0.000584194
0.000591791
0.000595377
0.000595224
0.000591597
0.000584522
0.000574105
0.000560673
0.000544792
0.000527189
0.000508509
0.000488581
0.00046424
0.000424285
0.000356369
0.000275807
0.000183007
8.40642e-05
1.59857e-05
3.68923e-06
7.86349e-06
1.51022e-05
5.81384e-05
9.60132e-05
0.000139474
0.000192579
0.000251758
0.000311355
0.000366686
0.000415222
0.000456286
0.000490237
0.000517806
0.000539759
0.000556754
0.000569291
0.000577705
0.000582231
0.000583136
0.000580701
0.000574965
0.000566084
0.000554496
0.000540916
0.00052617
0.000510705
0.000493298
0.000468091
0.000419654
0.000351669
0.000271187
0.000178792
8.10482e-05
1.49028e-05
3.43647e-06
7.74608e-06
1.31989e-05
5.0736e-05
8.37454e-05
0.000126003
0.000179412
0.000239094
0.000298481
0.000352766
0.000399907
0.000439792
0.000473087
0.000500552
0.000522827
0.000540412
0.000553686
0.000562914
0.000568309
0.000570166
0.000568805
0.000564263
0.000556725
0.000546703
0.000534983
0.000522325
0.000508846
0.00049265
0.000466535
0.000413228
0.000346368
0.000267291
0.000176487
8.02494e-05
1.47116e-05
3.3549e-06
7.65045e-06
1.10484e-05
4.26655e-05
7.11081e-05
0.000111035
0.000163693
0.000223318
0.000282238
0.000335369
0.000381173
0.000420135
0.000453188
0.000481038
0.000504118
0.000522722
0.000537082
0.000547392
0.000553857
0.000556816
0.000556645
0.000553393
0.000547309
0.000539126
0.000530009
0.00052097
0.000511403
0.000496231
0.000462016
0.000407141
0.000340619
0.00026187
0.000171573
7.66614e-05
1.35365e-05
3.11718e-06
7.59243e-06
9.66967e-06
3.65655e-05
6.00755e-05
9.66724e-05
0.000147892
0.000207264
0.000265494
0.000316975
0.000360881
0.000398546
0.000431248
0.000459576
0.00048365
0.000503462
0.000519037
0.000530469
0.000537958
0.000541918
0.000542825
0.000540713
0.000535793
0.000528806
0.000521004
0.000513512
0.000505535
0.000490784
0.000453137
0.00039973
0.000334925
0.000258077
0.000169706
7.63274e-05
1.35885e-05
3.10441e-06
7.56678e-06
8.72413e-06
3.11573e-05
4.99842e-05
8.23155e-05
0.000130926
0.000189388
0.00024653
0.000295885
0.00033743
0.000373538
0.000405898
0.000434942
0.000460398
0.000481869
0.000499104
0.000512049
0.000520885
0.000526094
0.000528265
0.000527432
0.000523818
0.000518297
0.000512455
0.000507776
0.000502917
0.000488156
0.000445939
0.000393117
0.000328768
0.000252288
0.000164444
7.24763e-05
1.24312e-05
2.91079e-06
7.56382e-06
8.13879e-06
2.66712e-05
4.23539e-05
7.07083e-05
0.000116537
0.000174119
0.00022989
0.000276124
0.000314025
0.000347479
0.000378769
0.000408156
0.000434884
0.000458061
0.000477054
0.000491592
0.000501804
0.000508237
0.00051163
0.000511987
0.000509436
0.000504716
0.000499256
0.000494526
0.000489855
0.00047743
0.000437023
0.000386182
0.000323924
0.000249566
0.00016367
7.29408e-05
1.27837e-05
2.98199e-06
7.56788e-06
7.65064e-06
2.30027e-05
3.57777e-05
5.99289e-05
0.000102183
0.000158493
0.000212896
0.000255666
0.000289181
0.000319169
0.000348751
0.000378144
0.000406131
0.000431246
0.00045237
0.000468933
0.000480958
0.000489011
0.000493967
0.000495793
0.000494562
0.000491044
0.000486872
0.00048387
0.000481274
0.00046868
0.000429414
0.000379446
0.00031779
0.00024382
0.000158375
6.89796e-05
1.16256e-05
2.81433e-06
7.56592e-06
7.57508e-06
2.1194e-05
3.16164e-05
5.20326e-05
9.12188e-05
0.000147417
0.000201489
0.000240559
0.000268493
0.00029351
0.000319953
0.000348237
0.000376764
0.000403422
0.000426467
0.000444931
0.000458679
0.000468244
0.000474699
0.000477952
0.000477912
0.000475122
0.000470927
0.000466984
0.000463372
0.000454167
0.000420533
0.000373085
0.000313989
0.000242474
0.000159043
7.04841e-05
1.22797e-05
2.9397e-06
7.54433e-06
7.4501e-06
1.9752e-05
2.79437e-05
4.41217e-05
7.86285e-05
0.000133757
0.000188939
0.00022661
0.000250365
0.000270285
0.0002923
0.000318052
0.000346216
0.000374002
0.000398885
0.000419391
0.000435146
0.000446558
0.000454869
0.000459904
0.00046142
0.000459883
0.000456735
0.000453939
0.000451967
0.000444776
0.000411703
0.000365213
0.000306827
0.000235829
0.00015301
6.60243e-05
1.09995e-05
2.75513e-06
7.49099e-06
7.68383e-06
1.99885e-05
2.64817e-05
3.86994e-05
6.79822e-05
0.000121577
0.000179073
0.000216916
0.000240528
0.000256807
0.000273563
0.000294585
0.000320101
0.00034742
0.000373056
0.000394829
0.000412001
0.000424716
0.000434509
0.000441142
0.00044414
0.000443625
0.000440595
0.000436683
0.000432901
0.000426192
0.000402801
0.000359178
0.000303707
0.000235449
0.000154722
6.8282e-05
1.1865e-05
2.90805e-06
7.40618e-06
7.9033e-06
2.09712e-05
2.58749e-05
3.35812e-05
5.39659e-05
9.88787e-05
0.000150772
0.000185697
0.000214658
0.000241953
0.000265942
0.000280691
0.000298924
0.000322265
0.000347124
0.000369606
0.000388081
0.000402124
0.000413489
0.000421868
0.000426589
0.000427603
0.000425901
0.000423345
0.000421238
0.000416165
0.000392218
0.00034941
0.000294622
0.000227043
0.000147323
6.30548e-05
1.04031e-05
2.68817e-06
7.29284e-06
8.55446e-06
2.43509e-05
2.84724e-05
3.31878e-05
4.5519e-05
7.89675e-05
0.000123715
0.000158689
0.000187863
0.000215047
0.000244987
0.000276067
0.000294824
0.000308816
0.000327763
0.000348666
0.000367335
0.00038183
0.000394093
0.00040373
0.00040983
0.000412017
0.00041083
0.0004076
0.000403712
0.000398537
0.000383988
0.000344261
0.0002927
0.000228109
0.000150486
6.63145e-05
1.15081e-05
2.86427e-06
7.16669e-06
9.14565e-06
2.83587e-05
3.31289e-05
3.58582e-05
4.12199e-05
5.94782e-05
9.30672e-05
0.000126949
0.000158078
0.000184871
0.000214567
0.000246324
0.000278553
0.000304925
0.000315388
0.000329166
0.000345501
0.000359855
0.000373092
0.000384224
0.000391968
0.000395679
0.000395824
0.000393998
0.000391991
0.000388442
0.000371147
0.000331836
0.000280658
0.000216746
0.000140639
5.97359e-05
9.77923e-06
2.605e-06
7.02065e-06
1.02825e-05
3.36572e-05
4.24744e-05
4.46188e-05
4.6152e-05
5.47207e-05
7.58108e-05
0.000103093
0.000135348
0.000163695
0.000191803
0.000222785
0.000255196
0.000287287
0.000317456
0.000325715
0.000333287
0.000343083
0.000355293
0.000367131
0.000376243
0.000381383
0.000382466
0.000380445
0.00037679
0.000371885
0.000361204
0.000328186
0.000280611
0.000219862
0.000145593
6.39595e-05
1.1044e-05
2.80472e-06
6.88026e-06
1.1564e-05
3.90741e-05
5.49331e-05
5.76376e-05
5.61473e-05
5.72764e-05
6.87732e-05
8.10662e-05
0.000107692
0.00013818
0.000165263
0.000194714
0.000226564
0.000259163
0.000290667
0.000319485
0.000329264
0.000329581
0.000336057
0.00034639
0.000356096
0.000362602
0.000365321
0.000365136
0.000363654
0.0003609
0.000348782
0.000312597
0.000264806
0.000204561
0.000132388
5.55924e-05
9.06209e-06
2.51933e-06
6.72691e-06
1.40846e-05
4.87179e-05
7.13341e-05
7.57885e-05
7.29203e-05
7.00075e-05
7.42744e-05
8.09606e-05
9.60862e-05
0.000123535
0.000152289
0.000178905
0.000208576
0.000240007
0.000271444
0.000301093
0.000327461
0.000333724
0.000331097
0.000334506
0.000341526
0.000347747
0.000350953
0.000350974
0.00034868
0.000344612
0.000335972
0.000310277
0.00026634
0.000209227
0.000138386
5.9935e-05
1.01778e-05
2.69125e-06
6.5475e-06
1.62244e-05
5.70822e-05
8.64525e-05
9.2574e-05
9.00595e-05
8.52064e-05
8.40049e-05
8.71281e-05
8.87298e-05
0.000106004
0.000132067
0.00015782
0.000184779
0.000214572
0.000245558
0.000275813
0.00030358
0.000327336
0.00032957
0.000324522
0.000324883
0.000328231
0.000330829
0.000331413
0.000330673
0.000328925
0.000321533
0.000291361
0.000247039
0.000190591
0.000122722
5.08027e-05
8.308e-06
2.40932e-06
6.25818e-06
2.00276e-05
6.93038e-05
9.9194e-05
0.000105218
0.000103861
0.000100825
0.000100721
0.000104064
0.000101259
0.00011163
0.000132765
0.000156381
0.00018
0.000206403
0.000234781
0.000263451
0.000290601
0.000314582
0.000333658
0.000329347
0.000321702
0.000319055
0.000318578
0.000317269
0.000314454
0.000310535
0.000304398
0.000288459
0.000247742
0.000193821
0.000126577
5.28947e-05
8.71792e-06
2.4665e-06
5.87639e-06
2.27926e-05
7.65616e-05
0.000103562
0.00010956
0.000110395
0.000111236
0.000114258
0.000110358
0.000105139
0.000109306
0.000124172
0.000143875
0.000164815
0.00018823
0.000214452
0.00024185
0.000268602
0.000292989
0.000313146
0.000327031
0.000317536
0.000309127
0.000304641
0.00030102
0.000296546
0.000291531
0.000285306
0.000268752
0.000228966
0.000177003
0.000113629
4.64231e-05
7.57729e-06
2.24923e-06
5.43149e-06
2.57293e-05
7.90482e-05
9.72071e-05
0.000103454
0.000108784
0.00011685
0.00012281
0.000119061
0.000119113
0.000125669
0.000138284
0.000154402
0.000172457
0.000192909
0.000215959
0.00024024
0.000264248
0.000286389
0.000304973
0.000319295
0.000317504
0.000308191
0.000301105
0.000295366
0.000288603
0.000280092
0.000269879
0.000255361
0.000224639
0.000174243
0.000111097
4.35104e-05
6.85558e-06
2.15362e-06
5.04337e-06
2.1254e-05
6.63531e-05
8.35704e-05
9.13239e-05
9.95645e-05
0.000111703
0.000116471
0.000114056
0.00011491
0.000120774
0.000131291
0.000144891
0.000160645
0.000179004
0.000200189
0.000222975
0.000245933
0.000267512
0.000286023
0.00030061
0.0003025
0.000295037
0.000288419
0.000283219
0.000277494
0.000270179
0.000260861
0.000246268
0.000213257
0.000166651
0.00010853
4.48552e-05
7.21619e-06
2.06296e-06
4.70673e-06
1.73043e-05
5.55678e-05
7.32347e-05
8.13776e-05
8.80228e-05
9.89655e-05
0.000115901
0.000119821
0.000124505
0.000132254
0.000142667
0.000155273
0.000170185
0.000187922
0.000207775
0.000228621
0.000249193
0.000268173
0.000284359
0.00029703
0.000296528
0.000289415
0.000283494
0.00027866
0.000272852
0.000264582
0.000252939
0.000235654
0.000204826
0.000157344
9.8511e-05
3.67221e-05
5.52689e-06
1.8491e-06
4.5334e-06
1.08383e-05
4.49382e-05
6.95276e-05
8.29035e-05
8.87803e-05
9.24822e-05
9.87824e-05
0.000109237
0.000113898
0.000116469
0.000122495
0.000131994
0.000144364
0.000159828
0.000178743
0.000199809
0.000221521
0.000242268
0.000260372
0.00027469
0.000274661
0.000269308
0.000264939
0.000261501
0.000257604
0.000252352
0.000244881
0.000231292
0.000198821
0.00015575
0.000102007
4.22895e-05
6.62365e-06
1.84431e-06
4.37848e-06
1.04254e-05
4.18237e-05
7.82399e-05
9.81374e-05
0.0001058
0.00010737
0.000107867
0.000111158
0.000119437
0.000130087
0.000134248
0.000141707
0.000152569
0.000166095
0.000181847
0.000199924
0.000219296
0.000238559
0.000255917
0.000269939
0.000277572
0.000271367
0.00026566
0.000261514
0.000256893
0.000250306
0.000239991
0.000220429
0.000185996
0.00014149
8.76773e-05
3.2363e-05
4.80428e-06
1.65616e-06
4.42862e-06
9.93597e-06
3.90536e-05
7.6833e-05
0.00010606
0.000124938
0.000135463
0.000134276
0.00013154
0.000131968
0.000135867
0.000132454
0.000129186
0.000128683
0.000132388
0.000140284
0.00015232
0.000169098
0.000189355
0.000210781
0.000230885
0.000247227
0.000247005
0.000242355
0.000238978
0.000235785
0.000231324
0.000224702
0.000213447
0.000189257
0.000147175
9.38053e-05
3.58821e-05
5.22926e-06
1.67991e-06
4.65719e-06
1.44039e-05
5.38973e-05
9.46472e-05
0.000122587
0.000140594
0.000148672
0.000149376
0.000147928
0.000146941
0.000147841
0.000152296
0.000161067
0.000166909
0.000169284
0.000174488
0.00018241
0.000192482
0.000204287
0.000217229
0.00022999
0.000240572
0.000247705
0.000250475
0.000248516
0.00024176
0.000230229
0.00021373
0.000191769
0.000163641
0.000128405
8.50338e-05
3.5425e-05
5.31944e-06
1.66353e-06
5.20981e-06
1.83999e-05
6.58524e-05
0.000111721
0.000142016
0.000154558
0.000163075
0.000169427
0.000172792
0.000174917
0.000178385
0.000181822
0.000178032
0.000172975
0.00016756
0.000163123
0.000161068
0.000162361
0.000167884
0.000178878
0.00019539
0.000215065
0.000234372
0.000249319
0.000258105
0.000252989
0.000239809
0.000221612
0.000198364
0.000170867
0.00013739
8.24248e-05
2.63139e-05
3.72254e-06
1.50338e-06
5.36971e-06
3.15303e-05
9.79417e-05
0.000129243
0.000139052
0.000149409
0.000160849
0.000169527
0.000173893
0.000175794
0.000178306
0.000183418
0.000191282
0.000200663
0.000209266
0.000207982
0.000205215
0.000201991
0.000198491
0.00019521
0.000192646
0.000190794
0.000188996
0.000186131
0.000181064
0.000172979
0.000161521
0.000146817
0.000129937
0.00011249
9.47196e-05
7.14689e-05
3.25e-05
4.47199e-06
1.52855e-06
5.15314e-06
2.84571e-05
7.86748e-05
8.90362e-05
0.000104623
0.00012488
0.000144662
0.000162379
0.000173885
0.000179668
0.000185661
0.00019207
0.000198977
0.000206356
0.000214139
0.000222284
0.000230795
0.000239691
0.000248904
0.000258223
0.000267306
0.000275861
0.000283751
0.00029099
0.000297424
0.000302218
0.000303242
0.000244203
0.000185888
0.000139837
0.00010104
5.45412e-05
1.04591e-05
1.53098e-06
6.60276e-07
4.32303e-06
5.32222e-05
5.42666e-05
6.51215e-05
8.88317e-05
0.000113926
0.000126272
0.000134823
0.000143658
0.000152412
0.000161094
0.000169669
0.000178072
0.000186229
0.000193944
0.000200899
0.00020658
0.000210706
0.000212605
0.000211642
0.000207378
0.000199591
0.000188218
0.000173353
0.000155198
0.000134061
0.000110463
8.53001e-05
6.01576e-05
3.69311e-05
1.83674e-05
6.56148e-06
1.49233e-06
3.42681e-07
1.07471e-07
3.45252e-06
2.30482e-05
2.8068e-05
3.41925e-05
3.35685e-05
3.6485e-05
3.93742e-05
4.37673e-05
5.11015e-05
5.3188e-05
5.32775e-05
5.36459e-05
5.41075e-05
5.46335e-05
5.49565e-05
5.50728e-05
5.47728e-05
5.4127e-05
5.29205e-05
5.11438e-05
4.86973e-05
4.5569e-05
4.17399e-05
3.7247e-05
3.21597e-05
2.66081e-05
2.07927e-05
1.49963e-05
9.59817e-06
5.05202e-06
1.87622e-06
3.72557e-07
3.02519e-07
4.1041e-07
2.332e-07
5.58678e-06
2.54367e-05
3.88932e-05
4.51826e-05
4.90481e-05
5.11021e-05
5.48347e-05
5.90567e-05
6.15728e-05
6.19062e-05
6.0972e-05
5.96166e-05
5.7997e-05
5.63018e-05
5.47223e-05
5.32323e-05
5.18403e-05
5.05586e-05
4.93712e-05
4.82791e-05
4.72583e-05
4.62921e-05
4.53717e-05
4.4525e-05
4.38201e-05
4.33257e-05
4.31081e-05
4.32093e-05
4.36635e-05
4.4791e-05
4.78691e-05
5.45519e-05
5.91213e-05
2.53951e-05
2.54834e-06
2.23882e-08
1.26338e-06
1.58104e-06
2.05215e-06
2.60934e-06
3.21427e-06
3.81908e-06
4.39448e-06
4.91628e-06
5.33875e-06
5.60626e-06
5.67009e-06
5.57367e-06
5.25303e-06
4.90356e-06
4.15495e-06
3.78055e-06
2.07652e-06
7.40936e-07
7.50751e-07
3.05459e-09
8.18826e-07
3.18773e-07
1.80775e-06
3.98389e-06
6.3518e-06
9.06842e-06
1.21941e-05
1.54273e-05
1.82631e-05
2.04459e-05
2.18416e-05
2.21e-05
5.72621e-06
1.15641e-07
6.40181e-08
1.82027e-07
5.43088e-07
1.66217e-06
3.48778e-06
5.49619e-06
7.22896e-06
8.51753e-06
9.41807e-06
9.95888e-06
1.00445e-05
9.90539e-06
1.00099e-05
1.06455e-05
1.17491e-05
1.30311e-05
1.42209e-05
1.50717e-05
1.56743e-05
1.6365e-05
1.60736e-05
1.53965e-05
1.39308e-05
1.23917e-05
1.07307e-05
5.63197e-06
4.4406e-06
1.26204e-05
2.06862e-05
4.06762e-05
7.31648e-05
8.43325e-05
3.64179e-05
1.29269e-05
9.22158e-07
5.85962e-07
8.37286e-07
3.21182e-06
1.08298e-05
2.15646e-05
2.90107e-05
3.633e-05
4.39999e-05
4.87531e-05
4.81132e-05
4.50765e-05
4.0531e-05
3.53361e-05
3.03124e-05
2.60846e-05
2.30146e-05
2.11436e-05
2.01549e-05
1.94294e-05
1.83825e-05
1.66057e-05
1.42627e-05
1.15308e-05
8.73324e-06
5.69732e-06
4.93353e-06
9.6795e-06
1.60297e-05
2.52005e-05
4.04403e-05
5.58481e-05
5.55091e-05
2.75427e-05
1.20554e-05
1.49027e-06
1.06025e-06
2.02843e-06
1.37899e-05
2.51866e-05
3.73897e-05
4.88433e-05
5.7863e-05
6.12365e-05
6.31058e-05
6.35825e-05
6.26989e-05
6.06524e-05
5.77152e-05
5.43103e-05
5.09671e-05
4.81639e-05
4.61822e-05
4.50277e-05
4.43936e-05
4.38379e-05
4.30122e-05
4.18804e-05
4.06944e-05
3.9865e-05
3.96748e-05
4.05351e-05
4.29669e-05
4.70066e-05
5.19212e-05
5.48371e-05
4.95772e-05
3.54446e-05
1.79331e-05
8.0934e-06
2.07547e-06
9.70406e-07
1.52499e-06
6.78818e-06
2.08526e-05
3.18283e-05
3.94048e-05
4.60992e-05
5.25238e-05
5.90783e-05
6.63763e-05
7.28866e-05
7.45341e-05
7.5355e-05
7.55623e-05
7.53781e-05
7.50244e-05
7.46896e-05
7.44696e-05
7.44102e-05
7.45203e-05
7.47609e-05
7.51442e-05
7.57534e-05
7.66886e-05
7.79669e-05
7.94288e-05
8.06641e-05
8.07323e-05
7.75313e-05
6.70547e-05
4.97348e-05
2.91711e-05
1.72191e-05
7.75996e-06
2.59461e-06
1.25716e-06
2.14307e-06
1.2515e-05
3.15525e-05
4.61284e-05
5.87954e-05
6.96877e-05
7.83177e-05
8.17574e-05
8.35007e-05
8.41254e-05
8.40594e-05
8.3625e-05
8.3096e-05
8.26392e-05
8.23798e-05
8.24017e-05
8.27229e-05
8.33984e-05
8.45591e-05
8.63219e-05
8.87939e-05
9.19582e-05
9.5589e-05
9.92824e-05
0.000102461
0.000104166
0.000102519
9.39791e-05
7.36789e-05
4.8333e-05
2.65356e-05
1.66763e-05
7.30991e-06
3.02782e-06
1.32604e-06
2.73192e-06
1.6045e-05
3.56062e-05
5.02836e-05
6.3043e-05
7.43278e-05
8.44351e-05
9.37672e-05
0.000102516
0.000109218
0.00011067
0.000110907
0.000110278
0.000109098
0.000107674
0.00010626
0.000105006
0.000104143
0.000103904
0.000104399
0.000105675
0.000107663
0.000110165
0.00011282
0.00011494
0.000115118
0.000110521
9.63168e-05
7.08658e-05
4.68854e-05
2.53088e-05
1.6961e-05
7.28219e-06
3.43869e-06
1.32212e-06
2.303e-06
1.2924e-05
3.33187e-05
5.00335e-05
6.59705e-05
8.14824e-05
9.58703e-05
0.00010611
0.000113085
0.000118066
0.000121413
0.000123447
0.000124474
0.000124773
0.000124599
0.000124155
0.000123538
0.000123067
0.000123068
0.00012359
0.000124574
0.000125923
0.000127496
0.000128975
0.000129594
0.000127663
0.000119885
0.00010113
7.26203e-05
4.52747e-05
2.54212e-05
1.77329e-05
7.57171e-06
3.76692e-06
1.4655e-06
3.20443e-06
1.90986e-05
4.23202e-05
5.9937e-05
7.63529e-05
9.30051e-05
0.000109804
0.000123914
0.000131733
0.0001375
0.000141496
0.000144
0.000145285
0.000145615
0.00014524
0.000144379
0.00014318
0.000142097
0.000141509
0.000141419
0.000141741
0.00014235
0.000142982
0.000143047
0.000141361
0.000135772
0.000122901
9.87958e-05
6.99674e-05
4.18698e-05
2.65548e-05
1.86889e-05
7.57108e-06
4.1135e-06
1.49391e-06
3.00859e-06
1.73548e-05
4.1532e-05
6.01551e-05
7.74713e-05
9.45657e-05
0.000111858
0.000128453
0.000138857
0.000146882
0.000153223
0.00015807
0.000161593
0.00016396
0.000165332
0.000165859
0.000165651
0.000165184
0.000164815
0.000164501
0.00016419
0.000163763
0.000162866
0.000160715
0.000155855
0.000145975
0.000128071
0.000100414
7.20669e-05
4.2855e-05
2.89821e-05
2.04851e-05
8.15063e-06
4.39994e-06
1.5707e-06
3.49938e-06
2.04242e-05
4.75287e-05
6.85512e-05
8.78723e-05
0.000107092
0.000125962
0.000141868
0.000152258
0.000160573
0.000167132
0.000172213
0.000176052
0.000178844
0.000180749
0.000181893
0.000182358
0.000182538
0.000182699
0.000182725
0.000182464
0.000181621
0.000179581
0.000175239
0.000166848
0.00015208
0.00012866
9.92953e-05
6.92576e-05
4.43913e-05
3.2127e-05
2.24331e-05
8.51045e-06
4.68594e-06
1.67002e-06
3.92394e-06
2.27126e-05
5.14933e-05
7.30288e-05
9.2839e-05
0.00011263
0.000132874
0.000152464
0.000166686
0.000176806
0.000185021
0.000191551
0.000196609
0.000200393
0.000203086
0.000204842
0.000205773
0.000206196
0.000206303
0.000205978
0.000205032
0.000203054
0.000199277
0.000192442
0.00018076
0.00016213
0.000134969
0.00010386
6.99135e-05
4.7264e-05
3.54803e-05
2.47535e-05
9.22713e-06
4.93264e-06
1.70716e-06
3.98231e-06
2.29428e-05
5.32547e-05
7.88769e-05
0.000100722
0.000121549
0.000142354
0.000162296
0.000176994
0.000188205
0.000197556
0.000205287
0.000211604
0.000216683
0.000220673
0.000223689
0.000225803
0.000227218
0.000228018
0.00022802
0.000226926
0.000224189
0.000218902
0.00020974
0.000195018
0.000173068
0.000143151
0.000108204
7.18893e-05
5.09422e-05
3.90388e-05
2.71588e-05
9.85634e-06
5.16566e-06
1.84644e-06
4.78592e-06
2.71814e-05
6.06801e-05
8.74659e-05
0.000109762
0.000130986
0.000152482
0.000174343
0.000194749
0.000208102
0.000218598
0.000227281
0.000234386
0.000240124
0.000244672
0.000248163
0.000250674
0.000252324
0.00025311
0.000252808
0.000251035
0.000247149
0.000240187
0.000228861
0.000211703
0.000187494
0.000156106
0.000110667
7.55897e-05
5.55041e-05
4.29022e-05
2.97896e-05
1.06804e-05
5.37402e-06
1.89026e-06
4.76998e-06
2.71605e-05
6.21851e-05
9.32039e-05
0.000117651
0.000139785
0.00016167
0.000183998
0.00020579
0.000223097
0.000235381
0.000245795
0.000254538
0.000261788
0.000267691
0.000272353
0.000275824
0.000278142
0.000279233
0.00027882
0.000276461
0.000271482
0.00026295
0.000249735
0.000230698
0.000205119
0.000161698
0.00011429
8.12446e-05
6.14104e-05
4.73729e-05
3.26371e-05
1.14149e-05
5.56526e-06
2.02497e-06
5.52531e-06
3.07011e-05
6.86103e-05
0.000102957
0.000128574
0.000151109
0.000173043
0.000195424
0.000218363
0.00024041
0.00025742
0.000269173
0.000279123
0.000287444
0.000294275
0.000299703
0.000303751
0.000306393
0.000307489
0.000306721
0.000303612
0.000297486
0.000287488
0.000272667
0.000252189
0.000218378
0.000165124
0.00011957
8.81771e-05
6.78136e-05
5.20545e-05
3.55918e-05
1.21062e-05
5.738e-06
2.10663e-06
5.66222e-06
3.15485e-05
7.16965e-05
0.000109589
0.000138686
0.000162639
0.000184953
0.000207219
0.000230152
0.00025361
0.000275712
0.000291534
0.00030331
0.000313284
0.000321556
0.000328175
0.000333126
0.000336332
0.000337605
0.000336604
0.000332846
0.000325695
0.000314401
0.000298197
0.00027516
0.000223427
0.000170058
0.000127116
9.64428e-05
7.47414e-05
5.70104e-05
3.87157e-05
1.27572e-05
5.89518e-06
2.2149e-06
6.22027e-06
3.40199e-05
7.67782e-05
0.000117685
0.000152707
0.000178497
0.00020075
0.000222139
0.000243894
0.000266493
0.00028961
0.000311672
0.000329391
0.000340851
0.000350436
0.000358152
0.00036394
0.000367669
0.000369101
0.000367869
0.000363479
0.000355322
0.000342713
0.000324985
0.000281039
0.000227454
0.000177167
0.000136223
0.000105313
8.18631e-05
6.20854e-05
4.19173e-05
1.33882e-05
6.04195e-06
2.32049e-06
6.56355e-06
3.56666e-05
8.08513e-05
0.000124507
0.000163556
0.0001945
0.000218268
0.000239655
0.000260692
0.000282197
0.000304357
0.000326805
0.000348468
0.000367234
0.00037934
0.000388376
0.000395177
0.000399555
0.000401223
0.000399775
0.000394696
0.000385372
0.000370221
0.000334116
0.000285842
0.000234241
0.000186461
0.000146422
0.000114662
8.93337e-05
6.74859e-05
4.53717e-05
1.40667e-05
6.17627e-06
2.39682e-06
6.9679e-06
3.7519e-05
8.50833e-05
0.000131747
0.00017407
0.000211467
0.000240794
0.000262532
0.000282262
0.000302157
0.000322749
0.000343846
0.0003648
0.000384618
0.000402122
0.000416171
0.000425619
0.000430559
0.000432381
0.000430623
0.000424642
0.000407909
0.000379448
0.000339708
0.000292245
0.000242761
0.000196561
0.000156747
0.00012391
9.67592e-05
7.29408e-05
4.89144e-05
1.46954e-05
6.3028e-06
2.50076e-06
7.43966e-06
3.95611e-05
8.93421e-05
0.000138413
0.000183232
0.000223275
0.000258645
0.000285641
0.000306098
0.000325149
0.000344591
0.000364687
0.000384966
0.000404568
0.00042246
0.000437608
0.000449127
0.000456282
0.000458344
0.000454296
0.000442563
0.000421303
0.00038952
0.000348374
0.000301365
0.000253119
0.000207704
0.000167582
0.000133406
0.00010436
7.85875e-05
5.26588e-05
1.53677e-05
6.42322e-06
2.56161e-06
7.81153e-06
4.13889e-05
9.35531e-05
0.000145464
0.000193184
0.000236023
0.000274063
0.000307597
0.00033315
0.000351586
0.000369153
0.00038772
0.00040708
0.00042629
0.000444194
0.000459594
0.000471336
0.000478319
0.000479423
0.000473353
0.000458641
0.000434184
0.000400072
0.000358124
0.000311601
0.000264253
0.00021928
0.000178694
0.000143171
0.00011225
8.45104e-05
5.66307e-05
1.60825e-05
6.53379e-06
2.66271e-06
8.3791e-06
4.37797e-05
9.82589e-05
0.000152606
0.00020278
0.000248044
0.000288451
0.000324284
0.000355898
0.000377252
0.000394186
0.000411328
0.000429535
0.000448073
0.000465663
0.000480896
0.000492367
0.000498676
0.000498433
0.000490276
0.000473078
0.000446395
0.000410942
0.000368718
0.000322632
0.000275802
0.000230888
0.000189657
0.000152841
0.000120223
9.06739e-05
6.08759e-05
1.68004e-05
6.63155e-06
2.73659e-06
8.83555e-06
4.59246e-05
0.000102945
0.000160127
0.000213095
0.000260972
0.000303756
0.000341715
0.000375194
0.000402173
0.000419478
0.000435055
0.000451694
0.000469185
0.000486133
0.00050085
0.000511657
0.000516948
0.000515228
0.000505223
0.000486133
0.000457979
0.000421821
0.00037966
0.000334058
0.000287619
0.000242579
0.000200541
0.000162352
0.000128068
9.68196e-05
6.51986e-05
1.74546e-05
6.72247e-06
2.84929e-06
9.49726e-06
4.86008e-05
0.000108113
0.000167877
0.000223407
0.000273753
0.000318851
0.000358913
0.000394241
0.000423819
0.000441714
0.000456646
0.000472165
0.000488552
0.00050458
0.000518488
0.000528427
0.000532644
0.000529593
0.000518116
0.000497696
0.000468674
0.000432287
0.000390469
0.00034547
0.000299486
0.000254385
0.000211598
0.000172057
0.00013613
0.00010327
6.99171e-05
1.8207e-05
6.8082e-06
2.95518e-06
1.00951e-05
5.11145e-05
0.00011325
0.000175758
0.000233923
0.00028672
0.000334045
0.000376083
0.00041311
0.000444195
0.000462279
0.000476633
0.000491204
0.000506531
0.000521516
0.000534414
0.000543313
0.000546385
0.000542094
0.000529409
0.000508024
0.000478474
0.000442065
0.000400631
0.000356193
0.000310655
0.000265624
0.000222349
0.000181735
0.000144316
0.000109833
7.46784e-05
1.8894e-05
6.88274e-06
3.08053e-06
1.08026e-05
5.38514e-05
0.000118555
0.000183703
0.000244421
0.000299611
0.00034912
0.000393085
0.000431738
0.00046301
0.000480917
0.000494855
0.000508774
0.00052326
0.000537281
0.000549132
0.000556921
0.000558845
0.000553439
0.000539794
0.00051775
0.00048794
0.000451665
0.000410634
0.000366664
0.000321437
0.00027637
0.000232587
0.000190988
0.000152299
0.000116598
8.00219e-05
1.96412e-05
6.94025e-06
3.20642e-06
1.145e-05
5.63582e-05
0.000123579
0.000191339
0.000254545
0.000312027
0.000363603
0.000409384
0.00044957
0.000481097
0.000498517
0.000511829
0.000525068
0.000538764
0.000551852
0.000562644
0.000569304
0.000570112
0.000563706
0.000549298
0.000526826
0.000496967
0.000460974
0.000420415
0.000376908
0.000331933
0.000286776
0.000242545
0.000200248
0.000160701
0.000123605
8.31313e-05
2.02597e-05
6.98798e-06
3.33046e-06
1.20998e-05
5.88115e-05
0.000128463
0.000198784
0.000264454
0.000324214
0.000377839
0.00042541
0.000467103
0.000499682
0.00051647
0.00052875
0.000540987
0.00055373
0.000565825
0.000575544
0.000581078
0.000580801
0.000573466
0.000558391
0.000535581
0.000505713
0.000469977
0.00042982
0.000386704
0.00034196
0.000296773
0.000252257
0.0002095
0.000169304
0.000130737
8.58466e-05
2.0824e-05
7.03864e-06
3.45546e-06
1.27214e-05
6.11465e-05
0.000133114
0.000205859
0.000273847
0.000335743
0.000391289
0.000440553
0.000483697
0.000518695
0.000535061
0.000546076
0.000557066
0.000568737
0.000579838
0.000588536
0.000593011
0.000591712
0.000583506
0.000567809
0.000544663
0.000514721
0.000479093
0.000439125
0.000396182
0.000351516
0.000306271
0.00026156
0.000218496
0.000177761
0.00013772
8.83614e-05
2.13192e-05
7.09129e-06
3.56835e-06
1.33347e-05
6.34817e-05
0.000137786
0.000213011
0.000283363
0.000347408
0.000404852
0.000455756
0.000500284
0.000538634
0.000554979
0.00056438
0.00057373
0.000584073
0.000594077
0.000601762
0.000605243
0.000603009
0.000594026
0.00057779
0.000554372
0.000524375
0.000488809
0.000448911
0.000405958
0.000361167
0.000315687
0.00027067
0.000227243
0.000185941
0.000144417
9.06979e-05
2.17501e-05
7.13822e-06
3.69093e-06
1.3992e-05
6.59229e-05
0.000142501
0.000220075
0.000292659
0.000358736
0.000417976
0.000470423
0.000516236
0.000555587
0.000574462
0.000582773
0.000590358
0.000599239
0.000608098
0.000614784
0.000617328
0.000614245
0.000604584
0.000587921
0.000564347
0.000534414
0.000499025
0.000459285
0.000416364
0.000371423
0.000325618
0.000280155
0.000236206
0.000194196
0.000151097
9.30605e-05
2.21872e-05
7.17099e-06
3.80559e-06
1.46219e-05
6.83034e-05
0.000147188
0.000227172
0.000302038
0.000370165
0.000431181
0.000485116
0.000532129
0.0005724
0.000593187
0.000600687
0.000606593
0.000613905
0.000621516
0.000627169
0.000628791
0.00062489
0.000614586
0.000597527
0.000573837
0.000544034
0.000508928
0.000469497
0.000426789
0.000381879
0.000335895
0.000290076
0.000245638
0.000202901
0.000158121
9.54719e-05
2.26411e-05
7.18384e-06
3.93997e-06
1.53514e-05
7.09376e-05
0.000152102
0.000234349
0.000311326
0.000381348
0.000444014
0.00049934
0.000547478
0.000588605
0.000610043
0.000617012
0.000621756
0.000627797
0.000634265
0.000638922
0.000639645
0.000634941
0.00062398
0.000606479
0.000582598
0.000552845
0.000517969
0.000478854
0.000436446
0.000391727
0.00034578
0.000299848
0.000255175
0.000211929
0.000165484
9.76995e-05
2.30277e-05
7.18091e-06
4.07103e-06
1.60885e-05
7.36255e-05
0.000157142
0.000241701
0.000320792
0.00039267
0.000456913
0.000513534
0.000562686
0.000604551
0.000625625
0.00063203
0.000635932
0.00064101
0.000646532
0.000650311
0.000650222
0.00064478
0.000633194
0.000615232
0.000591088
0.000561262
0.000526465
0.000487522
0.000445312
0.000400761
0.000354917
0.000309028
0.000264344
0.000220843
0.000172873
9.97102e-05
2.33403e-05
7.17224e-06
4.21859e-06
1.68755e-05
7.63714e-05
0.000162137
0.000248852
0.000329904
0.000403512
0.000469233
0.00052707
0.000577172
0.000619719
0.000639399
0.000645222
0.000648718
0.000653297
0.000658208
0.000661324
0.000660577
0.000654529
0.000642438
0.000624111
0.000599756
0.000569855
0.000535074
0.000496184
0.000454022
0.000409498
0.000363673
0.000317829
0.000273226
0.000229621
0.000180269
0.000101718
2.36631e-05
7.16073e-06
4.36132e-06
1.76288e-05
7.89964e-05
0.000166968
0.000255812
0.000338781
0.000414053
0.000481173
0.000540143
0.000591112
0.000634259
0.000651855
0.00065691
0.000660174
0.000664543
0.000669107
0.000671757
0.000670501
0.000663977
0.000651505
0.00063293
0.000608468
0.000578575
0.000543857
0.000505022
0.000462862
0.000418278
0.000372354
0.000326441
0.00028189
0.000238351
0.00018787
0.000103842
2.40186e-05
7.14663e-06
4.51152e-06
1.84014e-05
8.15824e-05
0.000171608
0.000262404
0.00034713
0.000423932
0.000492348
0.000552378
0.000604168
0.000647894
0.000663319
0.000667559
0.00067066
0.000674969
0.000679344
0.000681657
0.000679983
0.000673045
0.000660238
0.000641456
0.000616933
0.000587101
0.000552506
0.000513777
0.000471636
0.000426971
0.000380958
0.000335135
0.000290913
0.000247095
0.000192514
0.000105835
2.43948e-05
7.1313e-06
4.64982e-06
1.91317e-05
8.40285e-05
0.000176017
0.000268688
0.000355084
0.000433322
0.000502942
0.000563948
0.000616496
0.000660768
0.000674743
0.000678167
0.000680952
0.00068511
0.000689294
0.000691312
0.000689264
0.000681931
0.000668778
0.000649754
0.000625123
0.000595307
0.000560801
0.000522158
0.000480043
0.000435351
0.000389378
0.000343822
0.000300009
0.000255702
0.000196841
0.000107699
2.47661e-05
7.11339e-06
4.7838e-06
1.98305e-05
8.63239e-05
0.000180097
0.00027447
0.000362393
0.000441955
0.000512691
0.000574615
0.000627891
0.000672707
0.000686196
0.000688911
0.000691229
0.000695135
0.000699132
0.000700916
0.000698554
0.000690863
0.000677366
0.000658073
0.000633281
0.000603412
0.000568926
0.00053032
0.000488222
0.000443554
0.000397722
0.000352531
0.000309133
0.000264222
0.000201062
0.000109524
2.51413e-05
7.08641e-06
4.90596e-06
2.0506e-05
8.85604e-05
0.000184051
0.000280037
0.000369381
0.000450154
0.000521902
0.000584652
0.000638585
0.000683908
0.000698027
0.000700099
0.000701715
0.000705208
0.000708985
0.000710567
0.000707934
0.000699907
0.000686064
0.000666471
0.000641467
0.000611481
0.000576955
0.00053835
0.000496273
0.000451677
0.000406052
0.000361274
0.000318279
0.000272677
0.000205142
0.000111301
2.55042e-05
7.04724e-06
5.02323e-06
2.11847e-05
9.07928e-05
0.000187934
0.000285423
0.000376062
0.000457918
0.000530555
0.000594028
0.000648546
0.000694336
0.000710005
0.000711735
0.000712672
0.00071571
0.000719241
0.000720615
0.000717705
0.000709326
0.000695094
0.000675128
0.000649811
0.000619598
0.000584931
0.000546258
0.000504181
0.000459678
0.000414307
0.000369979
0.000327389
0.000281031
0.000208989
0.000112941
2.58188e-05
6.99536e-06
5.13136e-06
2.18861e-05
9.31496e-05
0.000191983
0.000290927
0.00038275
0.000465548
0.000538922
0.000602973
0.000657946
0.000704107
0.000721641
0.000723244
0.000723716
0.000726518
0.000729998
0.00073132
0.000728212
0.000719471
0.000704782
0.000684342
0.000658583
0.000627993
0.00059303
0.000554158
0.000511992
0.000467547
0.000422429
0.000378564
0.000336377
0.000289207
0.000212538
0.000114387
2.60674e-05
6.93144e-06
5.23452e-06
2.26269e-05
9.56052e-05
0.00019609
0.000296407
0.000389321
0.000472954
0.000546952
0.000611458
0.000666767
0.000713189
0.000732048
0.000733664
0.00073406
0.000737008
0.000740752
0.000742286
0.000739233
0.000730339
0.000715301
0.000694376
0.000668075
0.000636958
0.000601537
0.000562303
0.000519907
0.000475419
0.00043051
0.000387105
0.000345328
0.000297294
0.000215836
0.000115685
2.627e-05
6.85711e-06
5.33e-06
2.33465e-05
9.80099e-05
0.00020013
0.000301806
0.000395781
0.000480197
0.000554739
0.000619596
0.000675116
0.000721661
0.000740231
0.00074183
0.000742714
0.0007464
0.000750829
0.000752829
0.000750003
0.000741149
0.000726009
0.000704849
0.000678173
0.000646554
0.000610574
0.000570839
0.000528095
0.000483479
0.000438715
0.000395719
0.000354321
0.000305345
0.000218886
0.000116834
2.64318e-05
6.77585e-06
5.4197e-06
2.40215e-05
0.000100276
0.000203969
0.00030697
0.000401981
0.000487152
0.000562196
0.000627344
0.000682992
0.000729553
0.000746312
0.000747673
0.000749354
0.000754163
0.000759606
0.000762339
0.000759948
0.000751287
0.000736168
0.000714915
0.000688064
0.000656179
0.000619814
0.0005796
0.00053641
0.000491578
0.000447036
0.000404718
0.000363564
0.00031119
0.000221654
0.000117862
2.65672e-05
6.69184e-06
5.50196e-06
2.47125e-05
0.000102584
0.000207833
0.000312123
0.000408129
0.000494009
0.000569504
0.000634883
0.000690584
0.000737072
0.000751069
0.000752001
0.000754523
0.000760473
0.000766929
0.00077046
0.000768679
0.000760451
0.000745575
0.000724367
0.000697392
0.000665271
0.000628617
0.000588096
0.000544668
0.000499881
0.00045589
0.0004144
0.000372814
0.000315173
0.000223951
0.000118654
2.6658e-05
6.60783e-06
5.57628e-06
2.53587e-05
0.000104738
0.000211452
0.000316975
0.00041395
0.000500531
0.000576473
0.000642072
0.000697809
0.000744194
0.000754591
0.00075516
0.000758597
0.000765605
0.000772961
0.000777244
0.000776114
0.000768457
0.000754051
0.000733158
0.000706273
0.000673999
0.000637025
0.000596197
0.000552699
0.000508266
0.000465092
0.000424463
0.000382165
0.00031891
0.000226005
0.000119312
2.67236e-05
6.52579e-06
5.64406e-06
2.59937e-05
0.000106826
0.00021493
0.000321623
0.000419523
0.000506779
0.000583152
0.000648954
0.00070469
0.000749346
0.000757022
0.000757706
0.000761955
0.000769833
0.000777953
0.000782903
0.0007824
0.000775368
0.000761568
0.000741189
0.000714635
0.000682438
0.000645293
0.000604186
0.000560581
0.000516525
0.000474303
0.00043465
0.000391566
0.00032244
0.000227894
0.000119893
2.67788e-05
6.44969e-06
5.70706e-06
2.65533e-05
0.000108658
0.000218015
0.000325791
0.000424572
0.000512493
0.000589311
0.000655338
0.000711091
0.000751675
0.000758165
0.000759262
0.000764423
0.000773167
0.000781964
0.000787468
0.000787518
0.000781117
0.000768021
0.000748338
0.000722353
0.000690494
0.000653428
0.000612235
0.000568604
0.000524881
0.000483517
0.000444813
0.000400953
0.000325801
0.000229686
0.000120459
2.68439e-05
6.37951e-06
5.76874e-06
2.70553e-05
0.000110285
0.000220778
0.000329552
0.000429156
0.00051771
0.000594961
0.000661221
0.000717004
0.000752645
0.000757975
0.000759755
0.000766021
0.000775668
0.000785054
0.000790968
0.000791435
0.000785585
0.000773199
0.000754322
0.000729109
0.000697857
0.000661154
0.000620126
0.000576642
0.0005333
0.000492686
0.000454742
0.000409951
0.000328777
0.000231159
0.000120808
2.68446e-05
6.3155e-06
5.83146e-06
2.74962e-05
0.000111708
0.00022323
0.00033292
0.000433285
0.000522427
0.000600088
0.000666575
0.000722396
0.000752338
0.000756566
0.000759283
0.000766819
0.000777389
0.000787277
0.000793455
0.000794177
0.000788735
0.000776977
0.000758917
0.000734614
0.000704224
0.000668213
0.000627664
0.000584566
0.000541802
0.000502122
0.000464557
0.000415914
0.000331468
0.000232512
0.000121127
2.68444e-05
6.26252e-06
5.89527e-06
2.79077e-05
0.00011303
0.00022553
0.000336083
0.000437153
0.000526832
0.000604859
0.000671545
0.000727393
0.000751241
0.000754442
0.000758227
0.000767069
0.000778491
0.000788743
0.000795011
0.000795792
0.000790549
0.00077922
0.000761835
0.000738403
0.000708978
0.000673911
0.000634245
0.000592081
0.000550483
0.000511961
0.000473897
0.000419246
0.000333635
0.000233611
0.000121397
2.68458e-05
6.22209e-06
5.95981e-06
2.82678e-05
0.000114212
0.000227633
0.000338995
0.000440716
0.000530885
0.000609248
0.000676116
0.000731999
0.000750034
0.00075237
0.000757245
0.000767289
0.000779403
0.000789855
0.000796062
0.00079673
0.000791468
0.000780298
0.000763293
0.00074047
0.000711857
0.000677773
0.000639253
0.000598444
0.000558386
0.00052112
0.000482407
0.000422044
0.000335241
0.000234237
0.000121369
2.67762e-05
6.19064e-06
6.02719e-06
2.85877e-05
0.000115279
0.000229564
0.000341689
0.000444025
0.000534649
0.000613314
0.000680347
0.000736276
0.00074893
0.000750794
0.000756768
0.00076778
0.000780363
0.000790908
0.000797011
0.000797516
0.000792124
0.000780923
0.000764034
0.000741511
0.000713417
0.000680104
0.000642648
0.000603208
0.000564706
0.000528663
0.000489452
0.000424421
0.000336388
0.000234398
0.000120975
2.66014e-05
6.1662e-06
6.10138e-06
2.89608e-05
0.000116427
0.000231529
0.000344359
0.000447249
0.000538269
0.00061717
0.000684287
0.000737344
0.000747499
0.000749853
0.000756747
0.000768435
0.000781363
0.000792002
0.000798047
0.000798432
0.00079292
0.00078164
0.000764751
0.000742347
0.000714548
0.000681771
0.000645145
0.000606814
0.000569539
0.000534392
0.000494801
0.000426678
0.000337407
0.000234385
0.000120405
2.63693e-05
6.14693e-06
6.17854e-06
2.92849e-05
0.000117419
0.000233287
0.000346805
0.000450252
0.000541675
0.00062082
0.000688022
0.000736932
0.00074622
0.0007491
0.00075678
0.000769083
0.000782373
0.00079316
0.000799222
0.000799561
0.000793993
0.000782677
0.000765796
0.000743482
0.000715913
0.000683577
0.000647646
0.000610214
0.000573844
0.000539223
0.000499205
0.000429157
0.000338641
0.000234519
0.000119906
2.61503e-05
6.12968e-06
6.25963e-06
2.95803e-05
0.00011829
0.00023484
0.000348991
0.000452965
0.000544786
0.000624189
0.000691501
0.000736797
0.000745351
0.000748688
0.000757003
0.000769784
0.000783355
0.000794279
0.000800394
0.000800748
0.000795183
0.000783881
0.00076705
0.000744859
0.000717549
0.000685683
0.000650472
0.000613958
0.000578481
0.000544317
0.000503802
0.000432058
0.000340252
0.000234936
0.000119576
2.59723e-05
6.10687e-06
6.34143e-06
2.98428e-05
0.000119028
0.000236153
0.00035085
0.000455297
0.000547497
0.000627169
0.000694627
0.000736931
0.00074488
0.0007486
0.000757446
0.000770607
0.000784378
0.000795388
0.000801542
0.000801928
0.000796404
0.000785159
0.000768415
0.000746384
0.000719375
0.000688036
0.000653651
0.00061824
0.000583935
0.00055053
0.000509578
0.000435539
0.000342391
0.000235781
0.000119528
2.58671e-05
6.07354e-06
6.42412e-06
3.00921e-05
0.000119673
0.000237241
0.000352357
0.000457188
0.000549724
0.000629663
0.000697301
0.000737218
0.000744698
0.000748733
0.000757998
0.000771449
0.000785367
0.000796435
0.000802615
0.000803032
0.000797557
0.000786382
0.000769737
0.000747869
0.000721161
0.000690369
0.00065689
0.000622803
0.000590097
0.000558016
0.000516898
0.000439576
0.000345061
0.000237061
0.00011976
2.58324e-05
6.03015e-06
6.50408e-06
3.02829e-05
0.000120124
0.000238001
0.000353421
0.000458552
0.000551378
0.000631583
0.000699439
0.000737863
0.000745058
0.000749327
0.000758882
0.000772514
0.0007865
0.000797574
0.000803751
0.000804182
0.000798745
0.000787627
0.000771055
0.000749296
0.000722803
0.000692461
0.000659825
0.000627113
0.000596308
0.000566159
0.000525361
0.000443957
0.000348142
0.00023873
0.000120253
2.58654e-05
5.98041e-06
6.58214e-06
3.0484e-05
0.000120578
0.000238685
0.000354295
0.000459613
0.000552641
0.000633063
0.000701136
0.00073891
0.000746054
0.00075052
0.00076027
0.000773997
0.000787977
0.000798991
0.000805101
0.000805494
0.000800055
0.000788961
0.000772425
0.000750711
0.000724315
0.000694255
0.000662337
0.000631052
0.000602361
0.000573898
0.000530997
0.000448184
0.000351315
0.000240606
0.000120919
2.59435e-05
5.92902e-06
6.65377e-06
3.06482e-05
0.000120944
0.000239218
0.000354944
0.000460369
0.000553528
0.000634119
0.000702394
0.000740197
0.000747516
0.00075222
0.000762166
0.000775986
0.000789944
0.00080085
0.000806821
0.000807089
0.00080156
0.000790412
0.000773833
0.000752075
0.000725656
0.000695706
0.000664273
0.000634144
0.000607243
0.000580114
0.000535124
0.000451876
0.000354219
0.000242407
0.000121585
2.60258e-05
5.8809e-06
6.72216e-06
3.0832e-05
0.000121383
0.000239839
0.000355649
0.000461112
0.000554314
0.000634985
0.000703395
0.000741555
0.000749223
0.000754282
0.000764532
0.000778539
0.000792534
0.000803349
0.00080915
0.000809227
0.000803525
0.000792231
0.000775522
0.000753624
0.000727054
0.000696999
0.000665667
0.000636082
0.000610292
0.000584278
0.000538318
0.000454843
0.00035665
0.00024397
0.000122157
2.60921e-05
5.83929e-06
6.78435e-06
3.10381e-05
0.00012191
0.000240579
0.000356468
0.000461932
0.000555114
0.000635787
0.000704251
0.000742612
0.000750703
0.000756282
0.000767019
0.000781378
0.000795536
0.00080633
0.000811979
0.000811837
0.000805905
0.000794397
0.000777485
0.000755375
0.000728557
0.000698219
0.000666631
0.000636977
0.000611523
0.000586248
0.000540444
0.000456891
0.00035839
0.000245109
0.000122533
2.61167e-05
5.80378e-06
6.84355e-06
3.12347e-05
0.000122416
0.000241285
0.000357245
0.000462701
0.00055584
0.000636475
0.000704939
0.000743221
0.00075175
0.000758011
0.00076945
0.000784372
0.000798872
0.000809778
0.000815354
0.00081502
0.00080884
0.000797066
0.000779884
0.000757488
0.000730334
0.000699563
0.000667426
0.000637182
0.000611346
0.000586329
0.000541614
0.000458059
0.000359417
0.000245781
0.000122696
2.61001e-05
5.77181e-06
6.90448e-06
3.14708e-05
0.000123024
0.0002421
0.000358108
0.000463522
0.000556577
0.00063712
0.000705515
0.000742902
0.000751825
0.000759002
0.00077141
0.000787128
0.000802175
0.000813381
0.000819057
0.00081868
0.00081236
0.000800384
0.00078296
0.000760281
0.000732774
0.000701516
0.000668672
0.000637483
0.000610677
0.000585339
0.000542015
0.000458451
0.00035977
0.000245994
0.000122655
2.60454e-05
5.73954e-06
6.96703e-06
3.17131e-05
0.00012363
0.000242882
0.000358896
0.000464224
0.000557154
0.000637566
0.000705845
0.000741384
0.000750609
0.000758922
0.000772527
0.000789205
0.000804923
0.000816561
0.000822497
0.000822259
0.000815988
0.000803989
0.000786481
0.00076366
0.000735931
0.000704308
0.000670845
0.000638684
0.000610657
0.000584462
0.000541995
0.0004583
0.000359588
0.000245821
0.000122458
2.5964e-05
5.70326e-06
7.02856e-06
3.19352e-05
0.000124167
0.000243545
0.000359515
0.000464708
0.000557466
0.000637705
0.000705828
0.000738884
0.000748333
0.000757955
0.000772941
0.000790686
0.00080712
0.000819224
0.000825483
0.000825489
0.000819406
0.000807543
0.000790122
0.000767341
0.000739597
0.000707857
0.000674071
0.000641236
0.000612122
0.00058473
0.000542013
0.000457971
0.000359108
0.000245372
0.000122134
2.58581e-05
5.65987e-06
7.08727e-06
3.21074e-05
0.00012457
0.00024403
0.00035992
0.000464938
0.000557478
0.000637495
0.000705417
0.000735392
0.000745041
0.000756166
0.000772708
0.000791605
0.00080878
0.000821364
0.000827983
0.000828306
0.000822516
0.00081092
0.000793741
0.000771184
0.000743652
0.000712092
0.000678397
0.000645433
0.000615743
0.000587068
0.00054257
0.000457954
0.000358759
0.000244965
0.000121864
2.57703e-05
5.6103e-06
7.14443e-06
3.22797e-05
0.000124973
0.000244526
0.00036033
0.000465143
0.000557415
0.000637149
0.000704804
0.000731034
0.000740899
0.000753687
0.000771858
0.000791888
0.000809757
0.000822797
0.000829786
0.000830466
0.000825035
0.000813792
0.000796962
0.00077477
0.000747662
0.00071665
0.000683649
0.000651382
0.000621893
0.000591977
0.000543928
0.000458515
0.000358766
0.000244747
0.00012171
2.57118e-05
5.55474e-06
7.20256e-06
3.24283e-05
0.000125324
0.00024497
0.000360691
0.000465285
0.000557258
0.000636664
0.000704012
0.000725649
0.000735944
0.000750633
0.00077044
0.000791504
0.000809985
0.000823439
0.000830783
0.000831814
0.000826746
0.000815879
0.000799451
0.000777735
0.000751271
0.000721195
0.000689486
0.000658691
0.00063015
0.000599169
0.000546129
0.000459739
0.000359207
0.00024473
0.000121618
2.56591e-05
5.49471e-06
7.26535e-06
3.25455e-05
0.000125605
0.000245367
0.000361025
0.000465392
0.000557012
0.000635987
0.000699907
0.000719163
0.000730813
0.000747316
0.00076851
0.000790485
0.000809547
0.000823403
0.000831081
0.00083244
0.000827716
0.000817215
0.0008012
0.000780015
0.000754336
0.000725465
0.000695491
0.000666787
0.000639878
0.000608146
0.000549163
0.000461725
0.000360252
0.000245087
0.000121682
2.56352e-05
5.43526e-06
7.33367e-06
3.2666e-05
0.000125905
0.000245819
0.000361442
0.000465588
0.000556835
0.000635318
0.000693431
0.00071208
0.000725224
0.00074347
0.000766015
0.000788879
0.000808501
0.000822745
0.000830748
0.000832426
0.000828028
0.00081787
0.000802245
0.000781583
0.000756715
0.000729162
0.00070118
0.000675026
0.000650362
0.000618309
0.000552863
0.00046443
0.00036197
0.000245951
0.00012201
2.56714e-05
5.38044e-06
7.39829e-06
3.26838e-05
0.000125953
0.000245988
0.000361613
0.000465592
0.000556515
0.000634537
0.000687073
0.000704975
0.000719413
0.000739232
0.000762996
0.000786658
0.000806787
0.000821393
0.000829715
0.00083171
0.000827633
0.000817797
0.000802521
0.00078232
0.000758196
0.000731909
0.000705937
0.000682504
0.000660479
0.00062858
0.000556719
0.000467411
0.000363986
0.000247027
0.000122402
2.57089e-05
5.33038e-06
7.45478e-06
3.2623e-05
0.000125796
0.000245898
0.000361533
0.000465397
0.000556063
0.000633701
0.000681976
0.000699059
0.000714299
0.000735241
0.000759915
0.000784181
0.000804696
0.000819593
0.000828191
0.000830474
0.00082669
0.000817136
0.000802141
0.000782285
0.000758733
0.00073352
0.000709452
0.000688813
0.000669432
0.000636564
0.00056042
0.000470453
0.000366168
0.00024825
0.000122838
2.5748e-05
5.28323e-06
7.49955e-06
3.25341e-05
0.00012556
0.00024566
0.00036129
0.00046508
0.000555575
0.000632934
0.000678556
0.00069485
0.000710363
0.000731885
0.00075707
0.000781683
0.000802431
0.000817528
0.000826348
0.000828884
0.000825358
0.000816034
0.000801227
0.000781582
0.000758452
0.0007342
0.000711951
0.000693817
0.000676
0.00063967
0.000563491
0.000473216
0.000368324
0.000249569
0.000123349
2.58117e-05
5.2392e-06
7.53107e-06
3.23477e-05
0.000125037
0.000244974
0.000360544
0.000464308
0.000554757
0.000632011
0.000676708
0.000692435
0.000707792
0.000729362
0.00075463
0.0007793
0.000800099
0.000815289
0.000824269
0.000827024
0.000823737
0.000814623
0.000799964
0.000780427
0.000757498
0.000733799
0.000712737
0.000696398
0.000679975
0.000641809
0.000565805
0.000475475
0.000370218
0.000250794
0.000123825
2.58695e-05
5.20001e-06
7.55574e-06
3.21821e-05
0.000124513
0.000244151
0.000359536
0.000463227
0.000553669
0.000630934
0.000676028
0.000691566
0.00070659
0.000727859
0.000752882
0.000777356
0.000798023
0.000813172
0.000822216
0.000825127
0.000822049
0.000813139
0.000798619
0.000779124
0.000756182
0.000732569
0.000711944
0.000696574
0.000681316
0.000642857
0.000567214
0.000477072
0.000371715
0.000251854
0.000124257
2.59252e-05
5.16772e-06
7.58033e-06
3.20524e-05
0.000124031
0.000243248
0.000358302
0.000461816
0.000552224
0.000629547
0.000675444
0.00069125
0.000706123
0.00072706
0.000751703
0.000775819
0.000796196
0.00081116
0.000820146
0.000823124
0.000820204
0.000811485
0.000797107
0.000777624
0.000754507
0.000730569
0.000709665
0.000694416
0.000680015
0.000642755
0.000567594
0.000477833
0.000372627
0.000252586
0.000124547
2.59632e-05
5.1431e-06
7.61058e-06
3.19791e-05
0.000123661
0.000242383
0.000356966
0.000460168
0.000550446
0.000627793
0.000674163
0.000690666
0.000705867
0.00072676
0.000751114
0.000774826
0.000794791
0.000809418
0.000818194
0.000821107
0.000818256
0.000809689
0.000795461
0.000776001
0.000752633
0.000728066
0.000706236
0.000690227
0.000676182
0.000641435
0.000566765
0.000477473
0.000372602
0.000252642
0.000124448
2.59031e-05
5.12151e-06
7.64501e-06
3.19061e-05
0.000123272
0.000241445
0.000355461
0.000458229
0.000548262
0.000625543
0.00067146
0.000688923
0.000705084
0.000726478
0.000750877
0.000774323
0.000793874
0.000808076
0.000816515
0.000819234
0.000816347
0.000807878
0.000793809
0.000774438
0.000750887
0.000725625
0.000702491
0.000684992
0.000670697
0.000639263
0.000565025
0.000476233
0.000371847
0.000252222
0.000124148
2.58145e-05
5.1039e-06
7.67744e-06
3.17877e-05
0.000122749
0.000240309
0.000353696
0.000455949
0.000545641
0.000622771
0.000667739
0.000686177
0.000703665
0.000726018
0.000750847
0.000774275
0.000793523
0.000807303
0.000815332
0.000817745
0.000814701
0.000806234
0.000792285
0.000773042
0.000749434
0.000723632
0.000699175
0.000679725
0.000664438
0.000636549
0.000562578
0.000474218
0.000370377
0.000251287
0.0001236
2.5677e-05
5.08662e-06
7.70192e-06
3.16749e-05
0.000122289
0.000239241
0.000351945
0.000453596
0.000542843
0.000619713
0.000663672
0.00068289
0.000701731
0.000725254
0.000750783
0.000774434
0.000793552
0.000807007
0.000814656
0.000816736
0.000813482
0.000804968
0.000791129
0.000772084
0.000748596
0.000722574
0.000697228
0.000676053
0.000658952
0.000633102
0.000559803
0.000471758
0.000368438
0.000249997
0.000122907
2.55118e-05
5.06441e-06
7.71806e-06
3.15812e-05
0.000121866
0.000238216
0.000350239
0.000451258
0.000540006
0.000616556
0.000660053
0.000679797
0.000699687
0.000724245
0.000750488
0.00077445
0.000793546
0.000806762
0.000814075
0.000815823
0.000812324
0.000803723
0.000789995
0.000771244
0.000748122
0.000722308
0.000696688
0.000674466
0.000655625
0.000628491
0.000557382
0.00046944
0.000366486
0.000248658
0.000122236
2.53642e-05
5.0356e-06
7.7273e-06
3.15571e-05
0.000121683
0.00023745
0.000348736
0.000449063
0.000537262
0.000613456
0.000657145
0.000677515
0.000698219
0.000723574
0.000750434
0.000774725
0.000793865
0.000806912
0.000813928
0.000815331
0.000811523
0.00080273
0.000789009
0.000770514
0.000747877
0.000722638
0.000697403
0.000674999
0.000655157
0.00062664
0.000555847
0.000467742
0.000364894
0.000247492
0.000121665
2.52385e-05
4.99807e-06
7.72975e-06
3.1481e-05
0.000121364
0.000236489
0.000347013
0.000446629
0.00053426
0.000610082
0.000653643
0.00067494
0.000696863
0.000723192
0.000750615
0.000775165
0.000794368
0.000807333
0.000814152
0.000815285
0.000811186
0.000802158
0.000788355
0.000770037
0.000747912
0.000723505
0.000699246
0.000677582
0.000657718
0.000628
0.000555348
0.000466871
0.00036387
0.000246635
0.000121234
2.51332e-05
4.95154e-06
7.7314e-06
3.14083e-05
0.00012104
0.000235448
0.000345114
0.000443937
0.000530934
0.000606326
0.000648896
0.000671225
0.000694793
0.00072255
0.000750833
0.000775669
0.000794835
0.000807679
0.000814356
0.000815305
0.000810981
0.000801731
0.000787799
0.000769568
0.000747884
0.000724386
0.000701537
0.000681566
0.000662754
0.000630963
0.000555821
0.000466879
0.000363513
0.000246158
0.000120936
2.50347e-05
4.89823e-06
7.72559e-06
3.12925e-05
0.000120631
0.000234292
0.000343061
0.000441032
0.000527324
0.000602211
0.000643183
0.000666543
0.000691896
0.000721187
0.000750498
0.000775907
0.000795253
0.00080798
0.000814449
0.000815222
0.000810729
0.00080129
0.000787199
0.000768987
0.000747746
0.000725405
0.000704545
0.000686844
0.000668584
0.000631956
0.000556602
0.000467313
0.000363557
0.000245922
0.000120694
2.49251e-05
4.841e-06
7.71439e-06
3.11884e-05
0.000120255
0.000233143
0.000340966
0.000438027
0.000523558
0.000597891
0.00063744
0.000661796
0.000688897
0.000719636
0.000749809
0.00077567
0.000795287
0.000808176
0.000814625
0.000815191
0.000810444
0.000800787
0.000786535
0.000768335
0.000747528
0.000726356
0.000707533
0.000692177
0.000674519
0.000632862
0.000557473
0.000467999
0.000363917
0.000245931
0.000120547
2.48272e-05
4.78466e-06
7.69916e-06
3.11223e-05
0.000120037
0.000232181
0.000339025
0.00043512
0.000519828
0.000593562
0.000631583
0.000657278
0.000686237
0.000718332
0.000749275
0.000775471
0.000795188
0.000808148
0.000814707
0.000815317
0.000810409
0.000800438
0.000785906
0.000767625
0.000747151
0.000726998
0.000710018
0.000696849
0.000679779
0.000633153
0.000557911
0.000468449
0.000364188
0.000245896
0.00012032
2.46958e-05
4.73195e-06
7.69254e-06
3.10992e-05
0.000119935
0.000231336
0.000337154
0.000432217
0.000516035
0.000589155
0.000624147
0.000652001
0.000683544
0.000717212
0.000748817
0.000775233
0.000795029
0.000807986
0.000814507
0.000815145
0.000810287
0.0008002
0.000785363
0.000766829
0.000746474
0.000727074
0.00071161
0.00070032
0.00068375
0.000632505
0.00055757
0.000468329
0.00036411
0.000245686
0.000120006
2.45515e-05
4.68806e-06
7.70362e-06
3.09946e-05
0.00011961
0.000230187
0.000334886
0.000428801
0.000511549
0.000577865
0.000613245
0.000644992
0.000679873
0.000715544
0.000748017
0.000774613
0.000794355
0.00080732
0.000813903
0.00081452
0.000809587
0.000799439
0.000784475
0.000765705
0.000745244
0.000726244
0.000711871
0.00070206
0.000685869
0.000630655
0.000556128
0.000467268
0.000363301
0.000244978
0.00011941
2.43472e-05
4.65146e-06
7.73618e-06
3.08378e-05
0.000119098
0.000228761
0.00033222
0.000424845
0.000506369
0.00056211
0.000598895
0.000635521
0.00067457
0.000712705
0.000746291
0.00077326
0.000793065
0.00080602
0.000812669
0.0008134
0.000808453
0.000798137
0.000782988
0.000764053
0.000743407
0.000724409
0.000710523
0.000701581
0.000685611
0.000627501
0.000553475
0.000465146
0.000361644
0.000243677
0.000118491
2.40777e-05
4.62023e-06
7.77982e-06
3.05985e-05
0.000118306
0.00022694
0.000329041
0.000420249
0.000500458
0.000544354
0.000582806
0.000624549
0.000667749
0.000708263
0.00074298
0.000770484
0.00079062
0.00080383
0.000810672
0.000811574
0.00080678
0.000796473
0.000781106
0.000761874
0.000740966
0.000721694
0.000707627
0.000698722
0.000682643
0.000623015
0.00054955
0.000461871
0.000359019
0.000241655
0.000117137
2.37045e-05
4.59119e-06
7.82924e-06
3.035e-05
0.000117441
0.000224936
0.0003255
0.000414958
0.000483072
0.000526437
0.000568636
0.000614162
0.00065998
0.000702038
0.000737649
0.000765768
0.000786448
0.000800196
0.000807546
0.000808879
0.000804429
0.000794386
0.000779108
0.000759676
0.000738389
0.000718648
0.000703913
0.000694172
0.000677368
0.000617443
0.000544586
0.000457699
0.000355728
0.000239252
0.000115655
2.33276e-05
4.5655e-06
7.88005e-06
3.0038e-05
0.000116389
0.000222746
0.000321858
0.000409726
0.000467493
0.000510256
0.000555278
0.000603663
0.000651371
0.000694446
0.000730616
0.000759186
0.000780386
0.000794767
0.000802831
0.000804888
0.000801095
0.000791603
0.000776774
0.000757607
0.000736245
0.000716094
0.000700589
0.000689588
0.000671055
0.000610972
0.000538651
0.000452608
0.000351705
0.000236398
0.000113987
2.29157e-05
4.53304e-06
7.92565e-06
2.96428e-05
0.000115005
0.000220026
0.000317646
0.000404116
0.000453036
0.000495974
0.000543567
0.000593966
0.000642648
0.000686041
0.000722317
0.000751043
0.00077256
0.000787445
0.00079619
0.000799073
0.00079619
0.000787611
0.00077364
0.000755251
0.000734458
0.000714423
0.000698422
0.000686009
0.000663944
0.000603868
0.000531892
0.000446616
0.000346874
0.000233003
0.000112108
2.24737e-05
4.49212e-06
7.96429e-06
2.91826e-05
0.000113327
0.000216698
0.000312487
0.000392267
0.00043946
0.000484222
0.000533582
0.000584986
0.000634039
0.000677432
0.000713565
0.000742173
0.000763699
0.000778783
0.000787952
0.000791508
0.000789545
0.000782101
0.000769394
0.000752292
0.000732735
0.000713714
0.000698006
0.00068402
0.000657062
0.000596779
0.00052494
0.000440246
0.000341568
0.000229176
0.00010997
2.19596e-05
4.43674e-06
7.99581e-06
2.86969e-05
0.000111542
0.000213122
0.00030697
0.00037966
0.000426543
0.000473183
0.000524316
0.00057673
0.000626064
0.000669282
0.000705059
0.000733311
0.000754579
0.000769555
0.000778818
0.000782725
0.00078143
0.000775021
0.000763749
0.000748456
0.000730949
0.000713863
0.000699084
0.000683432
0.000650776
0.000590163
0.000518312
0.000434038
0.000336291
0.000225325
0.00010784
2.14547e-05
4.37938e-06
8.02579e-06
2.81862e-05
0.000109607
0.000209215
0.000300977
0.000366655
0.000413612
0.000462443
0.000515498
0.000568939
0.000618529
0.000661551
0.000696946
0.000724781
0.000745667
0.000760341
0.00076943
0.000773363
0.000772396
0.000766759
0.000756862
0.000743661
0.000728881
0.000714642
0.000701624
0.00068461
0.000645346
0.000584377
0.000512418
0.000428398
0.000331359
0.000221565
0.000105615
2.08782e-05
4.30982e-06
8.06356e-06
2.76544e-05
0.000107531
0.000205001
0.000294543
0.000352918
0.000400379
0.000451715
0.000506793
0.000561269
0.000611123
0.000653982
0.000689029
0.000716454
0.000736923
0.000751201
0.000759954
0.000763676
0.000762733
0.000757517
0.000748656
0.00073733
0.000725336
0.000714416
0.000704
0.000686396
0.000640348
0.000579059
0.000506945
0.000423072
0.000326614
0.000217906
0.000103454
2.03301e-05
4.25156e-06
8.10931e-06
2.7067e-05
0.000105202
0.000200321
0.000287467
0.000338588
0.000387155
0.000441152
0.000498103
0.000553456
0.000603553
0.000646326
0.000681118
0.000708196
0.000728264
0.000742122
0.000750468
0.000753847
0.000752704
0.000747568
0.000739269
0.000729248
0.000719536
0.00071182
0.000704607
0.000687269
0.000635899
0.00057442
0.000502113
0.000418175
0.000321951
0.000213949
0.000100844
1.96249e-05
4.18964e-06
8.16226e-06
2.64881e-05
0.000102775
0.000195153
0.000273661
0.000324324
0.000374976
0.000430998
0.000489344
0.000545456
0.000595829
0.000638581
0.000673167
0.000699918
0.000719589
0.000733015
0.000740924
0.00074389
0.000742404
0.000737065
0.000728826
0.000719342
0.000710949
0.000705468
0.000700556
0.000682541
0.000631581
0.000570297
0.00049804
0.000414135
0.000318106
0.000210674
9.87083e-05
1.91038e-05
4.16508e-06
8.21717e-06
2.58591e-05
0.000100251
0.000189907
0.000260618
0.000310555
0.000362754
0.000420549
0.000480306
0.000537335
0.000588129
0.000630914
0.000665315
0.000691781
0.000711112
0.00072417
0.000731703
0.000734302
0.00073247
0.000726814
0.0007183
0.000708668
0.000700477
0.000695956
0.000693172
0.000677867
0.000627665
0.000566908
0.000494929
0.000411102
0.000315092
0.000207861
9.6644e-05
1.8556e-05
4.1319e-06
8.27396e-06
2.52493e-05
9.77581e-05
0.000184664
0.000248011
0.000297402
0.000351116
0.000410492
0.000471408
0.000529186
0.000580399
0.000623299
0.000657558
0.000683729
0.000702723
0.000715441
0.000722644
0.000724932
0.000722806
0.000716838
0.000707898
0.000697631
0.000688604
0.000683413
0.00068139
0.000671498
0.000623082
0.000563193
0.00049185
0.000408429
0.000312683
0.000205766
9.52066e-05
1.82466e-05
4.13463e-06
8.32883e-06
2.45747e-05
9.50897e-05
0.000179231
0.000235681
0.000284712
0.000339926
0.000400735
0.000462589
0.000520893
0.000572388
0.000615417
0.000649662
0.000675661
0.000694362
0.000706762
0.000713677
0.000715717
0.000713378
0.000707177
0.000697832
0.000686777
0.000676465
0.000669803
0.000667276
0.000659915
0.00061852
0.000559766
0.000489263
0.000406332
0.000310741
0.000203813
9.35721e-05
1.78225e-05
4.11824e-06
8.38405e-06
2.39157e-05
9.24226e-05
0.00017391
0.000223924
0.000272817
0.000329366
0.000391303
0.000453789
0.000512359
0.000563934
0.000606953
0.000641131
0.000667006
0.000685504
0.000697624
0.000704244
0.000706042
0.000703524
0.00069717
0.000687538
0.000675745
0.00066385
0.0006547
0.00064991
0.000643939
0.000612939
0.000555545
0.000486201
0.000404178
0.000309214
0.000202671
9.2793e-05
1.77365e-05
4.16288e-06
8.43631e-06
2.3234e-05
8.94924e-05
0.000165903
0.000213032
0.000262367
0.000319656
0.000382053
0.000444777
0.000503434
0.000554963
0.000597852
0.000631853
0.000657545
0.000675887
0.000687876
0.000694364
0.000696004
0.000693351
0.000686905
0.000677121
0.000664873
0.000651822
0.000640487
0.000633178
0.000627868
0.000607625
0.000551636
0.000483502
0.000402398
0.000307972
0.000201591
9.18133e-05
1.74959e-05
4.17025e-06
8.48285e-06
2.26663e-05
8.68851e-05
0.000157156
0.000203348
0.000252976
0.000310555
0.000373121
0.00043592
0.000494543
0.000545904
0.000588496
0.000622151
0.000647538
0.000665656
0.000677513
0.000683937
0.000685564
0.000682925
0.00067647
0.000666606
0.000654072
0.000640241
0.000627263
0.000617399
0.000610316
0.000596476
0.000546043
0.000479446
0.000399767
0.000306568
0.000201088
9.1748e-05
1.76149e-05
4.22548e-06
8.51501e-06
2.21121e-05
8.44374e-05
0.000149418
0.000194648
0.000244362
0.000302072
0.000364643
0.000427299
0.000485641
0.000536617
0.000578775
0.000612002
0.000637026
0.00065491
0.000666668
0.000673106
0.000674839
0.000672366
0.000666119
0.000656428
0.000643875
0.000629688
0.000615871
0.000604681
0.000596412
0.000583575
0.000540622
0.000475359
0.000396851
0.000304577
0.00019971
9.07817e-05
1.73482e-05
4.1889e-06
8.52613e-06
2.16201e-05
8.22493e-05
0.000142503
0.000186926
0.000236727
0.000294495
0.000356898
0.000419146
0.000476895
0.000527189
0.000568685
0.000601358
0.000625975
0.000643601
0.000655256
0.000661743
0.000663618
0.000661338
0.000655339
0.000645908
0.000633537
0.000619231
0.000604688
0.000592023
0.000582013
0.0005693
0.000533398
0.000469586
0.000392611
0.000301915
0.000198509
9.05653e-05
1.74289e-05
4.19898e-06
8.50929e-06
2.10382e-05
7.98547e-05
0.000136004
0.000179683
0.000229465
0.000287155
0.000349225
0.000410849
0.000467756
0.000517135
0.000557802
0.000589847
0.000614085
0.000631568
0.000643259
0.000649906
0.000652056
0.000650155
0.000644573
0.00063554
0.000623518
0.000609442
0.000594902
0.000581931
0.000571495
0.000559242
0.000526976
0.00046425
0.000388335
0.000298637
0.000196132
8.90672e-05
1.69864e-05
4.09601e-06
8.46078e-06
2.04351e-05
7.74367e-05
0.000129703
0.000172838
0.00022276
0.000280447
0.000342111
0.000402888
0.00045864
0.000506786
0.000546365
0.00057761
0.000601382
0.000618703
0.000630474
0.000637363
0.000639847
0.000638347
0.000633251
0.000624749
0.000613191
0.000599379
0.000584737
0.000571092
0.000559526
0.000546961
0.000518755
0.000457343
0.00038294
0.000294949
0.000194214
8.85505e-05
1.69762e-05
4.06375e-06
8.37485e-06
1.95864e-05
7.42475e-05
0.000122865
0.000165553
0.000215633
0.000273269
0.000334412
0.000394187
0.000448637
0.000495461
0.000533942
0.000564452
0.000587873
0.000605181
0.000617196
0.000624507
0.000627522
0.000626615
0.000622148
0.000614311
0.000603471
0.000590407
0.000576462
0.000563377
0.000552147
0.000539693
0.000511907
0.000451395
0.000377924
0.000290878
0.000191114
8.65746e-05
1.6347e-05
3.90125e-06
8.26023e-06
1.86068e-05
7.05585e-05
0.000115375
0.000157737
0.000208163
0.000265877
0.000326487
0.000385119
0.000438074
0.000483408
0.000520691
0.00055043
0.000573513
0.000590841
0.000603139
0.000610909
0.000614495
0.000614235
0.000610474
0.000603362
0.000593237
0.000580851
0.000567445
0.000554545
0.000542958
0.000529917
0.00050315
0.000443926
0.00037202
0.000286805
0.000188992
8.60311e-05
1.63058e-05
3.84329e-06
8.12338e-06
1.72463e-05
6.54977e-05
0.000106396
0.000148318
0.000198997
0.0002567
0.000316682
0.000374103
0.000425578
0.000469547
0.000505845
0.000535069
0.00055807
0.000575652
0.000588438
0.000596848
0.000601171
0.000601722
0.000598836
0.000592646
0.000583497
0.000572205
0.000560108
0.000548725
0.000538509
0.000525649
0.000496017
0.000437562
0.00036648
0.000282125
0.000185267
8.35772e-05
1.55027e-05
3.6451e-06
7.98387e-06
1.57414e-05
5.9768e-05
9.65201e-05
0.000137736
0.000188537
0.000246186
0.000305473
0.000361575
0.000411491
0.000454099
0.000489505
0.000518359
0.000541425
0.000559376
0.000572719
0.000581794
0.000586851
0.000588204
0.000586199
0.000580932
0.000572704
0.000562291
0.000550977
0.000540178
0.000530157
0.000516938
0.000486797
0.000429708
0.0003603
0.000277896
0.000183103
8.30748e-05
1.54837e-05
3.5988e-06
7.85051e-06
1.38644e-05
5.27143e-05
8.53848e-05
0.00012528
0.0001756
0.000232795
0.000291155
0.000345848
0.000394279
0.000435775
0.000470665
0.000499578
0.000523123
0.000541803
0.000555997
0.000565972
0.000571952
0.000574268
0.000573292
0.000569098
0.000561985
0.000552799
0.000542972
0.000534038
0.000525994
0.000513488
0.000479598
0.000423264
0.000354612
0.000272957
0.000179013
8.02867e-05
1.45884e-05
3.40299e-06
7.73823e-06
1.19312e-05
4.57095e-05
7.43926e-05
0.000112234
0.000161482
0.000217923
0.000275118
0.00032813
0.00037486
0.000415187
0.000449672
0.00047886
0.00050313
0.000522754
0.000537948
0.000548891
0.000555796
0.000559038
0.000559052
0.000555874
0.000549729
0.000541379
0.000532192
0.000523659
0.000515785
0.000503385
0.000470175
0.000415451
0.000348664
0.00026908
0.000177226
8.00684e-05
1.46811e-05
3.39623e-06
7.6569e-06
1.02203e-05
3.89458e-05
6.33764e-05
9.81101e-05
0.000145305
0.000200377
0.000256004
0.000307018
0.000351885
0.000391105
0.000425461
0.000455341
0.000480808
0.000501834
0.00051843
0.000530676
0.000538776
0.000543163
0.00054435
0.000542351
0.000537359
0.000530174
0.000522307
0.000515454
0.000509588
0.000498496
0.000462882
0.000409008
0.000342984
0.000264085
0.000172982
7.70908e-05
1.37468e-05
3.21696e-06
7.61646e-06
9.30663e-06
3.41645e-05
5.40103e-05
8.51407e-05
0.000129943
0.000183548
0.00023731
0.000285649
0.000327855
0.000365351
0.000399258
0.000429776
0.00045656
0.000479184
0.000497368
0.00051104
0.000520379
0.000525893
0.000528218
0.000527341
0.00052335
0.000516904
0.000509368
0.000502388
0.0004962
0.000485588
0.000453387
0.000401467
0.000337573
0.000260904
0.000171892
7.73576e-05
1.39994e-05
3.25562e-06
7.60605e-06
8.41988e-06
2.93267e-05
4.54683e-05
7.27911e-05
0.000114552
0.000166287
0.000217883
0.000263
0.000301849
0.000337031
0.00037015
0.000401254
0.000429547
0.000454119
0.000474314
0.000489842
0.000500823
0.000507814
0.000511578
0.000512072
0.000509327
0.000503985
0.000497512
0.000491774
0.000487192
0.000478166
0.000445637
0.000394688
0.000331608
0.000255634
0.000167371
7.41389e-05
1.30124e-05
3.08845e-06
7.61793e-06
7.93958e-06
2.54886e-05
3.92153e-05
6.33589e-05
0.000102579
0.000153115
0.000202728
0.000243806
0.000277913
0.000309406
0.000340658
0.000371643
0.000401081
0.000427478
0.00044968
0.000467095
0.000479741
0.000488197
0.000493395
0.000495258
0.000493695
0.000489165
0.000482897
0.000476627
0.000471179
0.00046272
0.000436033
0.000387363
0.00032667
0.000253084
0.000166924
7.48627e-05
1.34141e-05
3.16105e-06
7.62977e-06
7.46987e-06
2.2128e-05
3.37002e-05
5.47635e-05
9.12672e-05
0.000140777
0.00018893
0.000226028
0.00025479
0.000281611
0.000309979
0.00034008
0.000370272
0.000398433
0.000422809
0.000442418
0.000457111
0.00046742
0.000474434
0.000478023
0.000477987
0.000474709
0.000469453
0.000464149
0.000459935
0.000453034
0.000427233
0.000379589
0.000319744
0.000246889
0.000161559
7.10317e-05
1.22836e-05
2.9852e-06
7.61973e-06
7.31904e-06
2.02602e-05
3.01456e-05
4.88034e-05
8.37805e-05
0.000133986
0.000181963
0.000215236
0.00023797
0.000258808
0.000282617
0.000310384
0.00034036
0.000369619
0.000395666
0.000417082
0.000433532
0.000445429
0.000454091
0.00045933
0.000460787
0.00045864
0.000453849
0.000448028
0.000442576
0.000435964
0.000417468
0.000372349
0.000315124
0.00024482
0.000161642
7.21617e-05
1.28153e-05
3.075e-06
7.56987e-06
7.06819e-06
1.84467e-05
2.66257e-05
4.24795e-05
7.49916e-05
0.000125266
0.000173825
0.000205306
0.000224118
0.00023957
0.000257878
0.000281765
0.000310232
0.000339861
0.000367189
0.00039029
0.000408558
0.000422191
0.000432748
0.000439968
0.000443306
0.000442767
0.000439241
0.00043446
0.000430144
0.000424931
0.000407155
0.000363044
0.0003067
0.000237237
0.000155094
6.75433e-05
1.14952e-05
2.87198e-06
7.47584e-06
7.06104e-06
1.78214e-05
2.47158e-05
3.81131e-05
6.86589e-05
0.000119754
0.000168768
0.000197417
0.000216476
0.000229318
0.000243521
0.00026253
0.000286774
0.000314281
0.000341333
0.000365028
0.000384281
0.000398877
0.000410736
0.000419554
0.000424572
0.000425531
0.000423014
0.00041838
0.000413163
0.000407229
0.000394503
0.000355867
0.00030241
0.000235724
0.000155871
6.92686e-05
1.22036e-05
2.97853e-06
7.35338e-06
6.94604e-06
1.7236e-05
2.27733e-05
3.26261e-05
5.77012e-05
0.000104797
0.000143653
0.000170181
0.000192497
0.000217505
0.00023778
0.000251176
0.000268299
0.000290769
0.000315789
0.000339393
0.000359345
0.000374707
0.000387754
0.000398182
0.000405023
0.000407761
0.000406817
0.000403572
0.000399789
0.000395608
0.000384486
0.000344929
0.000292275
0.00022649
0.000147911
6.37374e-05
1.06562e-05
2.73927e-06
7.22615e-06
7.11069e-06
1.80868e-05
2.30088e-05
3.01159e-05
4.91773e-05
8.97046e-05
0.000121308
0.000147829
0.000169763
0.00019523
0.00022365
0.000253444
0.000264878
0.000278611
0.00029798
0.00031938
0.000338647
0.000353559
0.000366763
0.00037795
0.000385956
0.000389992
0.000390118
0.000387268
0.000382851
0.000377455
0.000367458
0.000338478
0.000288902
0.000226045
0.000149835
6.63792e-05
1.16197e-05
2.88058e-06
7.12495e-06
7.15562e-06
1.90958e-05
2.38227e-05
2.86971e-05
4.00363e-05
6.65775e-05
9.42418e-05
0.000121642
0.000144229
0.00016901
0.000197486
0.000228104
0.000259016
0.000275682
0.000286034
0.000301202
0.000318278
0.000332257
0.000345343
0.000357039
0.000365988
0.000371163
0.000372438
0.000370757
0.000367833
0.000364588
0.000356646
0.000326027
0.000277071
0.000214904
0.000139944
5.94474e-05
9.72708e-06
2.59397e-06
7.0441e-06
7.5222e-06
2.16373e-05
2.69768e-05
3.14774e-05
3.8792e-05
5.60264e-05
7.60266e-05
0.000102781
0.000127546
0.000150573
0.000177852
0.000208094
0.000239535
0.000270364
0.000291265
0.000298067
0.000307922
0.000318103
0.000329724
0.00034105
0.000350126
0.000355669
0.000357298
0.00035549
0.000351288
0.000345607
0.00033761
0.000320622
0.00027508
0.000216221
0.000143767
6.34742e-05
1.10275e-05
2.78551e-06
6.99502e-06
7.82743e-06
2.40396e-05
3.08987e-05
3.57661e-05
4.04446e-05
5.1314e-05
6.06921e-05
7.9689e-05
0.000104099
0.000126798
0.000151805
0.00018071
0.00021209
0.000243977
0.000274578
0.000300564
0.000303274
0.000305428
0.000313289
0.000323641
0.000332859
0.000338822
0.000340855
0.000339452
0.000336046
0.000332222
0.000326619
0.000306901
0.000261789
0.000203234
0.000131803
5.50227e-05
8.79045e-06
2.43442e-06
6.935e-06
8.83042e-06
2.84709e-05
3.78251e-05
4.40509e-05
4.84296e-05
5.52364e-05
6.37219e-05
7.24797e-05
9.13709e-05
0.000114968
0.000137744
0.000163803
0.000193327
0.000224729
0.000256009
0.000285388
0.000311469
0.000308012
0.00030753
0.000313787
0.000321804
0.000327621
0.000329582
0.000327646
0.000322646
0.000315661
0.000306901
0.000292969
0.000260597
0.000206322
0.000137945
6.07543e-05
1.04306e-05
2.66557e-06
6.86944e-06
1.029e-05
3.37456e-05
4.59132e-05
5.39271e-05
5.87784e-05
6.30658e-05
7.20136e-05
7.16718e-05
7.80722e-05
9.39987e-05
0.000115126
0.000137564
0.000164232
0.000194359
0.000225992
0.00025696
0.000285408
0.000309862
0.000305019
0.000303113
0.000307229
0.000312414
0.000314908
0.000313592
0.000309283
0.000303643
0.000297261
0.0002848
0.000245903
0.000191442
0.000123934
5.10567e-05
7.99867e-06
2.24921e-06
6.7439e-06
1.33767e-05
4.40664e-05
5.63253e-05
6.55652e-05
7.31881e-05
7.84217e-05
8.41736e-05
8.8721e-05
8.81128e-05
9.499e-05
0.000110531
0.00013095
0.000153236
0.00017969
0.000209109
0.000239488
0.000268624
0.000294641
0.000312028
0.000305121
0.000302161
0.000304078
0.000305976
0.000304649
0.000299422
0.000291016
0.000280224
0.000266359
0.000243786
0.000193967
0.000130164
5.68803e-05
9.55178e-06
2.45887e-06
6.56076e-06
1.55274e-05
5.18135e-05
6.47427e-05
7.32271e-05
8.28695e-05
9.20787e-05
9.82954e-05
0.000100678
9.55144e-05
9.30811e-05
9.78418e-05
0.000110789
0.000128773
0.000150831
0.000177524
0.000207056
0.000237002
0.00026506
0.000289124
0.000302138
0.000295145
0.000291419
0.000291448
0.000290995
0.000287747
0.000281889
0.000274091
0.000261359
0.000229326
0.000178877
0.000115835
4.75037e-05
7.33553e-06
2.02245e-06
6.24611e-06
1.76522e-05
5.76436e-05
7.12748e-05
7.84281e-05
8.77774e-05
0.00010056
0.00011144
0.000113586
0.000109958
0.000107773
0.00011007
0.000118968
0.000133332
0.000151215
0.000173292
0.000198884
0.000226196
0.000252985
0.000276985
0.000296085
0.000294874
0.000286892
0.000283261
0.000281559
0.000278036
0.000271102
0.000260704
0.000246324
0.000223705
0.000178129
0.000118459
5.0345e-05
8.12654e-06
2.14983e-06
5.85253e-06
1.6436e-05
5.69639e-05
7.20578e-05
7.84204e-05
8.51011e-05
9.65475e-05
0.000110683
0.000112338
0.000108978
0.000105882
0.00010493
0.000108369
0.000117033
0.000130111
0.000147713
0.000170089
0.000195632
0.000222123
0.000247197
0.00026855
0.00028274
0.000275159
0.000268816
0.000266155
0.000263918
0.000259818
0.000253147
0.000241539
0.000213789
0.000167172
0.000108501
4.45862e-05
6.75031e-06
1.79521e-06
5.34398e-06
1.58959e-05
5.43456e-05
7.29613e-05
7.96377e-05
8.30286e-05
8.8847e-05
9.97149e-05
0.000113266
0.000113305
0.00011445
0.000117811
0.000124023
0.000133202
0.00014533
0.000160919
0.000180045
0.000201654
0.000224242
0.000245916
0.000264597
0.000276155
0.000267814
0.000260752
0.000257248
0.000254379
0.000249806
0.000242426
0.000230475
0.000207542
0.000162834
0.000105793
4.23646e-05
6.38508e-06
1.82727e-06
4.91542e-06
1.2216e-05
4.60364e-05
7.36136e-05
8.63059e-05
8.89588e-05
8.90194e-05
9.1226e-05
9.74369e-05
0.00010596
0.000105215
0.000104996
0.000106741
0.000111319
0.000119084
0.000130373
0.000146038
0.000165679
0.000187822
0.000210437
0.000231379
0.000248439
0.000246636
0.000241718
0.000238582
0.000235932
0.000231769
0.000225172
0.000215617
0.000198529
0.000157072
0.000103506
4.35239e-05
6.53433e-06
1.63496e-06
4.50184e-06
1.26184e-05
4.66849e-05
7.63284e-05
9.27778e-05
0.000100426
0.000103489
0.000103058
0.000103508
0.000106785
0.000111883
0.000114783
0.000119206
0.000125916
0.000135324
0.000147341
0.000161739
0.000178667
0.000197403
0.000216744
0.000234972
0.000249962
0.000245254
0.000239397
0.000236371
0.000234421
0.000231877
0.000227687
0.000218956
0.000195396
0.000152758
9.72409e-05
3.62536e-05
4.92146e-06
1.58006e-06
4.27488e-06
1.04582e-05
3.8635e-05
6.70661e-05
8.48643e-05
9.45917e-05
9.95854e-05
0.000102176
0.000103517
0.000103839
0.000103159
0.000101591
9.94272e-05
9.73195e-05
9.64099e-05
9.82617e-05
0.00010423
0.000115183
0.000131738
0.000152716
0.000175517
0.000197338
0.000213964
0.000211618
0.000207657
0.000204226
0.000200105
0.00019431
0.000186661
0.000175652
0.000151925
0.000105366
4.81134e-05
7.48418e-06
1.65468e-06
4.12425e-06
1.25089e-05
4.46336e-05
7.22892e-05
8.68562e-05
9.34476e-05
9.64116e-05
9.51931e-05
9.13413e-05
9.04837e-05
9.42723e-05
0.000102454
0.000110534
0.000113105
0.000117392
0.00012458
0.00013526
0.000149027
0.000164871
0.000182128
0.000200014
0.000217324
0.000232087
0.000241781
0.000237325
0.000230571
0.000225098
0.00021913
0.000208629
0.000181649
0.000141397
8.81217e-05
3.06047e-05
3.93318e-06
1.47427e-06
4.27428e-06
1.21673e-05
4.33827e-05
7.28699e-05
8.30304e-05
8.17712e-05
8.29024e-05
8.64848e-05
8.9412e-05
8.98561e-05
8.93713e-05
9.06274e-05
9.55043e-05
0.00010414
0.00010972
0.000106398
0.000102752
0.00010048
0.000101665
0.000107933
0.000119708
0.000136429
0.000155683
0.000174341
0.000186948
0.000180837
0.000175202
0.000171786
0.000168567
0.000161824
0.000146537
0.000114865
5.44616e-05
8.08246e-06
1.73455e-06
4.35248e-06
1.67663e-05
5.71425e-05
8.55677e-05
9.64465e-05
9.95128e-05
9.99238e-05
0.000104923
0.000113056
0.000121015
0.000126053
0.000127894
0.000128653
0.00013092
0.000136506
0.000146455
0.000160013
0.000166497
0.00017247
0.000181069
0.000192306
0.000204973
0.000216722
0.000225141
0.000228192
0.000224381
0.000213084
0.000194555
0.000169437
0.000138366
0.000102477
6.45835e-05
2.88196e-05
5.13355e-06
1.5597e-06
4.14682e-06
2.08943e-05
6.19652e-05
8.08047e-05
8.32322e-05
8.76395e-05
0.000100759
0.000118346
0.000133327
0.00014876
0.000163533
0.000176751
0.000187782
0.000196272
0.000202086
0.00020521
0.000205677
0.000203552
0.000199152
0.000192773
0.000184943
0.000177617
0.000173985
0.000177601
0.000189416
0.000205316
0.00022115
0.00023475
0.000242081
0.000197423
0.00014262
9.51655e-05
3.77103e-05
3.73201e-06
1.3719e-06
3.42063e-06
2.94817e-05
6.47282e-05
6.90344e-05
6.14409e-05
6.27436e-05
7.39508e-05
9.29037e-05
0.000117243
0.000138099
0.000153295
0.000168728
0.000183974
0.000198733
0.000212659
0.00022532
0.000236154
0.0002445
0.000249577
0.000250416
0.000245827
0.000236181
0.000222222
0.00020529
0.000186557
0.000166361
0.000144333
0.000119929
9.31659e-05
6.52619e-05
3.85546e-05
1.7189e-05
4.38778e-06
5.80023e-07
1.7843e-07
2.75785e-06
3.70953e-05
4.26638e-05
3.92166e-05
3.1241e-05
2.80848e-05
2.88511e-05
3.26643e-05
3.85702e-05
4.04207e-05
4.3254e-05
4.62995e-05
4.93863e-05
5.21715e-05
5.45106e-05
5.62582e-05
5.73228e-05
5.76425e-05
5.7196e-05
5.59775e-05
5.39186e-05
5.13311e-05
4.81007e-05
4.42698e-05
3.98762e-05
3.48812e-05
2.93433e-05
2.33508e-05
1.71739e-05
1.12165e-05
6.03344e-06
2.27049e-06
3.88722e-07
1.36076e-07
7.89716e-08
7.46672e-06
3.25526e-05
6.04956e-05
6.82807e-05
6.82188e-05
6.28945e-05
5.60255e-05
5.03469e-05
4.56011e-05
4.21017e-05
4.00717e-05
3.86746e-05
3.78144e-05
3.77095e-05
3.81732e-05
3.89683e-05
3.9984e-05
4.11598e-05
4.24196e-05
4.36718e-05
4.48207e-05
4.58487e-05
4.67825e-05
4.76609e-05
4.84366e-05
4.90557e-05
4.95015e-05
4.98168e-05
5.01908e-05
5.10879e-05
5.3415e-05
5.73616e-05
5.25742e-05
1.88662e-05
1.75874e-06
3.68462e-08
1.52865e-06
2.11652e-06
2.88242e-06
3.77647e-06
4.7625e-06
5.76948e-06
6.71115e-06
7.50182e-06
8.08073e-06
8.41227e-06
8.54556e-06
8.48493e-06
8.29782e-06
8.25592e-06
8.85377e-06
1.04521e-05
1.31402e-05
1.75504e-05
2.40898e-05
2.63155e-05
2.86879e-05
3.12772e-05
3.36017e-05
3.52695e-05
3.62859e-05
3.68549e-05
3.71801e-05
3.73394e-05
3.72836e-05
3.68529e-05
3.57466e-05
3.3406e-05
9.99583e-06
1.76544e-07
7.68054e-08
1.96639e-07
7.42625e-07
2.32443e-06
4.95224e-06
7.97246e-06
1.07291e-05
1.28525e-05
1.42203e-05
1.48739e-05
1.49052e-05
1.45204e-05
1.37703e-05
1.29089e-05
1.2025e-05
1.10791e-05
1.07543e-05
1.11697e-05
8.79521e-06
7.88896e-06
1.85179e-05
2.86429e-05
3.92888e-05
5.82689e-05
8.59142e-05
0.000111139
0.000124462
0.00013447
0.000140585
0.000140496
0.000131543
0.000110891
4.78761e-05
1.52577e-05
9.27353e-07
6.58883e-07
9.82529e-07
4.60936e-06
1.49958e-05
2.96224e-05
3.97019e-05
5.0927e-05
6.2958e-05
6.92282e-05
6.75997e-05
6.26957e-05
5.6095e-05
4.87999e-05
4.17815e-05
3.54827e-05
3.00966e-05
2.57459e-05
2.26276e-05
2.13215e-05
2.31946e-05
2.82033e-05
3.40694e-05
3.84211e-05
3.95209e-05
3.48125e-05
2.54506e-05
2.58962e-05
3.7321e-05
5.06414e-05
6.44951e-05
7.31774e-05
5.9707e-05
3.21482e-05
1.23086e-05
1.46935e-06
1.05258e-06
2.86031e-06
1.79491e-05
2.90469e-05
4.31511e-05
5.87761e-05
7.23733e-05
7.85872e-05
8.14588e-05
7.98075e-05
7.24884e-05
5.61881e-05
4.34249e-05
3.67353e-05
2.5496e-05
1.71222e-05
1.24097e-05
1.07016e-05
1.12338e-05
1.36289e-05
1.73845e-05
2.18214e-05
2.65547e-05
2.95158e-05
3.41466e-05
4.66848e-05
5.78322e-05
6.70014e-05
7.24921e-05
7.11294e-05
6.28267e-05
4.13147e-05
2.36401e-05
9.37613e-06
2.07371e-06
7.22294e-07
7.39856e-07
1.14551e-06
9.16041e-06
2.00909e-05
2.90177e-05
3.74497e-05
4.56536e-05
5.38718e-05
6.28277e-05
7.1488e-05
7.41556e-05
7.5074e-05
7.41907e-05
7.15241e-05
6.74772e-05
6.27937e-05
5.85331e-05
5.60093e-05
5.64888e-05
6.04273e-05
6.70901e-05
6.96704e-05
7.80123e-05
9.23598e-05
0.000100504
0.000104452
0.000103182
9.39905e-05
7.76988e-05
6.22921e-05
3.818e-05
2.33922e-05
9.56321e-06
2.57505e-06
1.26242e-06
2.13328e-06
1.229e-05
3.28604e-05
5.02086e-05
6.45256e-05
7.61035e-05
8.16817e-05
8.43705e-05
8.52458e-05
8.50603e-05
8.42488e-05
8.30841e-05
8.17135e-05
8.02167e-05
7.86851e-05
7.72649e-05
7.61606e-05
7.56438e-05
7.6016e-05
7.74697e-05
8.00242e-05
8.35128e-05
8.76223e-05
9.19125e-05
9.56707e-05
9.74907e-05
9.44377e-05
8.17633e-05
6.27669e-05
5.09151e-05
3.32291e-05
2.21982e-05
8.9323e-06
3.04451e-06
1.39477e-06
3.13828e-06
1.84682e-05
3.43089e-05
4.87974e-05
6.34893e-05
7.81718e-05
9.249e-05
0.000105588
0.000115355
0.000117806
0.000117941
0.000116316
0.000113501
0.000110026
0.000106357
0.000102866
9.9803e-05
9.73615e-05
9.56825e-05
9.48007e-05
9.46915e-05
9.52799e-05
9.64217e-05
9.77976e-05
9.86357e-05
9.70796e-05
8.93383e-05
7.22553e-05
5.39395e-05
4.40592e-05
3.06988e-05
2.2033e-05
8.99193e-06
3.4555e-06
1.29503e-06
1.98749e-06
1.00316e-05
2.85351e-05
4.40749e-05
5.73088e-05
7.01424e-05
8.33781e-05
9.67734e-05
0.000105512
0.000111731
0.000116397
0.000119625
0.000121555
0.00012236
0.000122245
0.000121432
0.000120095
0.000118587
0.000117252
0.000116255
0.000115686
0.000115564
0.000115802
0.000116059
0.000115366
0.000111458
0.000100091
7.84501e-05
5.63728e-05
4.20428e-05
3.02389e-05
2.25277e-05
9.3598e-06
3.79895e-06
1.56145e-06
3.42266e-06
2.05908e-05
4.56176e-05
6.51669e-05
8.30097e-05
9.99884e-05
0.000115559
0.000126784
0.000132661
0.000136491
0.000138751
0.000139804
0.000139925
0.000139341
0.00013825
0.000136825
0.000135173
0.000133637
0.000132565
0.000132037
0.000132005
0.000132308
0.000132609
0.000132164
0.000129418
0.000121479
0.00010405
7.95325e-05
6.04243e-05
4.21699e-05
3.16539e-05
2.33106e-05
9.28975e-06
4.13625e-06
1.58365e-06
3.15891e-06
1.74826e-05
4.00185e-05
5.69722e-05
7.29114e-05
8.89147e-05
0.000105596
0.000122974
0.000138675
0.000146817
0.000152932
0.000157226
0.000159928
0.000161284
0.000161539
0.000160921
0.000159607
0.000158119
0.000156898
0.000155977
0.000155285
0.00015462
0.000153485
0.000150836
0.000144784
0.000132367
0.000109945
8.32774e-05
6.54212e-05
4.44482e-05
3.41172e-05
2.48901e-05
9.7971e-06
4.42169e-06
1.6272e-06
3.50538e-06
2.01334e-05
4.76028e-05
7.09827e-05
8.94472e-05
0.000106403
0.000123296
0.000139469
0.000149504
0.000157246
0.00016334
0.000168005
0.000171422
0.000173744
0.000175119
0.000175671
0.000175491
0.00017503
0.000174654
0.000174293
0.000173789
0.000172811
0.000170647
0.000165981
0.000156739
0.000140231
0.000114288
8.69999e-05
6.74492e-05
4.70508e-05
3.68079e-05
2.65785e-05
1.0095e-05
4.68792e-06
1.81315e-06
4.3984e-06
2.48502e-05
5.41567e-05
7.48021e-05
9.33386e-05
0.000111586
0.000130261
0.000149586
0.000167906
0.000178939
0.000186225
0.000191721
0.000195703
0.000198416
0.000200068
0.000200829
0.000200816
0.000200407
0.000199834
0.000198975
0.000197611
0.000195277
0.000191076
0.000183539
0.000170623
0.000150125
0.000121456
9.37132e-05
6.88265e-05
5.00799e-05
3.96293e-05
2.83872e-05
1.0536e-05
4.92698e-06
1.79068e-06
3.99263e-06
2.27406e-05
5.37394e-05
8.02936e-05
0.00010092
0.00011962
0.000138372
0.000157926
0.000176827
0.000188121
0.000197288
0.000204705
0.000210573
0.000215078
0.000218394
0.000220663
0.000221985
0.000222649
0.000222798
0.000222248
0.000220699
0.000217568
0.000211859
0.000202101
0.000186481
0.000163379
0.000132924
0.000103987
7.24961e-05
5.39178e-05
4.28064e-05
3.04129e-05
1.09756e-05
5.14408e-06
1.94508e-06
4.98059e-06
2.78128e-05
6.23809e-05
9.13222e-05
0.000113282
0.000132788
0.000151951
0.00017181
0.000192086
0.000209565
0.00021957
0.000227721
0.000234257
0.000239387
0.000243293
0.000246113
0.000247934
0.000248927
0.000249127
0.000248304
0.00024607
0.000241758
0.000234346
0.000222478
0.000204676
0.000179875
0.000148456
0.000108589
7.68547e-05
5.86399e-05
4.63751e-05
3.25552e-05
1.14143e-05
5.347e-06
1.9998e-06
4.90162e-06
2.7556e-05
6.35807e-05
9.6362e-05
0.000120589
0.000141504
0.000161542
0.000182119
0.00020367
0.000224227
0.000236285
0.000246381
0.000254732
0.000261519
0.000266902
0.000271002
0.000273883
0.000275641
0.000276237
0.000275397
0.000272679
0.00026739
0.000258562
0.000245028
0.000225667
0.000199878
0.000159268
0.000114223
8.31115e-05
6.44696e-05
5.05259e-05
3.50399e-05
1.19363e-05
5.53293e-06
2.07495e-06
5.47073e-06
3.03993e-05
6.92062e-05
0.000105942
0.000136189
0.000158707
0.000178572
0.000198471
0.000219536
0.000240942
0.000258218
0.000269559
0.000279109
0.000287034
0.000293464
0.000298486
0.000302121
0.000304375
0.000305131
0.00030407
0.000300708
0.000294357
0.000284136
0.000269087
0.000248414
0.000217019
0.000164631
0.000120356
9.02407e-05
7.05947e-05
5.47922e-05
3.76171e-05
1.24334e-05
5.70862e-06
2.18611e-06
5.84102e-06
3.22008e-05
7.31787e-05
0.000112078
0.000145368
0.000170467
0.000192122
0.000212788
0.000234096
0.000256588
0.000278218
0.000292007
0.000303245
0.00031272
0.000320534
0.000326742
0.000331327
0.000334234
0.000335288
0.000334143
0.000330308
0.00032313
0.000311842
0.00029567
0.000274057
0.000224425
0.000171228
0.000128781
9.87512e-05
7.73484e-05
5.94395e-05
4.04713e-05
1.3011e-05
5.86951e-06
2.22277e-06
6.14092e-06
3.38388e-05
7.71252e-05
0.000119151
0.00015678
0.00018954
0.000213084
0.000233206
0.000253329
0.000274783
0.000296995
0.000316196
0.000328901
0.000339738
0.000348782
0.000356045
0.000361469
0.000364934
0.000366212
0.000364927
0.000360575
0.000352532
0.000340091
0.000322579
0.000284451
0.000230464
0.000179325
0.00013833
0.000107675
8.42904e-05
6.42602e-05
4.34608e-05
1.35644e-05
6.022e-06
2.34349e-06
6.72815e-06
3.64254e-05
8.20683e-05
0.000126303
0.000166135
0.000201192
0.000228533
0.000250578
0.000271085
0.000292045
0.000314232
0.000336476
0.000354215
0.000366567
0.000376948
0.000385335
0.000391627
0.000395651
0.00039713
0.000395651
0.000390686
0.000381604
0.000367714
0.000340684
0.000291984
0.000238131
0.000189033
0.000148669
0.000116933
9.15366e-05
6.94041e-05
4.67192e-05
1.4187e-05
6.16192e-06
2.37913e-06
6.99724e-06
3.7938e-05
8.58346e-05
0.000132922
0.000175776
0.000213843
0.000247221
0.000274016
0.000294208
0.000313283
0.000333555
0.000355265
0.000376704
0.000393377
0.000404912
0.000414246
0.000421232
0.000425638
0.000427133
0.000425257
0.00041945
0.00040906
0.00038996
0.000349526
0.000298844
0.00024684
0.000199405
0.000159196
0.000126233
9.88922e-05
7.47325e-05
5.01621e-05
1.48071e-05
6.2951e-06
2.49448e-06
7.6511e-06
4.06799e-05
9.0962e-05
0.00014033
0.000185389
0.000225652
0.000261259
0.000291866
0.000313995
0.000333309
0.000352574
0.000372833
0.00039394
0.000414569
0.000431755
0.000441975
0.000449569
0.000454251
0.00045564
0.000453234
0.00044644
0.000432013
0.000400341
0.000356761
0.000307071
0.000256892
0.000210463
0.000169964
0.000135649
0.000106418
8.03127e-05
5.3863e-05
1.54767e-05
6.41774e-06
2.5485e-06
8.00744e-06
4.2483e-05
9.51596e-05
0.000147317
0.000195182
0.000238116
0.000276214
0.000309772
0.000337386
0.000356884
0.000374633
0.000393133
0.000412607
0.000432245
0.000450711
0.000466207
0.000476358
0.000481094
0.000482167
0.000479034
0.000467457
0.00044361
0.00040861
0.000364963
0.000316586
0.000267746
0.000221846
0.000180814
0.000145105
0.000114035
8.60553e-05
5.77538e-05
1.61505e-05
6.53437e-06
2.66275e-06
8.69204e-06
4.52882e-05
0.000100478
0.000155111
0.000205342
0.000250532
0.000290771
0.00032635
0.000357144
0.000377741
0.000395364
0.000413185
0.000431851
0.000450725
0.000468622
0.00048418
0.000496038
0.000502908
0.000503494
0.000496353
0.000480007
0.000453575
0.000417579
0.000374215
0.000326816
0.000278873
0.000233207
0.000191554
0.000154515
0.000121745
9.20211e-05
6.19142e-05
1.68508e-05
6.64026e-06
2.7409e-06
9.16471e-06
4.74489e-05
0.000105223
0.000162715
0.000215721
0.000263473
0.000306026
0.000343666
0.000376733
0.000400346
0.000417472
0.000434004
0.000451569
0.00046967
0.000487036
0.000502174
0.000513544
0.000519605
0.000518829
0.000509775
0.000491374
0.000463404
0.000426856
0.000383889
0.000337345
0.000290096
0.000244519
0.000202201
0.000163868
0.000129466
9.80785e-05
6.62174e-05
1.75326e-05
6.73757e-06
2.85672e-06
9.85113e-06
5.02042e-05
0.000110578
0.000170732
0.0002263
0.000276445
0.000321183
0.000360778
0.000395553
0.000421206
0.000438368
0.000454132
0.000470799
0.000488091
0.00050472
0.000519098
0.000529567
0.000534464
0.000532213
0.000521525
0.00050169
0.000472877
0.000436256
0.000393831
0.000348043
0.000301317
0.000255707
0.000212697
0.000173132
0.00013723
0.000104344
7.08377e-05
1.82412e-05
6.82384e-06
2.95471e-06
1.04063e-05
5.25657e-05
0.00011557
0.000178568
0.000236873
0.000289526
0.000336502
0.00037805
0.000414491
0.000442619
0.000459583
0.00047426
0.000489801
0.000506136
0.000521888
0.000535314
0.000544647
0.000548203
0.000544495
0.000532432
0.000511567
0.000482278
0.000445775
0.000403894
0.000358761
0.000312465
0.000266809
0.000223172
0.000182463
0.000145111
0.000110736
7.55764e-05
1.8931e-05
6.90066e-06
3.07079e-06
1.10814e-05
5.52388e-05
0.000120853
0.000186582
0.000247521
0.000302611
0.000351773
0.000395228
0.00043328
0.000463387
0.0004801
0.00049376
0.000508205
0.00052354
0.000538333
0.000550725
0.000558873
0.000561112
0.000556075
0.000542865
0.000521234
0.00049168
0.000455391
0.00041403
0.00036946
0.000323489
0.000277707
0.000233406
0.000191583
0.000152941
0.000117371
8.05278e-05
1.96858e-05
6.96823e-06
3.17992e-06
1.16863e-05
5.76842e-05
0.000125878
0.000194363
0.000257959
0.000315491
0.00036683
0.000412171
0.000451807
0.000484229
0.000500574
0.000513004
0.000526179
0.000540397
0.000554154
0.000565473
0.000572447
0.000573444
0.000567222
0.000553052
0.000530837
0.000501138
0.000465085
0.000424172
0.000380031
0.000334252
0.000288286
0.00024342
0.000200787
0.000161208
0.000124169
8.32395e-05
2.02803e-05
7.02673e-06
3.29493e-06
1.23531e-05
6.02873e-05
0.000131039
0.000202215
0.000268399
0.000328312
0.000381769
0.000428937
0.000470096
0.000504853
0.00052081
0.000531934
0.000543746
0.000556764
0.000569432
0.000579664
0.000585497
0.000585336
0.000578055
0.00056307
0.000540392
0.000510613
0.00047479
0.00043426
0.000390464
0.000344819
0.000298686
0.000253373
0.000210111
0.000169711
0.000131069
8.57924e-05
2.07932e-05
7.07905e-06
3.41083e-06
1.30134e-05
6.28441e-05
0.000136102
0.00020991
0.000278623
0.000340857
0.00039638
0.000445328
0.000487964
0.000524586
0.000540669
0.000550477
0.000560883
0.000572666
0.000584232
0.000593394
0.000598144
0.00059692
0.000588699
0.00057301
0.000549948
0.00052011
0.00048448
0.000444263
0.000400744
0.000355212
0.000308954
0.000263289
0.000219501
0.000178327
0.000138023
8.82573e-05
2.12624e-05
7.12674e-06
3.52998e-06
1.37115e-05
6.54874e-05
0.000141227
0.000217602
0.000288766
0.000353244
0.000410751
0.000461397
0.000505426
0.000543107
0.000559847
0.000568486
0.000577469
0.000588024
0.000598514
0.000606653
0.000610394
0.00060821
0.000599164
0.000582878
0.0005595
0.000529618
0.000494145
0.000454174
0.000410872
0.000365426
0.000319073
0.000273133
0.000228906
0.000187014
0.000145022
9.06211e-05
2.1695e-05
7.16701e-06
3.6545e-06
1.44102e-05
6.80771e-05
0.000146203
0.000225027
0.000298529
0.000365152
0.000424563
0.000476841
0.000522204
0.000560905
0.000577793
0.000585471
0.000593254
0.000602708
0.000612204
0.000619394
0.000622208
0.000619164
0.000609401
0.000592616
0.000568994
0.000539106
0.00050379
0.000464039
0.000420916
0.000375532
0.000329087
0.000282906
0.000238304
0.000195764
0.00015209
9.29011e-05
2.21027e-05
7.19694e-06
3.78647e-06
1.51528e-05
7.07637e-05
0.000151263
0.000232459
0.000308187
0.000376826
0.000438009
0.000491791
0.000538377
0.000578005
0.000594174
0.000601048
0.000607986
0.000616587
0.000625233
0.000631571
0.000633547
0.000629729
0.000619334
0.000602127
0.000578322
0.00054847
0.00051334
0.00047383
0.0004309
0.000385588
0.000339061
0.000292662
0.00024773
0.000204604
0.000159264
9.51086e-05
2.24871e-05
7.2162e-06
3.92556e-06
1.59047e-05
7.34143e-05
0.000156216
0.000239695
0.000317549
0.000388099
0.00045095
0.000506138
0.000553854
0.000594331
0.000608805
0.000615025
0.000621501
0.000629532
0.000637501
0.0006431
0.000644327
0.000639815
0.000628857
0.000611281
0.000587329
0.000557535
0.000522608
0.000483358
0.000440655
0.00039546
0.000348906
0.000302352
0.000257162
0.000213524
0.000166524
9.7201e-05
2.28267e-05
7.22533e-06
4.07038e-06
1.66626e-05
7.60255e-05
0.000161053
0.000246717
0.000326582
0.000398925
0.000463327
0.000519806
0.00056854
0.000608419
0.000621852
0.000627733
0.000633922
0.000641571
0.000649033
0.00065403
0.000654615
0.000649501
0.000638056
0.000620163
0.00059609
0.000566352
0.000531611
0.000492604
0.00045012
0.000405053
0.000358511
0.000311887
0.00026659
0.000222641
0.000174094
9.93424e-05
2.31876e-05
7.22766e-06
4.21777e-06
1.74063e-05
7.85428e-05
0.000165699
0.000253436
0.000335198
0.00040922
0.000475064
0.000532737
0.0005824
0.000620828
0.000633585
0.000639256
0.000645354
0.000652829
0.000659969
0.000664513
0.000664579
0.000658962
0.000647107
0.000628947
0.000604765
0.00057506
0.000540455
0.000501629
0.000459318
0.000414373
0.00036788
0.000321243
0.000275903
0.000231734
0.000181725
0.000101458
2.35456e-05
7.22579e-06
4.36925e-06
1.81677e-05
8.10736e-05
0.000170305
0.000260026
0.00034357
0.000419143
0.000486301
0.000545044
0.000595528
0.000632219
0.000644216
0.000649756
0.000655924
0.000663409
0.000670394
0.000674627
0.00067429
0.000668266
0.000656075
0.000637696
0.000613426
0.000583746
0.000549238
0.000510532
0.000468312
0.000423392
0.000376871
0.000330253
0.000285082
0.000240846
0.00018838
0.000103524
2.39046e-05
7.2181e-06
4.52005e-06
1.89096e-05
8.35159e-05
0.000174754
0.000266385
0.000351625
0.000428654
0.000497024
0.00055674
0.000607956
0.000642822
0.000653986
0.000659391
0.000665688
0.000673281
0.000680228
0.000684261
0.00068362
0.000677271
0.000664815
0.00064628
0.000621969
0.00059234
0.000557923
0.000519294
0.000477104
0.000432192
0.000385763
0.000339461
0.000294727
0.000249949
0.000192772
0.000105319
2.42271e-05
7.20234e-06
4.6706e-06
1.96525e-05
8.5937e-05
0.000179114
0.000272564
0.000359398
0.000437775
0.000507254
0.000567845
0.000619714
0.000652938
0.000663238
0.000668467
0.00067489
0.000682612
0.000689552
0.00069343
0.000692537
0.000685916
0.000673243
0.000654592
0.000630279
0.000600731
0.000566427
0.000527888
0.000485748
0.000440901
0.00039468
0.000348832
0.000304571
0.000259078
0.00019708
0.000107049
2.45412e-05
7.17877e-06
4.81612e-06
2.03759e-05
8.82961e-05
0.000183352
0.000278549
0.000366893
0.000446528
0.000517021
0.000578402
0.000630848
0.000662627
0.000672055
0.000677051
0.000683589
0.000691478
0.000698457
0.000702205
0.000701069
0.000694191
0.000681321
0.000662571
0.000638261
0.000608798
0.000574614
0.000536191
0.000494152
0.00044945
0.000403532
0.000358217
0.000314455
0.000268191
0.000201291
0.000108761
2.48597e-05
7.15042e-06
4.95821e-06
2.11019e-05
9.06464e-05
0.000187525
0.000284391
0.000374158
0.000454958
0.000526374
0.000588459
0.000641408
0.000671924
0.000680501
0.000685225
0.000691857
0.000699938
0.000707016
0.000710698
0.000709359
0.000702216
0.000689116
0.000670234
0.000645902
0.000616496
0.000582411
0.000544099
0.000502189
0.000457687
0.000412143
0.000367427
0.000324211
0.000277176
0.000205288
0.000110365
2.5152e-05
7.11681e-06
5.093e-06
2.18067e-05
9.29331e-05
0.000191562
0.000290016
0.000381119
0.000463001
0.000535263
0.000597984
0.000651387
0.000681093
0.000688907
0.000693291
0.000699908
0.000708099
0.000715263
0.000718933
0.000717467
0.000710114
0.000696782
0.000677713
0.000653278
0.000623868
0.000589849
0.000551637
0.00050986
0.000465577
0.000420428
0.000376329
0.000333673
0.000285875
0.000209012
0.000111828
2.54093e-05
7.07805e-06
5.22121e-06
2.24987e-05
9.51606e-05
0.000195451
0.000295407
0.000387773
0.000470667
0.00054371
0.000607007
0.000660813
0.000690013
0.00069717
0.000701239
0.000707851
0.000716158
0.000723392
0.000727008
0.000725386
0.000717842
0.000704328
0.000685094
0.000660524
0.000631024
0.000596983
0.000558827
0.000517184
0.000473142
0.000428416
0.000384954
0.000342862
0.000294277
0.000212462
0.000113142
2.56278e-05
7.0324e-06
5.33848e-06
2.31219e-05
9.71877e-05
0.000199045
0.000300441
0.000394021
0.000477881
0.000551658
0.000615488
0.000669659
0.000698563
0.000705099
0.000708865
0.000715526
0.000724042
0.00073145
0.000735098
0.000733362
0.000725613
0.000711872
0.000692452
0.000667756
0.000638166
0.00060405
0.00056586
0.000524281
0.000480465
0.000436171
0.000393348
0.000351833
0.000302476
0.000215727
0.000114369
2.58241e-05
6.97959e-06
5.44723e-06
2.37128e-05
9.91227e-05
0.000202464
0.000305216
0.000399932
0.000484691
0.000559144
0.000623456
0.000677952
0.000706867
0.000712851
0.000716299
0.000722982
0.0007317
0.000739328
0.000743123
0.000741419
0.00073358
0.000719656
0.000700004
0.000675085
0.000645331
0.000611127
0.00057289
0.000531308
0.000487633
0.000443814
0.000401844
0.000360718
0.000308199
0.000218792
0.000115566
2.60211e-05
6.92088e-06
5.54579e-06
2.42928e-05
0.00010103
0.000205801
0.000309838
0.00040562
0.00049121
0.000566277
0.000631013
0.000685781
0.000714638
0.000720104
0.000723278
0.00073002
0.00073898
0.000746868
0.000750848
0.000749236
0.000741415
0.000727448
0.000707685
0.000682574
0.000652574
0.000618136
0.00057976
0.000538221
0.000494873
0.000451762
0.000410674
0.000369374
0.000312648
0.0002215
0.000116608
2.6187e-05
6.85579e-06
5.63577e-06
2.48428e-05
0.000102844
0.00020896
0.000314207
0.000410993
0.000497366
0.000573004
0.000638125
0.000693126
0.000721753
0.000726698
0.000729647
0.000736495
0.000745735
0.000753931
0.000758167
0.000756731
0.00074901
0.000735075
0.000715285
0.000690087
0.000659925
0.000625249
0.000586657
0.000545111
0.000502163
0.0004599
0.000419711
0.000378017
0.00031688
0.000224029
0.000117583
2.6346e-05
6.7857e-06
5.716e-06
2.53715e-05
0.000104593
0.000211987
0.000318373
0.000416102
0.000503207
0.000579375
0.000644846
0.000700044
0.000728177
0.000732566
0.000735335
0.00074233
0.000751873
0.000760397
0.000764929
0.000763743
0.000756223
0.000742428
0.000722695
0.00069746
0.000667177
0.000632345
0.000593635
0.000552132
0.000509573
0.000468134
0.000428829
0.000386659
0.000320877
0.000226378
0.000118472
2.64816e-05
6.71145e-06
5.78961e-06
2.58784e-05
0.00010626
0.000214851
0.000322297
0.000420904
0.000508693
0.000585355
0.000651148
0.000706519
0.000733801
0.000737633
0.0007403
0.000747487
0.000757335
0.000766174
0.000771001
0.0007701
0.000762854
0.000749303
0.000729746
0.000704579
0.000674249
0.000639302
0.000600524
0.000559165
0.000517101
0.000476517
0.000438042
0.000395293
0.000324727
0.000228632
0.000119335
2.66181e-05
6.63691e-06
5.85544e-06
2.63635e-05
0.000107848
0.000217563
0.000326005
0.000425438
0.000513872
0.000591
0.000657092
0.000712616
0.000738678
0.000741953
0.00074463
0.000752092
0.000762268
0.000771403
0.000776499
0.000775875
0.000768929
0.000755685
0.000736392
0.000711396
0.000681114
0.000646121
0.00060731
0.000566106
0.000524571
0.000484926
0.000447364
0.000404009
0.000328476
0.000230867
0.000120247
2.67783e-05
6.56712e-06
5.91751e-06
2.679e-05
0.000109245
0.000219975
0.000329335
0.000429545
0.000518597
0.000596181
0.000662573
0.000718251
0.000742644
0.000745378
0.000748204
0.000756049
0.000766591
0.000776012
0.000781353
0.00078099
0.000774357
0.000761463
0.000742511
0.000717784
0.000687652
0.000652698
0.000613908
0.000572884
0.000531887
0.000493204
0.00045662
0.000412694
0.000331979
0.00023294
0.00012109
2.69218e-05
6.50178e-06
5.97818e-06
2.72216e-05
0.000110638
0.000222342
0.000332559
0.000433484
0.0005231
0.000601097
0.000667758
0.000723569
0.000745915
0.000748098
0.000751172
0.000759466
0.000770374
0.000780033
0.000785553
0.000785392
0.00077903
0.000766476
0.000747894
0.000723499
0.000693603
0.000658771
0.000620052
0.000579207
0.00053872
0.000501029
0.00046552
0.000420397
0.000335076
0.000234662
0.000121681
2.69978e-05
6.43976e-06
6.03982e-06
2.7628e-05
0.000111934
0.000224531
0.000335531
0.000437114
0.000527256
0.000605644
0.000672563
0.000728505
0.000748437
0.000750142
0.000753628
0.000762469
0.000773756
0.000783614
0.00078925
0.00078922
0.000783064
0.000770803
0.000752575
0.000728537
0.000698934
0.000664286
0.000625692
0.00058511
0.000545332
0.000508797
0.000473523
0.000423841
0.000337507
0.000235999
0.000122079
2.70249e-05
6.38268e-06
6.10227e-06
2.8018e-05
0.000113154
0.000226572
0.00033829
0.000440477
0.000531105
0.000609859
0.00067702
0.000733084
0.00074998
0.000751326
0.000755456
0.00076497
0.000776666
0.000786708
0.00079243
0.000792494
0.000786496
0.000774478
0.000756566
0.000732875
0.000703589
0.000669186
0.0006308
0.000590556
0.000551444
0.000515761
0.000480321
0.00042658
0.000339294
0.000236865
0.000122205
2.69812e-05
6.33061e-06
6.16753e-06
2.8376e-05
0.000114227
0.000228353
0.000340702
0.000443432
0.000534508
0.000613606
0.000681007
0.000737207
0.000750717
0.00075191
0.000756894
0.000767149
0.00077925
0.000789466
0.000795273
0.000795423
0.000789561
0.000777751
0.000760114
0.000736746
0.000707785
0.000673676
0.00063556
0.000595636
0.00055697
0.000521687
0.000485737
0.000428659
0.000340459
0.000237239
0.000122029
2.68519e-05
6.28196e-06
6.23505e-06
2.87061e-05
0.00011523
0.000230051
0.000342999
0.000446221
0.00053768
0.000617059
0.000684649
0.00074061
0.000751051
0.000752477
0.000758294
0.00076918
0.000781635
0.000792027
0.00079793
0.000798172
0.000792445
0.000780832
0.00076346
0.000740409
0.000711796
0.00067804
0.000640268
0.000600676
0.000562287
0.000527025
0.000490252
0.00043043
0.000341294
0.000237341
0.000121708
2.66858e-05
6.23601e-06
6.30658e-06
2.90332e-05
0.000116206
0.000231683
0.00034518
0.000448836
0.000540623
0.000620231
0.00068795
0.000741086
0.00075106
0.000753059
0.000759604
0.000771044
0.000783828
0.00079439
0.000800385
0.000800714
0.00079511
0.000783681
0.000766557
0.00074382
0.000715591
0.000682289
0.000645025
0.000605931
0.000567878
0.000532487
0.000494626
0.000432261
0.000342081
0.000237353
0.000121336
2.65088e-05
6.19004e-06
6.37847e-06
2.93474e-05
0.000117132
0.000233221
0.00034722
0.000451265
0.00054334
0.000623144
0.00069097
0.00074143
0.000750957
0.000753534
0.000760821
0.000772811
0.000785903
0.000796608
0.000802678
0.000803082
0.000797592
0.000786329
0.000769434
0.000747006
0.000719196
0.000686463
0.000649925
0.000611636
0.000574231
0.000538882
0.000499807
0.000434527
0.000343129
0.000237481
0.000121021
2.63471e-05
6.14026e-06
6.45019e-06
2.96596e-05
0.000118038
0.000234695
0.000349141
0.000453522
0.000545838
0.000625801
0.000693711
0.000741622
0.000750702
0.000753803
0.000761778
0.000774291
0.000787682
0.000798517
0.000804643
0.000805104
0.000799718
0.000788619
0.000771956
0.000749849
0.000722504
0.000690454
0.000654876
0.000617782
0.000581554
0.000546772
0.000506629
0.000437618
0.000344828
0.000238045
0.000120952
2.62492e-05
6.08475e-06
6.51808e-06
2.99351e-05
0.000118827
0.000235986
0.000350833
0.000455517
0.000548052
0.000628163
0.000696157
0.000742
0.000750687
0.000754209
0.000762749
0.000775689
0.000789316
0.000800246
0.0008064
0.000806886
0.000801562
0.000790587
0.000774119
0.000752305
0.000725414
0.000694083
0.000659609
0.000624041
0.000589564
0.000556064
0.000515241
0.000441633
0.000347369
0.00023926
0.000121274
2.62541e-05
6.02664e-06
6.58279e-06
3.01907e-05
0.000119545
0.00023713
0.000352309
0.000457243
0.000549965
0.000630212
0.000698295
0.000742578
0.000750988
0.00075486
0.000763868
0.000777163
0.000790981
0.000801974
0.000808127
0.000808605
0.000803302
0.000792392
0.000776048
0.000754445
0.000727919
0.000697234
0.000663854
0.000629965
0.000597654
0.000566111
0.000525125
0.000446222
0.000350491
0.000240936
0.000121843
2.63117e-05
5.96742e-06
6.64359e-06
3.04008e-05
0.000120133
0.000238071
0.000353527
0.000458673
0.000551559
0.000631933
0.000700114
0.00074336
0.00075162
0.000755786
0.000765178
0.00077877
0.000792748
0.000803784
0.000809913
0.000810353
0.000805031
0.000794135
0.000777842
0.000756349
0.000730047
0.000699824
0.000667366
0.000635129
0.000605249
0.000575979
0.00053392
0.000450958
0.000353927
0.000242928
0.000122585
2.64061e-05
5.9101e-06
6.70353e-06
3.06434e-05
0.000120801
0.000239079
0.00035476
0.000460055
0.000553046
0.000633502
0.000701753
0.000744285
0.000752534
0.000757013
0.000766765
0.00078063
0.000794751
0.000805813
0.000811895
0.000812258
0.000806866
0.000795923
0.000779602
0.000758099
0.000731857
0.000701922
0.000670271
0.000639661
0.000612084
0.00058423
0.000538678
0.000455145
0.000357167
0.000244922
0.000123358
2.65116e-05
5.85817e-06
6.7588e-06
3.08609e-05
0.000121402
0.00023997
0.000355829
0.000461235
0.000554301
0.000634817
0.000703125
0.000744973
0.000753335
0.000758237
0.00076843
0.000782624
0.000796924
0.00080803
0.000814062
0.000814332
0.000808837
0.000797797
0.000781385
0.000759791
0.000733484
0.000703631
0.000672439
0.000642924
0.000617019
0.000590332
0.000542449
0.000458561
0.000359908
0.000246658
0.000124012
2.65924e-05
5.81319e-06
6.81244e-06
3.10453e-05
0.0001219
0.000240697
0.00035669
0.000462172
0.000555287
0.000635843
0.000704194
0.000745374
0.000753923
0.000759363
0.000770113
0.000784732
0.00079928
0.000810475
0.000816482
0.000816662
0.00081105
0.000799884
0.000783336
0.000761586
0.000735109
0.000705123
0.000673981
0.000644897
0.000619881
0.000594039
0.000545112
0.000461061
0.00036199
0.000248011
0.000124495
2.66419e-05
5.77585e-06
6.86578e-06
3.12386e-05
0.00012242
0.000241421
0.000357496
0.000462997
0.000556105
0.000636654
0.000705012
0.000745395
0.000754179
0.000760279
0.000771717
0.000786871
0.000801751
0.000813099
0.000819129
0.000819255
0.000813549
0.000802267
0.000785583
0.000763665
0.000736967
0.000706707
0.000675282
0.000646033
0.00062113
0.000595669
0.000546646
0.000462543
0.000363269
0.000248854
0.000124745
2.66461e-05
5.74435e-06
6.91707e-06
3.14368e-05
0.000122954
0.000242142
0.000358264
0.000463739
0.000556795
0.00063729
0.000705608
0.000744798
0.000753814
0.000760718
0.000772999
0.000788811
0.000804112
0.000815679
0.00082179
0.000821916
0.000816167
0.000804819
0.000788049
0.000766014
0.000739138
0.00070859
0.000676732
0.000646931
0.000621517
0.000595881
0.000547209
0.000463042
0.000363682
0.000249079
0.000124687
2.65817e-05
5.71447e-06
6.96541e-06
3.16161e-05
0.000123429
0.000242768
0.000358906
0.000464325
0.000557295
0.0006377
0.000705939
0.000743457
0.000752646
0.000760495
0.000773789
0.000790385
0.000806191
0.000818037
0.000824287
0.000824475
0.000818749
0.000807401
0.000790617
0.000768549
0.000741594
0.000710862
0.00067863
0.000648202
0.000621966
0.000595671
0.000547254
0.000462909
0.000363458
0.000248811
0.000124383
2.64677e-05
5.68233e-06
7.00976e-06
3.17542e-05
0.000123789
0.000243233
0.000359357
0.000464695
0.000557556
0.000637849
0.00070599
0.000741637
0.000750951
0.000759798
0.000774182
0.000791623
0.000807971
0.00082013
0.00082656
0.000826867
0.000821231
0.000809962
0.000793254
0.000771268
0.000744394
0.000713694
0.000681343
0.000650508
0.000623483
0.000596174
0.000547278
0.000462584
0.000362955
0.0002483
0.000123979
2.63395e-05
5.64588e-06
7.05212e-06
3.19023e-05
0.000124172
0.000243703
0.000359778
0.000464995
0.000557703
0.000637842
0.000705842
0.00073923
0.000748639
0.000758572
0.00077412
0.000792435
0.000809324
0.000821796
0.000828424
0.000828887
0.000823397
0.000812273
0.000795719
0.000773917
0.000747284
0.00071689
0.000684849
0.000654144
0.000626762
0.000598305
0.000547659
0.000462406
0.000362431
0.000247698
0.000123534
2.62043e-05
5.60307e-06
7.0905e-06
3.19895e-05
0.000124387
0.00024395
0.000359956
0.000465041
0.00055759
0.000637562
0.000705405
0.000736107
0.000745609
0.00075674
0.00077353
0.000792735
0.000810156
0.000822932
0.000829765
0.000830406
0.000825091
0.000814145
0.000797795
0.000776269
0.000750059
0.000720303
0.000689094
0.000659198
0.00063208
0.000602516
0.000548774
0.000462782
0.000362268
0.000247297
0.000123211
2.6101e-05
5.55512e-06
7.13e-06
3.20685e-05
0.000124572
0.000244145
0.000360056
0.000464983
0.000557341
0.000637119
0.00070478
0.00073257
0.000742207
0.000754609
0.000772649
0.000792704
0.00081061
0.000823663
0.000830694
0.000831512
0.000826373
0.000815612
0.000799484
0.000778287
0.000752628
0.000723767
0.000693837
0.000665392
0.000639219
0.000608755
0.000550694
0.000463867
0.000362657
0.000247252
0.000123073
2.6041e-05
5.50567e-06
7.16935e-06
3.21616e-05
0.000124797
0.000244383
0.00036018
0.000464917
0.000557048
0.000636593
0.000704036
0.000728542
0.000738405
0.000752186
0.000771471
0.00079231
0.000810644
0.000823945
0.000831156
0.000832143
0.000827173
0.000816592
0.000800688
0.000779838
0.000754786
0.000726957
0.000698586
0.000672071
0.000647458
0.00061643
0.000553162
0.000465479
0.000363472
0.000247451
0.000122998
2.59801e-05
5.45652e-06
7.20807e-06
3.22045e-05
0.000124886
0.000244448
0.000360119
0.000464658
0.000556554
0.000635858
0.000703091
0.000724058
0.000734359
0.000749599
0.000770042
0.000791566
0.000810275
0.000823797
0.000831171
0.000832306
0.000827487
0.000817068
0.000801367
0.000780841
0.000756376
0.000729592
0.000702878
0.00067855
0.000655922
0.000624702
0.000555872
0.000467408
0.000364604
0.000247881
0.000123017
2.59296e-05
5.41004e-06
7.24962e-06
3.22662e-05
0.00012502
0.000244561
0.000360089
0.000464396
0.000556004
0.000634995
0.000700513
0.00071941
0.000730645
0.000747137
0.000768524
0.000790639
0.000809683
0.000823398
0.000830908
0.000832164
0.000827467
0.000817175
0.00080163
0.00078136
0.000757388
0.000731532
0.000706383
0.000684263
0.00066387
0.000632845
0.000558534
0.000469416
0.000365886
0.000248452
0.000123105
2.58972e-05
5.36862e-06
7.29343e-06
3.23463e-05
0.000125203
0.00024473
0.000360106
0.000464164
0.000555458
0.000634092
0.000695867
0.000714451
0.000726753
0.000744454
0.000766745
0.000789411
0.00080875
0.000822622
0.00083024
0.000831597
0.000827002
0.00081681
0.000801374
0.000781276
0.00075767
0.000732616
0.000708992
0.000689091
0.000670302
0.00063628
0.000560678
0.000471118
0.000366987
0.000248888
0.00012306
2.58259e-05
5.33216e-06
7.338e-06
3.2374e-05
0.000125233
0.0002447
0.000359913
0.000463729
0.000554721
0.000633006
0.00069091
0.000709208
0.000722634
0.000741562
0.000764738
0.000787914
0.000807503
0.000821499
0.000829201
0.000830643
0.000826133
0.000816014
0.000800638
0.000780634
0.000757291
0.000732906
0.000710586
0.000692479
0.000674727
0.000637933
0.000562258
0.000472459
0.000367906
0.000249261
0.000122992
2.57496e-05
5.30315e-06
7.38594e-06
3.23814e-05
0.000125194
0.000244552
0.000359565
0.000463117
0.000553799
0.000631738
0.00068585
0.000703927
0.0007185
0.000738647
0.000762673
0.000786312
0.000806106
0.000820188
0.000827949
0.000829457
0.000825014
0.000814942
0.000799582
0.000779593
0.000756368
0.000732379
0.000710906
0.000694026
0.000677128
0.000638887
0.00056327
0.000473394
0.000368592
0.000249546
0.000122909
2.56831e-05
5.28236e-06
7.43549e-06
3.23529e-05
0.000125053
0.00024425
0.000359025
0.000462291
0.000552657
0.000630252
0.000680667
0.000698615
0.000714362
0.000735702
0.000760526
0.000784568
0.000804517
0.000818651
0.000826456
0.000828028
0.000823657
0.000813636
0.000798283
0.000778258
0.000755008
0.000731112
0.000709988
0.000693764
0.00067756
0.000639064
0.000563599
0.000473773
0.000368871
0.000249579
0.0001227
2.55906e-05
5.26639e-06
7.48687e-06
3.23237e-05
0.000124891
0.00024388
0.000358364
0.000461304
0.000551329
0.000628574
0.000675353
0.00069327
0.000710234
0.000732757
0.000758335
0.000782724
0.000802779
0.000816934
0.000824767
0.000826401
0.000822112
0.000812159
0.000796823
0.000776741
0.000753358
0.000729299
0.000708085
0.000692012
0.000676337
0.000638532
0.00056328
0.0004736
0.000368731
0.000249346
0.000122364
2.54727e-05
5.2525e-06
7.53723e-06
3.2241e-05
0.00012457
0.000243264
0.0003574
0.00045999
0.000549676
0.00062659
0.00066999
0.00068799
0.000706181
0.000729846
0.000756113
0.000780788
0.0008009
0.000815049
0.000822901
0.000824602
0.000820407
0.000810541
0.00079524
0.000775096
0.000751503
0.000727061
0.000705354
0.000688935
0.000673586
0.00063736
0.000562367
0.000472911
0.000368189
0.000248849
0.000121894
2.53277e-05
5.23866e-06
7.5889e-06
3.21655e-05
0.000124248
0.000242584
0.0003563
0.000458482
0.000547802
0.000624388
0.000664747
0.00068297
0.000702401
0.000727152
0.000754023
0.000778893
0.000798994
0.000813092
0.00082094
0.000822708
0.000818629
0.000808891
0.00079368
0.000773519
0.000749717
0.000724776
0.000702276
0.000685057
0.000669728
0.000635651
0.000560932
0.000471763
0.0003673
0.000248149
0.000121351
2.51704e-05
5.22361e-06
7.63808e-06
3.20874e-05
0.000123905
0.000241813
0.00035503
0.000456744
0.000545666
0.000621925
0.000659506
0.0006781
0.000698825
0.000724642
0.000752049
0.00077704
0.00079706
0.000811051
0.000818857
0.000820671
0.000816717
0.000807148
0.0007921
0.000772022
0.000748106
0.000722706
0.000699303
0.00068096
0.000665277
0.000633514
0.000559031
0.000470169
0.000366052
0.00024723
0.000120726
2.49987e-05
5.20687e-06
7.68406e-06
3.19854e-05
0.000123481
0.000240871
0.000353502
0.000454688
0.00054319
0.000619136
0.000654321
0.000673469
0.000695534
0.000722381
0.000750261
0.000775309
0.000795197
0.000809029
0.000816739
0.000818554
0.000814701
0.000805312
0.000790479
0.000770578
0.000746685
0.000720974
0.000696733
0.000677098
0.000660661
0.000631083
0.000556734
0.000468136
0.000364394
0.000246006
0.000119942
2.47868e-05
5.18582e-06
7.72597e-06
3.18704e-05
0.00012299
0.000239766
0.000351717
0.000452302
0.000540343
0.000615981
0.000648905
0.00066887
0.000692439
0.000720347
0.000748676
0.000773749
0.000793464
0.000807081
0.000814626
0.000816375
0.000812575
0.000803353
0.000788774
0.00076915
0.000745444
0.000719659
0.000694862
0.000674068
0.000656468
0.00062858
0.000554224
0.00046582
0.000362442
0.000244551
0.000119044
2.4547e-05
5.1579e-06
7.75995e-06
3.16346e-05
0.000122086
0.000238036
0.00034921
0.000449162
0.000536748
0.000612142
0.000642889
0.000664116
0.00068938
0.000718384
0.000747189
0.000772325
0.000791876
0.000805246
0.000812561
0.00081416
0.000810331
0.000801224
0.000786901
0.000767637
0.0007443
0.000718724
0.000693755
0.000672211
0.000653369
0.000624918
0.000551839
0.000463539
0.00036046
0.000243064
0.00011816
2.43157e-05
5.12285e-06
7.78883e-06
3.14053e-05
0.000121208
0.000236247
0.000346502
0.00044568
0.00053268
0.000605993
0.000636354
0.000659405
0.000686365
0.000716491
0.000745864
0.000771157
0.000790605
0.000803746
0.000810802
0.000812185
0.000808235
0.000799147
0.000785016
0.000766118
0.000743267
0.000718165
0.000693429
0.000671618
0.000651888
0.000622393
0.000549803
0.000461452
0.000358547
0.00024158
0.000117284
2.40817e-05
5.07942e-06
7.81183e-06
3.11753e-05
0.000120362
0.000234486
0.000343774
0.0004421
0.000528429
0.00059902
0.000629678
0.00065431
0.000683006
0.000714443
0.000744547
0.000770103
0.000789527
0.000802494
0.000809317
0.00081047
0.000806347
0.0007972
0.000783179
0.000764606
0.000742303
0.000717898
0.000693826
0.000672343
0.000652279
0.000621758
0.00054834
0.000459806
0.000356931
0.000240276
0.00011652
2.38715e-05
5.02892e-06
7.83403e-06
3.09662e-05
0.000119582
0.000232776
0.000341035
0.000438429
0.000524015
0.000591971
0.000623144
0.00064927
0.000679465
0.000712131
0.000743093
0.00076909
0.000788614
0.000801482
0.000808116
0.000809049
0.000804723
0.000795444
0.000781437
0.000763102
0.00074132
0.000717723
0.000694637
0.000674062
0.000654359
0.000622636
0.000547469
0.00045866
0.000355676
0.000239175
0.000115838
2.36699e-05
4.97284e-06
7.85451e-06
3.08052e-05
0.00011896
0.000231262
0.000338454
0.000434827
0.000519549
0.000583952
0.000615943
0.000644209
0.000676185
0.000709928
0.000741504
0.000767897
0.000787652
0.000800574
0.000807124
0.000807892
0.000803368
0.00079391
0.000779815
0.000761589
0.000740254
0.000717579
0.000695923
0.000676896
0.000657481
0.000622244
0.000546904
0.000457865
0.000354711
0.000238233
0.000115196
2.34608e-05
4.91197e-06
7.87323e-06
3.06374e-05
0.000118328
0.000229718
0.000335808
0.000431107
0.000514893
0.000574974
0.000607724
0.000638514
0.000672844
0.000708016
0.000740115
0.000766587
0.000786379
0.000799405
0.000806034
0.000806766
0.0008021
0.000792453
0.000778211
0.000760024
0.000739106
0.000717419
0.000697345
0.000680002
0.000660871
0.000621895
0.000546501
0.000457333
0.000354032
0.000237503
0.000114649
2.32659e-05
4.85042e-06
7.89564e-06
3.04975e-05
0.000117775
0.000228245
0.000333177
0.000427328
0.000510095
0.000564953
0.000598536
0.000632112
0.000669036
0.000705939
0.000738875
0.000765518
0.000785198
0.000798134
0.000804792
0.000805589
0.000800892
0.000791105
0.000776698
0.000758473
0.000737857
0.000717034
0.000698445
0.000682767
0.000663991
0.000621296
0.000546008
0.000456861
0.0003535
0.000236915
0.000114167
2.30835e-05
4.7922e-06
7.92481e-06
3.03671e-05
0.00011723
0.000226737
0.000330442
0.000423371
0.000505062
0.000553508
0.000588179
0.000624934
0.000664556
0.000703137
0.000736986
0.000764074
0.000783895
0.000796796
0.000803375
0.000804151
0.000799471
0.000789642
0.000775117
0.000756811
0.000736355
0.000716165
0.000698795
0.000684598
0.000666228
0.000620118
0.00054509
0.000456129
0.000352837
0.000236253
0.000113609
2.28778e-05
4.73848e-06
7.96117e-06
3.02072e-05
0.000116577
0.000225024
0.000327374
0.000418946
0.000498439
0.000540619
0.000577245
0.000617407
0.000659519
0.000699506
0.000734123
0.000761711
0.000781888
0.000795009
0.000801667
0.000802424
0.000797703
0.000787831
0.000773231
0.000754828
0.000734394
0.000714554
0.000698017
0.000684954
0.000666986
0.00061819
0.000543556
0.000454941
0.000351883
0.000235425
0.000112958
2.26571e-05
4.69162e-06
8.00319e-06
2.99955e-05
0.000115779
0.000223104
0.000323999
0.000414008
0.000484838
0.000526932
0.000566493
0.000609593
0.000653772
0.000694977
0.00073027
0.000758311
0.000778908
0.000792427
0.0007994
0.000800335
0.000795652
0.000785722
0.000771024
0.000752506
0.000731978
0.000712207
0.000696064
0.00068368
0.000666019
0.000615412
0.000541264
0.000453124
0.00035045
0.000234266
0.000112104
2.23922e-05
4.6489e-06
8.04822e-06
2.97339e-05
0.00011482
0.000220957
0.000320369
0.000408826
0.000471214
0.000513213
0.000555577
0.000601449
0.000647476
0.00068967
0.000725455
0.000753821
0.000774772
0.000788738
0.000796188
0.000797516
0.000793074
0.000783228
0.000768476
0.000749829
0.000729138
0.000709206
0.000693015
0.000680772
0.000663226
0.000611829
0.000538243
0.000450702
0.000348581
0.000232858
0.000111156
2.21269e-05
4.61191e-06
8.09093e-06
2.9366e-05
0.000113522
0.000218313
0.000316179
0.000403139
0.000457558
0.000499881
0.000545082
0.000593459
0.00064097
0.000683849
0.000719928
0.000748495
0.000769706
0.000784046
0.000791989
0.000793862
0.000789891
0.000780357
0.000765728
0.000747017
0.000726138
0.00070593
0.000689394
0.000676831
0.0006591
0.000607572
0.000534573
0.000447714
0.00034628
0.000231182
0.000110085
2.18392e-05
4.57439e-06
8.13319e-06
2.89537e-05
0.000111999
0.00021522
0.000311357
0.000395973
0.000443886
0.000487532
0.000535518
0.000585882
0.000634377
0.000677629
0.00071384
0.000742512
0.000763895
0.000778507
0.000786845
0.000789242
0.000785884
0.000776925
0.000762721
0.00074421
0.00072327
0.000702768
0.000685716
0.000672462
0.00065415
0.000602773
0.000530358
0.000444252
0.000343661
0.000229391
0.000109056
2.15926e-05
4.54124e-06
8.1725e-06
2.84522e-05
0.000110187
0.000211598
0.000305692
0.000382379
0.000430152
0.000476196
0.000526466
0.000578337
0.000627611
0.000671152
0.000707416
0.000736088
0.000757523
0.000772292
0.000780911
0.000783731
0.00078095
0.000772701
0.000759226
0.000741317
0.000720709
0.00070019
0.000682739
0.00066871
0.000649461
0.000597675
0.000525751
0.000440376
0.000340685
0.000227368
0.000107926
2.13197e-05
4.50287e-06
8.21285e-06
2.79356e-05
0.000108271
0.000207762
0.000299728
0.000368778
0.000416478
0.000464918
0.000517515
0.000570891
0.000620874
0.000664612
0.000700835
0.000729412
0.000750794
0.000765596
0.000774362
0.000777466
0.000775131
0.000767518
0.000754867
0.000737876
0.0007181
0.000698077
0.000680562
0.000665779
0.00064522
0.000592444
0.00052089
0.000436188
0.000337444
0.000225228
0.000106845
2.10909e-05
4.46989e-06
8.25291e-06
2.73628e-05
0.000106126
0.000203548
0.000293308
0.0003549
0.000402768
0.000453685
0.000508542
0.000563303
0.000613908
0.000657806
0.000693981
0.00072245
0.000743737
0.000758498
0.000767309
0.00077058
0.000768573
0.00076149
0.000749611
0.000733647
0.000715075
0.000696192
0.000679379
0.000664405
0.000642459
0.000587514
0.000516153
0.000431959
0.000334035
0.000222869
0.00010558
2.07947e-05
4.42601e-06
8.29555e-06
2.67502e-05
0.000103759
0.000198938
0.000286468
0.000340829
0.000389239
0.000442644
0.000499546
0.000555467
0.000606569
0.000650602
0.000686748
0.000715123
0.0007363
0.000750972
0.000759749
0.000763084
0.000761287
0.000754618
0.000743414
0.000728436
0.000711162
0.000693773
0.000678288
0.000663836
0.000640797
0.000582846
0.000511568
0.000427751
0.000330563
0.000220466
0.00010437
2.05428e-05
4.39139e-06
8.34284e-06
2.61241e-05
0.000101216
0.000193814
0.000275893
0.00032687
0.000376844
0.000432346
0.000490686
0.000547401
0.000598893
0.000643083
0.000679241
0.000707538
0.000728595
0.000743144
0.000751833
0.000755153
0.000753461
0.000747075
0.000736402
0.000722282
0.000706263
0.000690553
0.000676984
0.000663758
0.000638552
0.000578782
0.000507554
0.000423951
0.000327227
0.000217901
0.000102867
2.01724e-05
4.3415e-06
8.39283e-06
2.54976e-05
9.86793e-05
0.000188548
0.000262893
0.00031329
0.000364856
0.000422032
0.000481654
0.00053919
0.000591106
0.000635439
0.000671571
0.000699752
0.000720656
0.00073505
0.000743612
0.00074686
0.000745187
0.000738957
0.000728633
0.000715145
0.000700178
0.000686037
0.000674292
0.000661933
0.000634226
0.00057469
0.000503687
0.000420394
0.000324176
0.000215627
0.000101614
1.99085e-05
4.30855e-06
8.44558e-06
2.48477e-05
9.60734e-05
0.000183181
0.00025007
0.000300043
0.000353283
0.000412115
0.000472888
0.000531106
0.000583344
0.000627754
0.000663816
0.000691854
0.000712586
0.000726815
0.000735243
0.00073841
0.000736731
0.000730598
0.000720509
0.000707473
0.00069332
0.000680497
0.00067044
0.000659227
0.000629983
0.000570819
0.000500101
0.00041705
0.000321122
0.000213055
9.99068e-05
1.94507e-05
4.24985e-06
8.49807e-06
2.41829e-05
9.34379e-05
0.000177771
0.00023755
0.000287227
0.000342167
0.000402618
0.000464406
0.00052312
0.000575544
0.000619951
0.000655881
0.000683723
0.000704246
0.000718285
0.000726562
0.000729633
0.000727932
0.000721863
0.000711928
0.00069914
0.000685353
0.000673091
0.00066388
0.000653721
0.000625062
0.000566459
0.000496218
0.000413584
0.00031809
0.000210603
9.83615e-05
1.90942e-05
4.22244e-06
8.52609e-06
2.34795e-05
9.06725e-05
0.000172271
0.000225391
0.000274988
0.000331596
0.000393556
0.000456218
0.000515237
0.000567639
0.000611907
0.000647665
0.000675302
0.000695618
0.000709482
0.000717636
0.000720647
0.000718955
0.000712972
0.000703178
0.000690552
0.00067693
0.000664905
0.000656246
0.000647275
0.000620256
0.000562365
0.000492694
0.000410468
0.000315249
0.000208041
9.64522e-05
1.85577e-05
4.16863e-06
8.53138e-06
2.28059e-05
8.7887e-05
0.000166212
0.000214007
0.000263939
0.000321919
0.000384975
0.000448271
0.000507508
0.000559791
0.000603743
0.000639153
0.000666497
0.000686572
0.000700241
0.000708261
0.00071121
0.000709535
0.000703648
0.000693996
0.000681475
0.00066777
0.00065535
0.000646234
0.000637879
0.000614489
0.000557485
0.000488645
0.000407178
0.000312655
0.000206127
9.53056e-05
1.83216e-05
4.16209e-06
8.53857e-06
2.21226e-05
8.48431e-05
0.000156268
0.000203536
0.000254323
0.000312982
0.000376467
0.000440062
0.000499469
0.000551716
0.000595383
0.000630346
0.000657263
0.000677046
0.000690562
0.000698527
0.000701494
0.000699912
0.000694185
0.000684733
0.000672388
0.000658727
0.000646104
0.000636677
0.000628895
0.000608978
0.000552916
0.000484935
0.000404182
0.000310192
0.000204064
9.37822e-05
1.78855e-05
4.10969e-06
8.54961e-06
2.1584e-05
8.23759e-05
0.000147926
0.000194156
0.000245207
0.00030436
0.00036828
0.000432116
0.000491522
0.000543561
0.000586862
0.000621345
0.000647732
0.000667058
0.000680304
0.000688201
0.000691236
0.000689801
0.000684289
0.000675083
0.000662942
0.000649315
0.00063637
0.000626167
0.000617802
0.000600983
0.000546981
0.000480117
0.000400485
0.000307591
0.000202483
9.30529e-05
1.77858e-05
4.10779e-06
8.55456e-06
2.09936e-05
7.98159e-05
0.000139941
0.000185389
0.000236812
0.000296368
0.000360478
0.000424239
0.000483325
0.00053488
0.000577658
0.00061167
0.00063766
0.000656651
0.000669644
0.000677429
0.000680536
0.000679341
0.000674169
0.000665337
0.000653555
0.000640214
0.000627419
0.00061723
0.000608958
0.000592928
0.000541443
0.000475541
0.000396786
0.000304643
0.000200172
9.14611e-05
1.73255e-05
4.02966e-06
8.55521e-06
2.04655e-05
7.74738e-05
0.000132752
0.000177348
0.000228903
0.000288662
0.000352783
0.000416264
0.000474787
0.000525598
0.000567605
0.000600968
0.00062652
0.000645283
0.000658179
0.000665928
0.000669079
0.000668074
0.00066325
0.000654855
0.000643492
0.00063043
0.000617623
0.00060701
0.000598077
0.000582212
0.000534288
0.000469577
0.000392112
0.000301345
0.000198252
9.07008e-05
1.72407e-05
4.01145e-06
8.54212e-06
1.97811e-05
7.46784e-05
0.000125514
0.000169343
0.000220976
0.000280811
0.000344746
0.000407699
0.000465411
0.000515288
0.000556417
0.000589091
0.000614211
0.000632811
0.000645778
0.000653755
0.000657195
0.0006565
0.000652061
0.000644164
0.00063338
0.000620905
0.000608641
0.000598531
0.000590124
0.000574931
0.000527945
0.000464158
0.000387587
0.000297656
0.000195364
8.8781e-05
1.66793e-05
3.89661e-06
8.51659e-06
1.90549e-05
7.17251e-05
0.000118376
0.000161436
0.000213068
0.00027288
0.000336482
0.000398697
0.000455352
0.000504065
0.00054415
0.000576048
0.000600707
0.000619135
0.000632168
0.000640396
0.000644216
0.000643969
0.000640013
0.000632624
0.00062237
0.00061037
0.000598361
0.000588127
0.000579293
0.000564159
0.000519814
0.000457292
0.000382162
0.000293834
0.000193201
8.80155e-05
1.66085e-05
3.86708e-06
8.47251e-06
1.80519e-05
6.78399e-05
0.000110576
0.000152805
0.000204244
0.000263804
0.000326837
0.000388103
0.000443559
0.000491068
0.000530169
0.000561429
0.00058581
0.000604264
0.000617548
0.000626179
0.000630512
0.00063088
0.000627617
0.000620937
0.00061138
0.000600102
0.000588888
0.000579526
0.000571605
0.000557218
0.000512852
0.000451235
0.000377
0.000289538
0.000189789
8.57499e-05
1.59342e-05
3.72481e-06
8.36446e-06
1.6942e-05
6.35291e-05
0.00010245
0.000143754
0.000194885
0.000254071
0.000316361
0.000376449
0.000430481
0.000476633
0.000514704
0.000545366
0.000569556
0.000588137
0.000601759
0.000610861
0.000615746
0.000616742
0.000614194
0.000608278
0.000599446
0.000588741
0.000577828
0.000568383
0.000560055
0.000545705
0.000503995
0.000443756
0.000371111
0.000285445
0.000187568
8.50638e-05
1.58933e-05
3.69788e-06
8.23283e-06
1.54838e-05
5.80168e-05
9.33301e-05
0.000133407
0.000183818
0.000242273
0.000303539
0.000362267
0.000414838
0.000459759
0.000497053
0.000527434
0.000551759
0.000570761
0.000584977
0.000594765
0.000600389
0.000602175
0.000600485
0.000595476
0.000587583
0.000577835
0.000567902
0.000559502
0.000552268
0.000538761
0.000496802
0.000437458
0.000365682
0.000280858
0.000183871
8.25815e-05
1.51372e-05
3.54176e-06
8.09935e-06
1.39017e-05
5.21957e-05
8.40026e-05
0.000122458
0.00017179
0.000229265
0.000289274
0.000346395
0.000397326
0.000440984
0.000477616
0.000507925
0.000532613
0.000552236
0.000567191
0.000577751
0.000584153
0.000586746
0.000585927
0.00058182
0.000574783
0.000565737
0.0005562
0.000547739
0.000540073
0.000526646
0.000487712
0.000429887
0.000359834
0.000276927
0.0001819
8.21325e-05
1.51657e-05
3.53011e-06
7.97102e-06
1.20301e-05
4.56409e-05
7.40825e-05
0.000110217
0.00015773
0.000213673
0.000272023
0.000327277
0.000376507
0.000419068
0.000455389
0.000486073
0.000511589
0.00053226
0.00054832
0.000559954
0.000567381
0.000570985
0.000571218
0.000568178
0.000562199
0.00055421
0.000545789
0.000538581
0.000532282
0.000519922
0.000480607
0.000423699
0.000354479
0.000272333
0.000178107
7.95239e-05
1.43561e-05
3.36847e-06
7.86957e-06
1.0732e-05
4.03471e-05
6.48259e-05
9.80613e-05
0.000143376
0.000197551
0.000253917
0.00030684
0.000353932
0.000395158
0.000431162
0.000462389
0.000488983
0.000510956
0.000528325
0.000541166
0.000549684
0.000554322
0.000555619
0.000553638
0.000548625
0.000541389
0.000533371
0.000526124
0.000519502
0.000507473
0.000471556
0.000416394
0.000349077
0.000268954
0.00017669
7.94792e-05
1.44984e-05
3.37918e-06
7.79688e-06
9.63724e-06
3.52543e-05
5.57446e-05
8.55851e-05
0.000128069
0.000179972
0.0002339
0.000283995
0.000328529
0.000368213
0.000403948
0.000435979
0.000464043
0.000487763
0.000506873
0.000521302
0.000531231
0.000537167
0.000539749
0.000539021
0.000535188
0.000529068
0.000522196
0.000516283
0.000511254
0.000500627
0.000464339
0.000410179
0.000343718
0.000264322
0.000172792
7.67407e-05
1.36438e-05
3.21788e-06
7.7594e-06
8.91688e-06
3.14213e-05
4.8193e-05
7.477e-05
0.000114567
0.000164439
0.000215829
0.000262397
0.00030337
0.000340604
0.000375464
0.00040801
0.000437511
0.000463087
0.00048409
0.000500236
0.000511656
0.00051892
0.000522814
0.000523345
0.000520609
0.000515287
0.000508773
0.000502721
0.000497339
0.000487309
0.000455193
0.000403077
0.000338766
0.000261542
0.000171974
7.71153e-05
1.39083e-05
3.2554e-06
7.74936e-06
8.20664e-06
2.74148e-05
4.12239e-05
6.46116e-05
0.000101504
0.000149378
0.000198359
0.000241096
0.000277774
0.000311719
0.00034502
0.000377696
0.000408553
0.000436141
0.000459329
0.000477541
0.000490813
0.00049974
0.000505252
0.000507315
0.000505947
0.000501807
0.000496379
0.000491526
0.000487653
0.0004792
0.000447287
0.000396289
0.000332918
0.000256476
0.000167691
7.40855e-05
1.29833e-05
3.09691e-06
7.75847e-06
7.7951e-06
2.4082e-05
3.6078e-05
5.70005e-05
9.1868e-05
0.000139003
0.000186489
0.000225154
0.00025639
0.0002856
0.000316006
0.000347796
0.000379356
0.000408576
0.000433727
0.000453864
0.000468886
0.000479368
0.000486439
0.000490015
0.000489969
0.000486774
0.000481716
0.000476575
0.000472147
0.000464428
0.000437868
0.000389214
0.000328254
0.000254156
0.000167357
7.47998e-05
1.33558e-05
3.15869e-06
7.76403e-06
7.36628e-06
2.10455e-05
3.13243e-05
4.9771e-05
8.24673e-05
0.000129152
0.00017611
0.000211528
0.000237395
0.000261141
0.000287481
0.000317346
0.000348969
0.0003795
0.000406511
0.000428632
0.000445571
0.00045781
0.000466671
0.000472007
0.000473548
0.000471662
0.000467646
0.00046347
0.000460243
0.000454081
0.000428631
0.000381174
0.000321249
0.000248062
0.00016222
7.12029e-05
1.23091e-05
2.99463e-06
7.74765e-06
7.19819e-06
1.92457e-05
2.8199e-05
4.47568e-05
7.64432e-05
0.000124319
0.000171898
0.000204582
0.000225388
0.000243158
0.000264027
0.000290466
0.000321032
0.000352063
0.000380213
0.000403699
0.000422058
0.000435606
0.000445942
0.000452855
0.000455886
0.000455162
0.00045168
0.00044716
0.000443043
0.000437494
0.000418904
0.000374022
0.00031673
0.000246055
0.000162274
7.22322e-05
1.27872e-05
3.06943e-06
7.69294e-06
6.90104e-06
1.72811e-05
2.48874e-05
3.92247e-05
6.90598e-05
0.000117059
0.000164665
0.000195579
0.000213603
0.000227769
0.000244509
0.000266866
0.00029453
0.000324595
0.000353168
0.000377748
0.000397471
0.000412335
0.000424228
0.000432881
0.000437628
0.000438384
0.000436023
0.000432321
0.000429053
0.000424846
0.000407896
0.000364201
0.000308011
0.000238423
0.000155901
6.78704e-05
1.15727e-05
2.88505e-06
7.59629e-06
6.79956e-06
1.62535e-05
2.28297e-05
3.53578e-05
6.42884e-05
0.000113551
0.000158839
0.000182674
0.0002033
0.000219826
0.000234439
0.000252396
0.00027526
0.000302197
0.000329703
0.000354324
0.000374645
0.000390105
0.000402969
0.000412937
0.000419122
0.000421159
0.000419619
0.000415937
0.000411761
0.000407022
0.000395439
0.000357013
0.000303662
0.000236756
0.000156406
6.9309e-05
1.21822e-05
2.9706e-06
7.47855e-06
6.57184e-06
1.50413e-05
2.03879e-05
3.01192e-05
5.50101e-05
0.000101025
0.000134967
0.000157796
0.000177979
0.000203043
0.000229367
0.000243809
0.00025997
0.000281251
0.000305974
0.000330186
0.000350981
0.000366943
0.000380754
0.000392117
0.000399908
0.000403468
0.000403155
0.000400362
0.00039693
0.000393173
0.000382941
0.000345309
0.000293019
0.000227307
0.000148516
6.39796e-05
1.07334e-05
2.75284e-06
7.36461e-06
6.54814e-06
1.48125e-05
1.94808e-05
2.70864e-05
4.78795e-05
8.72175e-05
0.000116067
0.000138258
0.00015807
0.000183202
0.000211703
0.000241854
0.000257377
0.000271208
0.000290101
0.000311648
0.000331612
0.000347101
0.000361088
0.000373229
0.000382171
0.000386951
0.000387559
0.000384976
0.000380761
0.000375727
0.000366536
0.000338949
0.00028964
0.000226729
0.000150162
6.63121e-05
1.15769e-05
2.86173e-06
7.28862e-06
6.3833e-06
1.43468e-05
1.86702e-05
2.39818e-05
3.74107e-05
6.44482e-05
9.15183e-05
0.000115227
0.000134615
0.000159143
0.000187568
0.000218282
0.000249371
0.000266392
0.00027786
0.00029372
0.000311481
0.000325965
0.000339921
0.000352767
0.000362874
0.000368968
0.000370778
0.000369196
0.000365954
0.00036215
0.000354141
0.000325683
0.000277201
0.000215341
0.000140433
5.9719e-05
9.81937e-06
2.59773e-06
7.24928e-06
6.40511e-06
1.47524e-05
1.95678e-05
2.40556e-05
3.29931e-05
5.10059e-05
7.38021e-05
9.87157e-05
0.000119319
0.000142553
0.000170037
0.000200509
0.000232054
0.000262894
0.00027985
0.000288383
0.000300139
0.000311284
0.000323984
0.000336737
0.000347367
0.000354286
0.000356904
0.000355634
0.000351601
0.000345919
0.000337953
0.000320662
0.000275317
0.000216517
0.000143945
6.3442e-05
1.09815e-05
2.74576e-06
7.25288e-06
6.25594e-06
1.46704e-05
1.99243e-05
2.45885e-05
2.98559e-05
4.13396e-05
5.39015e-05
7.52629e-05
9.78315e-05
0.000118963
0.000144671
0.000174314
0.000206161
0.00023819
0.000268676
0.000286501
0.000291383
0.000296027
0.00030567
0.000317636
0.000328572
0.000336265
0.000339809
0.000339509
0.000336681
0.000332801
0.000326472
0.000306068
0.000261113
0.000202874
0.000131779
5.51507e-05
8.87076e-06
2.42469e-06
7.24709e-06
6.3858e-06
1.56075e-05
2.09114e-05
2.64212e-05
3.14986e-05
4.01831e-05
4.98626e-05
6.31126e-05
8.36818e-05
0.000105248
0.000128553
0.000155985
0.000186753
0.000218992
0.000250685
0.000280125
0.000296852
0.000293874
0.000296905
0.00030575
0.000315773
0.000323542
0.000327477
0.000327376
0.000323915
0.000318054
0.000309791
0.000295207
0.000260204
0.000205593
0.000137119
6.0127e-05
1.02436e-05
2.60337e-06
7.22951e-06
6.53006e-06
1.62367e-05
2.16961e-05
2.80371e-05
3.38795e-05
3.97728e-05
4.95415e-05
5.46061e-05
6.37458e-05
8.01536e-05
0.000100442
0.000124658
0.000153431
0.000185445
0.000218531
0.000250501
0.000279535
0.000292491
0.000288994
0.000291227
0.000298319
0.000305595
0.000310019
0.000310721
0.000308386
0.000304389
0.000298911
0.000286088
0.000245411
0.000190753
0.000123369
5.08438e-05
8.01919e-06
2.237e-06
7.15765e-06
7.08905e-06
1.85704e-05
2.46322e-05
3.11856e-05
3.89523e-05
4.63932e-05
5.34815e-05
6.31614e-05
6.9513e-05
7.64209e-05
9.06242e-05
0.000110367
0.000134406
0.000162922
0.000194611
0.000227245
0.000258458
0.000286259
0.000294497
0.000289747
0.000290619
0.00029528
0.000299202
0.000299929
0.000297034
0.000291055
0.000282356
0.000269297
0.000243796
0.000193001
0.000128572
5.55539e-05
9.19767e-06
2.40333e-06
7.07169e-06
7.49406e-06
2.02822e-05
2.82948e-05
3.43448e-05
4.29009e-05
5.46224e-05
6.43093e-05
6.90404e-05
7.30989e-05
7.95018e-05
8.06553e-05
8.77782e-05
0.000102808
0.000124691
0.000152829
0.000184942
0.000218169
0.000249772
0.000277431
0.000287973
0.000282455
0.000281201
0.000283187
0.000284242
0.000282463
0.000278263
0.000272424
0.000261934
0.000231699
0.000181127
0.000117452
4.82666e-05
7.49599e-06
2.05618e-06
6.9161e-06
7.9482e-06
2.33712e-05
3.39735e-05
4.036e-05
4.75747e-05
6.06967e-05
7.8869e-05
8.98385e-05
8.90315e-05
8.73149e-05
9.30912e-05
0.000103908
0.000111008
0.000124687
0.000144096
0.000169033
0.00019801
0.000228403
0.000257287
0.000281946
0.000288282
0.000280265
0.000276399
0.000275237
0.000272837
0.000267438
0.000258803
0.00024593
0.000223844
0.000177456
0.000116805
4.86903e-05
7.71482e-06
2.13951e-06
6.69918e-06
7.61363e-06
2.27333e-05
3.7125e-05
4.65071e-05
5.35052e-05
6.28267e-05
7.78856e-05
9.07327e-05
9.89825e-05
0.000104182
0.000101947
0.000103659
0.000107508
0.000110554
0.000119748
0.000135744
0.000158839
0.000187034
0.000216864
0.000244958
0.000268287
0.00027316
0.000266017
0.000261538
0.000258776
0.000254845
0.000248833
0.000240091
0.000221288
0.000175921
0.000116344
4.8879e-05
7.43565e-06
1.90678e-06
6.31035e-06
7.52177e-06
2.36216e-05
3.85211e-05
5.16715e-05
6.23964e-05
7.18055e-05
8.21232e-05
9.18504e-05
0.000100464
0.000108472
0.000114481
0.000116783
0.00012738
0.000134109
0.00014339
0.000156112
0.000172816
0.000193754
0.000217252
0.000240762
0.000261277
0.000270559
0.000261323
0.000253637
0.00024889
0.000244065
0.000237049
0.000226032
0.000205541
0.000160695
0.000102975
4.02738e-05
6.05983e-06
1.84573e-06
5.8926e-06
6.83114e-06
2.07564e-05
3.65484e-05
5.0757e-05
6.35704e-05
7.24282e-05
7.87913e-05
8.44681e-05
9.04851e-05
9.6701e-05
0.000102507
0.000107484
0.000111701
0.000115906
0.000121465
0.000129749
0.000141873
0.000158896
0.000180137
0.000203335
0.00022556
0.000238244
0.000235995
0.000232257
0.000229459
0.000225892
0.00021993
0.000210972
0.000197086
0.000167391
0.00011358
4.87029e-05
7.11804e-06
1.70889e-06
5.44002e-06
7.3155e-06
2.39787e-05
3.96299e-05
5.31141e-05
6.4823e-05
7.17331e-05
7.73472e-05
8.19989e-05
8.67337e-05
9.23003e-05
9.91716e-05
0.000107489
0.000117116
0.000127811
0.00013946
0.000152274
0.000166849
0.000183428
0.000201501
0.000219829
0.000234619
0.000233126
0.000229677
0.000227094
0.000224982
0.00022221
0.0002179
0.000210499
0.000192781
0.000150364
9.55838e-05
3.6579e-05
5.35263e-06
1.60352e-06
5.14874e-06
6.89721e-06
2.17357e-05
4.15167e-05
5.53877e-05
6.40552e-05
6.98343e-05
7.38386e-05
7.61051e-05
7.73059e-05
7.79485e-05
7.85018e-05
7.93822e-05
8.09926e-05
8.3831e-05
8.86124e-05
9.61674e-05
0.000107002
0.000121597
0.000140064
0.000161109
0.000182391
0.000190439
0.000192822
0.000194134
0.00019419
0.000192224
0.000187114
0.00017796
0.000164051
0.000142873
0.000103358
4.52916e-05
6.43652e-06
1.50783e-06
4.88571e-06
8.2632e-06
2.72719e-05
5.00576e-05
6.64595e-05
7.65049e-05
8.21087e-05
8.36143e-05
8.28802e-05
8.42489e-05
8.8345e-05
9.03345e-05
9.07496e-05
9.22564e-05
9.58764e-05
0.000102489
0.000112641
0.000126229
0.000142584
0.000160894
0.000180231
0.000199403
0.000207335
0.000209411
0.00021111
0.000211745
0.000210742
0.000208218
0.000203505
0.000191194
0.000153289
0.000100429
3.97687e-05
5.62752e-06
1.51374e-06
4.7765e-06
8.90975e-06
2.80718e-05
5.0945e-05
6.67685e-05
7.62662e-05
8.06762e-05
8.14089e-05
7.97168e-05
7.71023e-05
7.50878e-05
7.45342e-05
7.59955e-05
8.01189e-05
8.6855e-05
9.20925e-05
8.79449e-05
8.40473e-05
8.27942e-05
8.72004e-05
9.92577e-05
0.000118517
0.000141201
0.000162335
0.00016491
0.000163735
0.000160464
0.000153911
0.000143579
0.000128711
0.000108021
7.77255e-05
3.48851e-05
5.09145e-06
1.37105e-06
4.80794e-06
1.15392e-05
3.55736e-05
5.94202e-05
7.22019e-05
7.70863e-05
7.8885e-05
8.0439e-05
8.25233e-05
8.49903e-05
8.76444e-05
9.0295e-05
8.9445e-05
8.91812e-05
9.25496e-05
9.778e-05
9.84961e-05
0.000100186
0.000104859
0.000114216
0.000128749
0.000146835
0.000166866
0.000187294
0.000205394
0.000219148
0.000225133
0.000221957
0.000211225
0.000194511
0.000169005
0.000113596
4.53925e-05
6.07362e-06
1.60855e-06
4.81286e-06
1.69064e-05
5.02792e-05
6.96873e-05
7.37641e-05
7.31216e-05
7.32088e-05
7.51549e-05
7.77983e-05
8.03766e-05
8.26591e-05
8.48054e-05
8.72479e-05
8.79872e-05
8.88314e-05
9.26018e-05
0.000100052
0.000112031
0.000122695
0.000137879
0.000147263
0.000153155
0.000154326
0.000150731
0.000143674
0.000134293
0.000124447
0.000116352
0.000112106
0.000112166
0.000112338
9.87675e-05
4.93097e-05
5.77631e-06
1.53269e-06
4.61278e-06
2.34926e-05
5.70836e-05
6.95542e-05
7.18553e-05
7.18603e-05
7.25233e-05
7.38345e-05
7.49e-05
7.54533e-05
7.54179e-05
7.51905e-05
7.5983e-05
8.00596e-05
9.04222e-05
0.000109521
0.00013777
0.000173848
0.000216393
0.000264558
0.000315938
0.0003639
0.000401044
0.000421513
0.000392462
0.000313464
0.000249254
0.000202109
0.000164343
0.000131697
8.96298e-05
3.25475e-05
7.78086e-06
1.1114e-06
4.11744e-07
4.29418e-06
6.64781e-05
5.3725e-05
4.92694e-05
5.46761e-05
5.81946e-05
6.35717e-05
6.90206e-05
7.00633e-05
7.16064e-05
7.29476e-05
7.38073e-05
7.41003e-05
7.39613e-05
7.37658e-05
7.40037e-05
7.50275e-05
7.68099e-05
7.89992e-05
8.11206e-05
8.26807e-05
8.31455e-05
8.20006e-05
7.88484e-05
7.37533e-05
6.65216e-05
5.72075e-05
4.57243e-05
3.28185e-05
2.01786e-05
9.95894e-06
3.49225e-06
1.00982e-06
2.78123e-07
6.33147e-08
7.76281e-06
3.61313e-05
5.85498e-05
4.4858e-05
3.52609e-05
2.98541e-05
2.56361e-05
2.24882e-05
2.09451e-05
2.06916e-05
2.10225e-05
2.17203e-05
2.27843e-05
2.40756e-05
2.54646e-05
2.69079e-05
2.84088e-05
2.99823e-05
3.16098e-05
3.32191e-05
3.46967e-05
3.58985e-05
3.66796e-05
3.68428e-05
3.63101e-05
3.52799e-05
3.3893e-05
3.2306e-05
3.08013e-05
2.96959e-05
2.9453e-05
3.15204e-05
3.66937e-05
1.76713e-05
7.70726e-07
4.71326e-08
9.97812e-07
1.41579e-06
2.20597e-06
3.19341e-06
4.2607e-06
5.31911e-06
6.30355e-06
7.16522e-06
7.87434e-06
8.3859e-06
8.72141e-06
8.92872e-06
8.98756e-06
8.95175e-06
8.99328e-06
8.99942e-06
8.96111e-06
9.50723e-06
1.1022e-05
1.32591e-05
1.62586e-05
2.05192e-05
2.50021e-05
2.78933e-05
3.04113e-05
3.23426e-05
3.36928e-05
3.44794e-05
3.46752e-05
3.41976e-05
3.28238e-05
3.02477e-05
8.87994e-06
2.60602e-07
1.36758e-07
2.63932e-07
8.43238e-07
2.99107e-06
6.29879e-06
9.76757e-06
1.25946e-05
1.45024e-05
1.55256e-05
1.57592e-05
1.546e-05
1.4731e-05
1.37596e-05
1.26716e-05
1.15473e-05
1.04172e-05
9.39052e-06
8.431e-06
7.15106e-06
7.49829e-06
1.4309e-05
2.51507e-05
3.43676e-05
4.95269e-05
7.12601e-05
8.69215e-05
9.68717e-05
0.000105951
0.000113113
0.000116693
0.000114245
0.000101539
4.478e-05
1.31746e-05
9.25382e-07
7.93577e-07
1.1952e-06
6.40244e-06
2.12418e-05
3.23402e-05
4.47599e-05
5.78936e-05
7.02083e-05
7.63598e-05
6.87487e-05
5.82268e-05
4.75378e-05
3.86116e-05
3.19028e-05
2.70969e-05
2.36941e-05
2.12694e-05
1.95984e-05
1.88636e-05
1.97242e-05
2.24918e-05
2.60905e-05
2.8996e-05
3.15474e-05
3.04532e-05
3.67046e-05
5.38197e-05
6.95744e-05
8.37881e-05
9.43431e-05
9.69544e-05
7.50649e-05
3.39598e-05
1.13917e-05
1.52269e-06
8.7976e-07
2.46679e-06
1.45971e-05
2.62068e-05
3.67929e-05
4.76377e-05
5.88105e-05
6.98023e-05
7.76645e-05
7.69344e-05
6.59934e-05
5.13833e-05
3.97417e-05
3.38538e-05
3.35299e-05
2.54371e-05
1.99198e-05
1.82138e-05
1.97438e-05
2.37406e-05
2.94705e-05
3.51622e-05
3.54031e-05
4.26397e-05
6.00935e-05
8.41935e-05
9.62385e-05
0.000104712
0.00010823
0.000105665
9.40788e-05
5.63311e-05
2.77774e-05
9.67182e-06
2.12724e-06
7.86994e-07
1.01001e-06
3.82951e-06
1.45609e-05
2.50528e-05
3.32333e-05
4.05684e-05
4.75358e-05
5.4854e-05
6.26698e-05
6.50763e-05
6.61862e-05
6.6142e-05
6.51187e-05
6.37124e-05
6.26296e-05
6.26933e-05
6.43319e-05
6.75956e-05
7.23015e-05
7.06238e-05
7.11204e-05
7.87494e-05
9.58099e-05
0.00011187
0.000118858
0.000123612
0.000124625
0.000119886
0.000107838
7.8954e-05
4.85647e-05
2.73691e-05
1.01143e-05
2.62983e-06
1.24892e-06
2.42295e-06
1.55253e-05
3.7219e-05
5.48199e-05
7.00367e-05
8.13465e-05
8.63618e-05
8.81229e-05
8.77649e-05
8.61314e-05
8.3801e-05
8.12073e-05
7.8706e-05
7.66536e-05
7.53864e-05
7.51594e-05
7.6039e-05
7.79367e-05
8.06762e-05
8.3994e-05
8.76763e-05
9.16189e-05
9.56861e-05
9.94455e-05
0.000102024
0.000101967
9.73825e-05
8.88048e-05
8.03793e-05
6.19545e-05
4.19311e-05
2.59156e-05
9.43977e-06
3.09829e-06
1.26035e-06
2.76931e-06
1.59237e-05
3.30078e-05
4.64967e-05
5.92992e-05
7.18859e-05
8.45636e-05
9.69493e-05
0.000106289
0.000109211
0.000109937
0.000108946
0.000106818
0.000104183
0.000101643
9.96702e-05
9.85053e-05
9.82797e-05
9.89689e-05
0.000100388
0.000102301
0.000104349
0.000105934
0.000106103
0.000103393
9.57892e-05
8.46659e-05
7.60019e-05
7.00499e-05
5.52881e-05
4.0375e-05
2.63785e-05
9.79945e-06
3.50069e-06
1.29308e-06
2.28914e-06
1.2967e-05
3.36147e-05
5.13143e-05
6.51665e-05
7.75961e-05
8.96987e-05
9.97428e-05
0.0001053
0.000109147
0.000111541
0.000112732
0.000112989
0.000112615
0.000111936
0.00011126
0.000110779
0.000110835
0.000111669
0.000113199
0.0001151
0.000116829
0.000117601
0.000116217
0.000110876
9.92254e-05
8.39418e-05
7.29027e-05
6.62564e-05
5.25732e-05
4.0047e-05
2.7176e-05
1.00928e-05
3.83487e-06
1.51413e-06
3.74605e-06
2.2552e-05
4.73146e-05
6.58726e-05
8.24399e-05
9.83683e-05
0.000113784
0.00012654
0.000132228
0.000135635
0.000137218
0.000137388
0.000136521
0.000134973
0.000133089
0.000131181
0.000129461
0.000128398
0.000128262
0.00012884
0.000129653
0.000129993
0.000128813
0.000124595
0.000115467
0.000100159
8.37811e-05
7.34995e-05
6.74336e-05
5.14032e-05
4.02493e-05
2.77076e-05
1.00664e-05
4.16232e-06
1.50289e-06
3.10053e-06
1.80817e-05
4.30103e-05
6.13794e-05
7.77006e-05
9.33329e-05
0.000109197
0.000125102
0.000136329
0.000143092
0.000147966
0.000151173
0.000152954
0.000153567
0.000153286
0.00015238
0.000151063
0.000149937
0.000149341
0.000149065
0.000148707
0.000147596
0.000144595
0.000138011
0.000125837
0.000107302
8.87317e-05
7.71871e-05
6.69812e-05
5.2236e-05
4.17252e-05
2.90573e-05
1.05155e-05
4.43429e-06
1.60704e-06
3.94344e-06
2.31067e-05
5.20262e-05
7.55485e-05
9.44455e-05
0.00011164
0.000128526
0.000144568
0.000154276
0.000160915
0.0001657
0.000168946
0.000170917
0.000171845
0.000171943
0.0001714
0.000170361
0.000169331
0.000168521
0.00016764
0.00016624
0.000163555
0.000158326
0.000148792
0.000133101
0.00011207
9.31385e-05
8.14341e-05
6.66917e-05
5.35215e-05
4.33212e-05
3.021e-05
1.06024e-05
4.70282e-06
1.71629e-06
4.29081e-06
2.49581e-05
5.53913e-05
7.70972e-05
9.60784e-05
0.000114176
0.000132352
0.000151047
0.000168235
0.000177075
0.000183824
0.00018876
0.000192148
0.000194236
0.000195247
0.000195375
0.000194761
0.000193808
0.00019263
0.000190931
0.000188255
0.000183805
0.000176333
0.000164231
0.000146027
0.000122611
0.00010157
8.84349e-05
6.80448e-05
5.53713e-05
4.52666e-05
3.17078e-05
1.09908e-05
4.94002e-06
1.72338e-06
4.34435e-06
2.53068e-05
5.76283e-05
8.61841e-05
0.000108018
0.000127106
0.000145629
0.000164404
0.000181673
0.000191686
0.000199615
0.000205742
0.000210317
0.000213559
0.000215658
0.000216763
0.00021697
0.000216537
0.000215476
0.000213453
0.000209957
0.000204163
0.000194897
0.000180812
0.000160893
0.00013572
0.000112487
9.00041e-05
7.02508e-05
5.81838e-05
4.75595e-05
3.32247e-05
1.12085e-05
5.16783e-06
1.87122e-06
5.15844e-06
2.93728e-05
6.45169e-05
9.32682e-05
0.000115642
0.00013566
0.000155207
0.000175253
0.000195237
0.000210645
0.000220015
0.000227414
0.000233101
0.000237306
0.000240223
0.000241999
0.000242709
0.000242501
0.000241318
0.000238812
0.000234447
0.000227416
0.000216662
0.000201069
0.000179902
0.000153474
0.000125068
9.3702e-05
7.37178e-05
6.15834e-05
5.01589e-05
3.49644e-05
1.15782e-05
5.37969e-06
1.88307e-06
5.0715e-06
2.92617e-05
6.61358e-05
0.000100496
0.00012643
0.000147899
0.000168095
0.000188579
0.000209343
0.000227023
0.00023808
0.00024709
0.000254287
0.000259872
0.000264013
0.000266824
0.00026835
0.000268644
0.000267586
0.000264805
0.00025975
0.000251646
0.000239557
0.000222591
0.000200295
0.000173193
0.000130828
9.83902e-05
7.85111e-05
6.55917e-05
5.30072e-05
3.68164e-05
1.18964e-05
5.58005e-06
2.00697e-06
5.86308e-06
3.28576e-05
7.23498e-05
0.000109009
0.000137415
0.000160185
0.000180941
0.000201665
0.000223213
0.000244336
0.000259385
0.000269856
0.000278392
0.000285182
0.000290373
0.000294054
0.000296236
0.000296898
0.000295872
0.000292773
0.000287061
0.000278027
0.000264884
0.000246966
0.000224069
0.000181543
0.000136949
0.000104918
8.45525e-05
7.0163e-05
5.61083e-05
3.88165e-05
1.22851e-05
5.76986e-06
2.05938e-06
5.98312e-06
3.37553e-05
7.53713e-05
0.000114729
0.000148727
0.000174028
0.000195754
0.000216689
0.000238279
0.000260395
0.000279716
0.00029191
0.000302054
0.000310308
0.000316784
0.000321538
0.000324546
0.000325732
0.00032489
0.000321635
0.00031545
0.000305701
0.000291731
0.000273037
0.000240304
0.000189414
0.000144934
0.000113158
9.16538e-05
7.53098e-05
5.95606e-05
4.10228e-05
1.26837e-05
5.94858e-06
2.15348e-06
6.62347e-06
3.65702e-05
8.06692e-05
0.000122629
0.000159779
0.000189189
0.000212045
0.000232807
0.00025381
0.000275906
0.000298001
0.000315514
0.000327159
0.000336779
0.000344457
0.000350214
0.00035399
0.000355661
0.000354985
0.000351569
0.00034491
0.000334414
0.000319484
0.000298445
0.00024957
0.000197548
0.000154348
0.000122408
9.92445e-05
8.07585e-05
6.32357e-05
4.338e-05
1.31161e-05
6.1185e-06
2.23723e-06
6.9582e-06
3.8234e-05
8.46236e-05
0.000129126
0.000168905
0.000203623
0.000228838
0.000250244
0.000270855
0.000292239
0.000314682
0.000336334
0.000351755
0.000362825
0.00037177
0.000378574
0.000383139
0.000385292
0.000384755
0.000381116
0.000373862
0.000362407
0.000346168
0.00030932
0.000258034
0.000207497
0.000165133
0.000132382
0.000107283
8.66237e-05
6.72785e-05
4.60129e-05
1.35941e-05
6.27706e-06
2.31607e-06
7.48492e-06
4.05675e-05
8.94127e-05
0.000136626
0.00017913
0.000216519
0.000247798
0.00027043
0.000290249
0.000310153
0.000331229
0.000353205
0.000374043
0.000389053
0.000399111
0.000406802
0.00041198
0.000414427
0.000413817
0.000409709
0.000401569
0.000388807
0.000362379
0.000317761
0.000266707
0.000217925
0.00017615
0.000142452
0.000115453
9.26841e-05
7.15237e-05
4.88134e-05
1.40896e-05
6.42765e-06
2.41636e-06
7.98544e-06
4.27481e-05
9.39821e-05
0.000143716
0.000188712
0.000228552
0.000263419
0.000290047
0.000310514
0.000329632
0.000349351
0.000370062
0.000391131
0.000410722
0.000425321
0.000433832
0.000439549
0.000442199
0.000441411
0.00043671
0.000427544
0.000408572
0.000372659
0.000326418
0.000276664
0.000229194
0.000187545
0.000152734
0.000123869
9.9063e-05
7.61197e-05
5.19246e-05
1.46474e-05
6.56736e-06
2.49606e-06
8.49756e-06
4.50215e-05
9.88165e-05
0.00015136
0.000199106
0.000241539
0.000278838
0.000311375
0.000333364
0.000351557
0.000369702
0.000388791
0.00040851
0.000427861
0.000445344
0.000458947
0.000466077
0.000468725
0.000467564
0.000462084
0.000447493
0.00042003
0.000381589
0.000335756
0.000287304
0.000240708
0.000198908
0.000162942
0.000132293
0.000105542
8.08727e-05
5.52049e-05
1.52081e-05
6.69918e-06
2.6051e-06
9.12696e-06
4.76123e-05
0.000103973
0.000159169
0.000209475
0.000254322
0.000293866
0.000328455
0.000355138
0.000373825
0.000390931
0.000408785
0.000427436
0.000445948
0.000463032
0.000477305
0.000487435
0.00049219
0.000490311
0.000480326
0.000460737
0.000430859
0.000391766
0.000346419
0.000298788
0.000252592
0.000210376
0.000173201
0.000140833
0.000112235
8.59204e-05
5.87928e-05
1.58166e-05
6.81875e-06
2.69546e-06
9.69439e-06
5.00495e-05
0.000109102
0.000167208
0.000220323
0.000267766
0.000309663
0.000346365
0.000378274
0.000397638
0.000413564
0.000429904
0.00044733
0.000465028
0.000481628
0.000495607
0.000505435
0.000509586
0.000506517
0.000494756
0.000473268
0.000442055
0.000402578
0.000357609
0.000310541
0.00026452
0.00022179
0.000183416
0.000149395
0.000119016
9.11103e-05
6.25481e-05
1.64259e-05
6.92846e-06
2.81134e-06
1.04106e-05
5.2889e-05
0.000114641
0.000175528
0.000231307
0.00028122
0.000325362
0.000364066
0.000397719
0.000420623
0.000436223
0.000451214
0.000467375
0.000484095
0.000499932
0.000513241
0.000522338
0.000525528
0.000521195
0.000508011
0.000485301
0.000453425
0.000413935
0.000369363
0.000322672
0.000276616
0.000233243
0.000193644
0.000158023
0.000125968
9.65902e-05
6.66568e-05
1.70867e-05
7.02778e-06
2.91542e-06
1.10491e-05
5.54953e-05
0.000119989
0.0001838
0.000242393
0.000294894
0.000341351
0.000382078
0.00041746
0.000443934
0.000459432
0.000473003
0.000487679
0.000503203
0.000518052
0.000530403
0.000538442
0.000540442
0.000534859
0.000520538
0.000497029
0.00046484
0.000425491
0.000381283
0.000334851
0.000288667
0.000244631
0.000203856
0.000166704
0.00013302
0.000102193
7.09006e-05
1.77237e-05
7.11625e-06
3.03842e-06
1.18055e-05
5.83962e-05
0.000125617
0.000192234
0.0002535
0.000308458
0.000357119
0.000399779
0.000436815
0.000466255
0.000481749
0.000494187
0.00050756
0.000521925
0.000535743
0.00054707
0.000554007
0.000554836
0.000548124
0.000532888
0.000508834
0.00047653
0.000437405
0.000393534
0.000347277
0.000300872
0.000256101
0.000214103
0.000175418
0.000140198
0.000108086
7.51743e-05
1.84297e-05
7.19477e-06
3.15431e-06
1.24997e-05
6.11122e-05
0.000131069
0.000200555
0.000264563
0.000322029
0.000372916
0.000417504
0.000456163
0.000488482
0.000503849
0.000515085
0.000527124
0.0005403
0.000553049
0.000563319
0.000569144
0.000568841
0.000561093
0.000545076
0.000520613
0.000488284
0.000449401
0.000405825
0.000359669
0.000312981
0.000267463
0.000224332
0.000184332
0.000147824
0.00011421
7.78293e-05
1.90296e-05
7.26271e-06
3.28534e-06
1.32895e-05
6.40555e-05
0.000136735
0.000208998
0.000275622
0.000335464
0.000388454
0.000434855
0.000475034
0.000509376
0.000524932
0.000535098
0.000545958
0.000558067
0.000569828
0.000579104
0.000583894
0.000582559
0.000573905
0.000557241
0.000532477
0.00050018
0.000461538
0.000418208
0.000372091
0.000325078
0.000278831
0.000234655
0.000193479
0.000155762
0.000120521
8.04082e-05
1.95832e-05
7.32179e-06
3.4095e-06
1.40224e-05
6.68255e-05
0.000142205
0.000217272
0.000286554
0.0003488
0.000403895
0.000452084
0.000493725
0.00052919
0.000545525
0.00055462
0.000564223
0.000575275
0.000586101
0.000594454
0.000598294
0.000596033
0.000586582
0.000569368
0.000544364
0.000512112
0.000473682
0.00043055
0.000384437
0.000337102
0.000290181
0.00024506
0.000202806
0.000163917
0.000126957
8.28888e-05
2.00842e-05
7.37234e-06
3.54667e-06
1.48125e-05
6.96949e-05
0.000147697
0.000225433
0.000297229
0.00036175
0.00041884
0.000468725
0.000511751
0.000548283
0.000564926
0.000573084
0.000581588
0.000591701
0.000601699
0.000609231
0.000612233
0.000609166
0.000599043
0.000581385
0.000556215
0.000524041
0.00048582
0.00044287
0.000396747
0.000349107
0.000301562
0.000255571
0.000212315
0.000172296
0.000133571
8.53535e-05
2.05661e-05
7.41289e-06
3.6769e-06
1.55675e-05
7.24685e-05
0.000153084
0.000233496
0.000307803
0.000374575
0.000433615
0.000485131
0.000529465
0.000566982
0.000583534
0.000590715
0.000598178
0.00060742
0.00061666
0.000623454
0.000625709
0.000621935
0.000611236
0.000593218
0.000567942
0.000535883
0.000497893
0.000455143
0.000409039
0.000361132
0.000313008
0.000266194
0.000221982
0.000180869
0.000140361
8.78101e-05
2.10412e-05
7.44571e-06
3.8195e-06
1.63675e-05
7.52929e-05
0.000158422
0.000241368
0.000318041
0.000386936
0.000447818
0.000500879
0.00054645
0.000584895
0.00060078
0.000607054
0.000613716
0.000622274
0.000630875
0.000637018
0.000638606
0.000634206
0.000623006
0.000604691
0.000579353
0.000547438
0.000509704
0.000467189
0.000421161
0.000373064
0.000324451
0.000276897
0.000231794
0.000189622
0.000147285
9.01676e-05
2.14746e-05
7.46704e-06
3.95518e-06
1.71295e-05
7.80096e-05
0.000163631
0.000249101
0.000328118
0.00039909
0.00046175
0.000516277
0.000563001
0.00060229
0.000617033
0.000622349
0.000628305
0.000636286
0.000644342
0.000649921
0.000650933
0.000645999
0.000634386
0.000615844
0.000590492
0.000558747
0.000521286
0.000479027
0.000433114
0.000384893
0.000335882
0.000287699
0.000241827
0.000198705
0.000154543
9.25752e-05
2.19225e-05
7.47881e-06
4.10015e-06
1.79103e-05
8.06991e-05
0.000168675
0.000256504
0.000337717
0.000410647
0.000474992
0.000530912
0.000578735
0.000618831
0.000631932
0.000636413
0.000641897
0.000649469
0.000657093
0.0006622
0.000662721
0.000657338
0.000645393
0.000626692
0.000601374
0.000569824
0.000532644
0.000490646
0.00044486
0.000396546
0.000347192
0.000298469
0.000251947
0.000208001
0.000162056
9.49969e-05
2.23769e-05
7.48388e-06
4.2386e-06
1.86492e-05
8.32633e-05
0.000173542
0.000263683
0.000347029
0.000421839
0.000487779
0.000545002
0.000593833
0.000634668
0.000645923
0.000649673
0.000654744
0.000661986
0.000669255
0.000673954
0.000674038
0.000668252
0.000656013
0.000637181
0.000611913
0.00058057
0.000543686
0.000501972
0.000456349
0.000407989
0.000358353
0.000309168
0.00026211
0.000217485
0.000169811
9.73651e-05
2.28121e-05
7.48027e-06
4.38295e-06
1.94163e-05
8.58475e-05
0.00017832
0.000270629
0.000355966
0.000432531
0.000499963
0.0005584
0.000608164
0.00064831
0.000658673
0.000661909
0.000666695
0.000673735
0.000680767
0.000685146
0.00068486
0.000678729
0.000666245
0.000647318
0.000622122
0.000590993
0.000554402
0.000512977
0.000467545
0.000419206
0.0003694
0.000319891
0.000272418
0.000227164
0.000177702
9.9643e-05
2.32163e-05
7.46775e-06
4.52144e-06
2.01377e-05
8.82873e-05
0.00018288
0.000277288
0.000364538
0.00044277
0.000511601
0.000571166
0.000621786
0.0006611
0.00067059
0.000673322
0.000677881
0.000684787
0.000691652
0.000695793
0.000695213
0.000688792
0.000676105
0.000657122
0.000632025
0.000601127
0.000564841
0.000523715
0.000478487
0.000430181
0.000380204
0.000330397
0.000282675
0.000237222
0.000186341
0.000102145
2.36748e-05
7.44971e-06
4.66161e-06
2.08805e-05
9.07501e-05
0.000187378
0.000283761
0.000372797
0.000452578
0.000522707
0.000583313
0.00063472
0.000673176
0.000681793
0.000684039
0.000688422
0.000695259
0.000702014
0.000705957
0.000705123
0.000698462
0.000685611
0.000666584
0.000641589
0.000610917
0.000574926
0.000534077
0.000489029
0.00044077
0.00039078
0.000341068
0.000293569
0.000247488
0.000191632
0.0001044
2.4121e-05
7.42774e-06
4.79649e-06
2.16199e-05
9.31986e-05
0.000191807
0.00029008
0.000380795
0.000462012
0.000533327
0.000594874
0.000646985
0.000684558
0.000692337
0.000694153
0.000698409
0.000705231
0.00071194
0.000715743
0.000714703
0.000707837
0.00069485
0.000675796
0.000650891
0.000620412
0.000584669
0.000544056
0.000499178
0.000451036
0.000401222
0.000351872
0.000304744
0.000257776
0.000196453
0.000106411
2.45145e-05
7.39903e-06
4.92621e-06
2.23422e-05
9.55643e-05
0.000196052
0.000296109
0.000388406
0.000470969
0.00054339
0.000605809
0.000658566
0.000695227
0.000702187
0.000703633
0.000707838
0.000714699
0.00072139
0.000725082
0.000723866
0.000716823
0.000703722
0.00068466
0.000659857
0.000629563
0.000594042
0.00055365
0.000508974
0.000461049
0.000411569
0.000362744
0.000316054
0.000268078
0.000201085
0.000108282
2.48695e-05
7.363e-06
5.05099e-06
2.30426e-05
9.78444e-05
0.000200113
0.00030184
0.000395602
0.000479402
0.000552833
0.000616043
0.000669385
0.000705094
0.000711281
0.000712444
0.000716693
0.000723682
0.000730418
0.000734021
0.000732624
0.000725394
0.000712176
0.000693103
0.000668403
0.000638293
0.000602997
0.000562834
0.000518394
0.000470772
0.000421747
0.000373568
0.000327382
0.000278332
0.000205484
0.000110001
2.51777e-05
7.31921e-06
5.1687e-06
2.37102e-05
0.000100008
0.00020396
0.000307262
0.000402401
0.000487353
0.000561715
0.000625646
0.000679514
0.000714163
0.000719608
0.000720585
0.000724983
0.000732188
0.000739047
0.00074263
0.000741106
0.000733709
0.000720358
0.000701242
0.000676607
0.000646662
0.000611594
0.000571682
0.00052751
0.00048024
0.000431767
0.000384367
0.000338801
0.000288694
0.000209774
0.000111679
2.54768e-05
7.26932e-06
5.28331e-06
2.43535e-05
0.000102074
0.000207594
0.000312346
0.000408745
0.00049475
0.000569957
0.000634538
0.000688877
0.000722362
0.000727125
0.000728041
0.000732714
0.000740243
0.000747303
0.00075093
0.000749334
0.000741819
0.000728366
0.000709195
0.000684571
0.000654716
0.000619825
0.000580175
0.000536349
0.000489528
0.000441668
0.000395074
0.000350169
0.000299018
0.000213887
0.000113263
2.57503e-05
7.21514e-06
5.39028e-06
2.49446e-05
0.000103987
0.000210978
0.000317093
0.000414669
0.000501646
0.000577626
0.000642793
0.000697548
0.00072965
0.000733787
0.000734765
0.000739831
0.000747774
0.00075511
0.000758845
0.000757234
0.000749655
0.000736141
0.000716943
0.000692334
0.000662534
0.000627741
0.000588252
0.000544696
0.00049834
0.000451276
0.000405823
0.00036158
0.000307388
0.000217735
0.000114752
2.6001e-05
7.15736e-06
5.4966e-06
2.55469e-05
0.000105907
0.000214306
0.000321686
0.000420331
0.000508175
0.000584828
0.000650491
0.000705583
0.000735782
0.000739308
0.000740532
0.000746148
0.000754603
0.000762273
0.000766164
0.000764598
0.00075702
0.00074351
0.000724338
0.000699776
0.000670036
0.000635312
0.000595935
0.000552652
0.000506952
0.000461101
0.000417091
0.00037277
0.000312843
0.000221025
0.000115977
2.61956e-05
7.0947e-06
5.59497e-06
2.61043e-05
0.000107698
0.000217432
0.000326013
0.000425665
0.000514312
0.000591576
0.000657674
0.000713044
0.000740944
0.000743842
0.000745419
0.000751682
0.000760701
0.00076873
0.000772806
0.000771326
0.000763806
0.000750364
0.000731274
0.000706801
0.000677145
0.000642516
0.000603311
0.000560413
0.000515493
0.000470908
0.00042823
0.000383558
0.000317906
0.000223971
0.000117014
2.63459e-05
7.02999e-06
5.69134e-06
2.66565e-05
0.000109445
0.000220432
0.000330118
0.000430685
0.000520053
0.000597856
0.000664328
0.000719925
0.000745174
0.000747499
0.000749559
0.000756557
0.000766175
0.000774575
0.00077885
0.000777488
0.000770072
0.000756748
0.000737788
0.000713441
0.000683903
0.00064941
0.000610442
0.000568031
0.000524011
0.000480754
0.000439332
0.000394146
0.000322858
0.000226865
0.000118082
2.65267e-05
6.9687e-06
5.77904e-06
2.71545e-05
0.000111032
0.000223185
0.000333906
0.000435331
0.000525373
0.000603672
0.000670478
0.000726266
0.000748654
0.000750446
0.000753092
0.000760894
0.000771132
0.000779906
0.00078439
0.000783175
0.000775904
0.000762742
0.000743951
0.000719763
0.000690374
0.000656051
0.000617362
0.000575487
0.000532417
0.000490535
0.000450413
0.000404726
0.000327782
0.000229831
0.000119269
2.67443e-05
6.91171e-06
5.8645e-06
2.76182e-05
0.000112494
0.000225707
0.000337368
0.000439573
0.000530228
0.000608979
0.000676088
0.000732044
0.000751352
0.00075268
0.000756027
0.000764681
0.000775529
0.000784653
0.000789338
0.000788283
0.000781187
0.000768227
0.000749653
0.000725675
0.000696483
0.000662378
0.00062402
0.000582731
0.000540647
0.000500155
0.000461351
0.00041519
0.00033255
0.000232741
0.000120489
2.6984e-05
6.85816e-06
5.94356e-06
2.80526e-05
0.000113868
0.000228077
0.000340611
0.000443531
0.00053474
0.000613893
0.000681266
0.000737358
0.000753369
0.000754325
0.000758474
0.000767988
0.000779399
0.000788824
0.000793683
0.000792779
0.000785862
0.000773119
0.000754786
0.000731053
0.000702103
0.000668262
0.000630265
0.000589572
0.00054852
0.000509573
0.000472055
0.000423689
0.000337019
0.000235474
0.00012163
2.7206e-05
6.80674e-06
6.0209e-06
2.8454e-05
0.000115117
0.000230232
0.000343561
0.000447132
0.000538844
0.000618361
0.000685972
0.000742195
0.000754713
0.000755514
0.000760583
0.000770922
0.000782829
0.000792518
0.000797539
0.000796779
0.000790035
0.000777507
0.00075942
0.00073594
0.000707234
0.000673656
0.00063606
0.000596148
0.000556482
0.000519278
0.000482172
0.000428921
0.000340929
0.000237886
0.000122641
2.74066e-05
6.75725e-06
6.0928e-06
2.88222e-05
0.000116257
0.000232202
0.000346261
0.000450426
0.000542593
0.000622428
0.000690233
0.000745866
0.000755415
0.000756507
0.000762423
0.000773439
0.000785774
0.000795712
0.000800887
0.000800264
0.000793685
0.000781367
0.00076352
0.000740288
0.000711831
0.000678548
0.000641438
0.000602423
0.0005642
0.000528594
0.000491607
0.000433637
0.000344367
0.000239952
0.000123461
2.75623e-05
6.70809e-06
6.16229e-06
2.91174e-05
0.000117167
0.000233816
0.000348519
0.000453228
0.000545824
0.000625968
0.000693958
0.000746868
0.00075581
0.000757355
0.000763982
0.0007756
0.000788331
0.000798494
0.000803806
0.000803302
0.000796872
0.000784745
0.000767124
0.000744136
0.000715943
0.000683002
0.000646445
0.000608369
0.00057153
0.000537339
0.000500301
0.000437852
0.000347377
0.000241707
0.000124112
2.76751e-05
6.65825e-06
6.23065e-06
2.94076e-05
0.000118049
0.000235352
0.000350635
0.000455824
0.000548795
0.000629205
0.000697354
0.000747617
0.000755983
0.000757975
0.000765283
0.000777464
0.000790557
0.000800921
0.000806351
0.000805949
0.000799646
0.000787686
0.000770267
0.000747511
0.000719592
0.000687027
0.000651058
0.000613913
0.000578359
0.000545407
0.000508214
0.0004416
0.000349985
0.000243164
0.000124588
2.77393e-05
6.60762e-06
6.29916e-06
2.96686e-05
0.000118812
0.000236678
0.000352471
0.000458089
0.000551401
0.000632059
0.000700357
0.000747945
0.000755847
0.00075835
0.000766332
0.000779045
0.000792475
0.000803031
0.000808581
0.000808288
0.000802114
0.000790316
0.00077309
0.000750561
0.000722924
0.00069075
0.000655374
0.000619114
0.000584722
0.000552829
0.000515378
0.000444914
0.000352205
0.000244313
0.000124872
2.77454e-05
6.55542e-06
6.36663e-06
2.99129e-05
0.000119514
0.000237888
0.00035413
0.000460125
0.000553737
0.000634618
0.000703053
0.000748195
0.000755667
0.000758645
0.000767259
0.000780459
0.000794185
0.000804906
0.000810562
0.000810372
0.000804325
0.000792686
0.000775653
0.000753356
0.000726017
0.000694256
0.000659482
0.000624075
0.000590747
0.000559764
0.000521967
0.000447902
0.000354103
0.000245182
0.000124965
2.76889e-05
6.50036e-06
6.43375e-06
3.01181e-05
0.00012008
0.000238862
0.000355477
0.000461796
0.000555678
0.000636769
0.000705348
0.00074833
0.000755428
0.000758839
0.000768021
0.000781662
0.000795659
0.000806527
0.000812276
0.000812178
0.000806251
0.00079477
0.000777933
0.000755883
0.000728869
0.000697562
0.000663427
0.000628888
0.000596598
0.000566465
0.000528312
0.000450909
0.00035603
0.000246092
0.000125109
2.76479e-05
6.44521e-06
6.49967e-06
3.03202e-05
0.000120614
0.000239742
0.000356659
0.000463241
0.000557348
0.00063862
0.000707331
0.000748389
0.000755222
0.000759053
0.000768734
0.000782741
0.000796959
0.000807955
0.000813793
0.000813782
0.000807967
0.000796632
0.000779983
0.000758178
0.000731501
0.000700673
0.00066722
0.000633595
0.000602368
0.000573084
0.000534584
0.000454012
0.000358055
0.000247091
0.000125324
2.76276e-05
6.39182e-06
6.56388e-06
3.04886e-05
0.000121033
0.00024042
0.000357565
0.00046435
0.000558642
0.000640078
0.00070892
0.00074824
0.000754899
0.00075917
0.000769343
0.000783694
0.000798098
0.000809188
0.000815095
0.000815171
0.000809471
0.000798282
0.00078182
0.000760262
0.000733931
0.000703608
0.000670883
0.000638258
0.000608248
0.000579853
0.000539711
0.000457288
0.000360262
0.000248246
0.000125656
2.76381e-05
6.33895e-06
6.62625e-06
3.06308e-05
0.000121361
0.000240941
0.000358252
0.000465188
0.000559625
0.000641201
0.000710172
0.000748206
0.000754785
0.00075944
0.000770026
0.000784671
0.000799235
0.00081039
0.000816328
0.000816449
0.000810832
0.00079977
0.000783477
0.000762146
0.000736142
0.000706325
0.000674419
0.000643048
0.000614555
0.000586819
0.000544015
0.000460812
0.000362812
0.00024976
0.000126272
2.77361e-05
6.28888e-06
6.68871e-06
3.07921e-05
0.000121727
0.000241463
0.000358873
0.000465888
0.000560406
0.000642073
0.000711143
0.000748048
0.000754673
0.000759766
0.000770767
0.000785684
0.000800388
0.000811602
0.000817559
0.000817692
0.000812109
0.000801118
0.000784936
0.000763768
0.000738035
0.000708721
0.00067772
0.00064775
0.000620847
0.000593714
0.000548283
0.000464366
0.000365453
0.000251386
0.000126975
2.78588e-05
6.23997e-06
6.74887e-06
3.09109e-05
0.000121973
0.000241809
0.000359275
0.000466331
0.000560899
0.000642634
0.000711791
0.000747745
0.000754496
0.000760059
0.000771497
0.000786694
0.000801531
0.000812787
0.000818752
0.000818889
0.000813316
0.000802349
0.000786218
0.00076515
0.00073963
0.000710778
0.000680664
0.000652088
0.000626783
0.000600304
0.00055232
0.000467776
0.000368023
0.000252978
0.000127659
2.79733e-05
6.18931e-06
6.81059e-06
3.10754e-05
0.00012234
0.000242272
0.000359739
0.000466763
0.000561305
0.000643044
0.000712242
0.000747477
0.000754443
0.000760513
0.000772409
0.000787905
0.000802879
0.000814154
0.000820078
0.000820166
0.00081456
0.000803569
0.000787419
0.000766367
0.000740968
0.000712474
0.000683122
0.00065581
0.000632033
0.000606307
0.000556037
0.000471008
0.000370538
0.00025459
0.00012838
2.8102e-05
6.13809e-06
6.86836e-06
3.12283e-05
0.000122686
0.000242692
0.000360126
0.000467075
0.000561547
0.000643247
0.000712448
0.000746815
0.000754078
0.000760786
0.000773258
0.000789145
0.000804322
0.000815656
0.000821551
0.00082157
0.000815889
0.000804828
0.000788608
0.000767496
0.000742108
0.00071381
0.000685003
0.000658697
0.000636238
0.000611287
0.000559193
0.000473843
0.000372824
0.000256107
0.00012907
2.82259e-05
6.08857e-06
6.92504e-06
3.13687e-05
0.00012299
0.000243038
0.000360406
0.000467243
0.000561606
0.000643227
0.000712392
0.000745664
0.000753233
0.000760689
0.000773861
0.000790239
0.000805693
0.000817142
0.000823049
0.000823023
0.000817266
0.000806117
0.000789802
0.00076859
0.000743123
0.000714855
0.000686327
0.00066068
0.000639211
0.00061495
0.000561517
0.000475969
0.000374557
0.000257236
0.000129525
2.82831e-05
6.03991e-06
6.97899e-06
3.15131e-05
0.000123308
0.000243387
0.000360655
0.000467337
0.000561541
0.000643034
0.000712119
0.000744207
0.000752071
0.000760346
0.000774309
0.000791253
0.000807031
0.000818625
0.000824566
0.000824513
0.000818692
0.000807453
0.000791029
0.000769688
0.000744079
0.000715698
0.000687185
0.000661811
0.000640917
0.000617174
0.000562942
0.000477285
0.000375617
0.000257866
0.000129674
2.82546e-05
5.99019e-06
7.02992e-06
3.16423e-05
0.000123577
0.000243649
0.000360784
0.000467279
0.000561293
0.000642623
0.000711591
0.000742168
0.000750337
0.000759558
0.000774446
0.000792056
0.000808229
0.000820019
0.000826037
0.000825993
0.00082014
0.000808834
0.000792312
0.000770843
0.000745071
0.000716489
0.00068778
0.000662315
0.000641538
0.000618063
0.000563602
0.000477913
0.000376128
0.000258133
0.000129643
2.81864e-05
5.94072e-06
7.07762e-06
3.17168e-05
0.000123693
0.000243697
0.000360668
0.000466957
0.000560764
0.000641915
0.000710746
0.000739522
0.000747981
0.000758252
0.000774176
0.000792533
0.000809159
0.000821199
0.000827352
0.000827377
0.000821548
0.000810229
0.00079366
0.000772106
0.000746205
0.000717428
0.000688435
0.000662633
0.000641567
0.000618003
0.000563641
0.000477936
0.000376138
0.000258082
0.000129487
2.80968e-05
5.89274e-06
7.12557e-06
3.17748e-05
0.000123767
0.000243678
0.000360453
0.0004665
0.000560062
0.000640996
0.000709659
0.000736535
0.000745291
0.000756663
0.000773653
0.000792759
0.000809837
0.000822141
0.000828459
0.000828596
0.00082284
0.000811559
0.000794998
0.000773427
0.00074747
0.000718577
0.000689357
0.000663172
0.000641601
0.0006176
0.000563274
0.000477475
0.00037567
0.000257664
0.000129148
2.7967e-05
5.84485e-06
7.17366e-06
3.18687e-05
0.000123944
0.000243783
0.000360344
0.000466107
0.000559372
0.000640032
0.000708469
0.000733004
0.000742097
0.000754674
0.00077276
0.000792598
0.000810113
0.00082269
0.000829205
0.000829496
0.000823861
0.000812672
0.000796183
0.000774676
0.00074878
0.000719922
0.00069065
0.000664222
0.000642148
0.000617497
0.000562873
0.00047686
0.000374983
0.000257053
0.000128722
2.78223e-05
5.79544e-06
7.21938e-06
3.19321e-05
0.000124039
0.000243779
0.000360112
0.000465582
0.000558535
0.000638904
0.000707098
0.000728971
0.000738486
0.000752341
0.000771498
0.000792017
0.00080995
0.000822814
0.000829555
0.000830039
0.000824568
0.000813516
0.000797153
0.000775786
0.000750072
0.000721441
0.000692395
0.000666054
0.000643724
0.000618354
0.00056284
0.000476505
0.000374466
0.000256569
0.000128424
2.77249e-05
5.74578e-06
7.26397e-06
3.19761e-05
0.000124081
0.000243697
0.000359785
0.000464941
0.000557554
0.0006376
0.000705519
0.000724747
0.000734953
0.000749986
0.000770039
0.000791144
0.000809465
0.00082261
0.00082958
0.000830263
0.000824966
0.000814065
0.000797845
0.000776655
0.000751208
0.000722975
0.000694434
0.000668572
0.000646377
0.000620345
0.000563238
0.000476485
0.000374172
0.000256214
0.000128205
2.765e-05
5.69444e-06
7.30799e-06
3.20171e-05
0.000124108
0.000243584
0.000359411
0.000464238
0.000556492
0.000636171
0.000701271
0.000720329
0.000731414
0.000747432
0.000768259
0.000789895
0.000808574
0.000821984
0.000829182
0.000830077
0.000824975
0.000814248
0.000798199
0.000777224
0.00075211
0.000724406
0.000696607
0.000671575
0.000649927
0.000623426
0.000564037
0.000476804
0.000374115
0.000255974
0.000128022
2.75756e-05
5.63943e-06
7.34992e-06
3.20261e-05
0.000124048
0.000243354
0.000358913
0.000463416
0.000555321
0.000634644
0.000697077
0.000715949
0.000727842
0.000744766
0.000766287
0.000788383
0.000807363
0.000821
0.000828401
0.000829498
0.000824593
0.000814052
0.000798189
0.000777444
0.000752693
0.000725587
0.000698686
0.000674766
0.000654036
0.0006273
0.00056513
0.000477409
0.000374282
0.000255848
0.000127848
2.74828e-05
5.57979e-06
7.39026e-06
3.2011e-05
0.000123914
0.000243011
0.00035828
0.000462455
0.000554021
0.000633009
0.000693116
0.000711848
0.000724477
0.000742209
0.000764338
0.000786827
0.000806058
0.00081988
0.000827454
0.000828732
0.000824008
0.00081364
0.000797947
0.000777411
0.000752991
0.000726459
0.000700485
0.000677816
0.000658269
0.000631537
0.000566433
0.000478295
0.000374752
0.000255981
0.000127826
2.74199e-05
5.51867e-06
7.42821e-06
3.19778e-05
0.000123721
0.000242557
0.0003575
0.000461336
0.000552574
0.000631253
0.000689375
0.000708049
0.000721352
0.000739801
0.000762459
0.000785278
0.000804709
0.000818678
0.000826395
0.000827832
0.000823277
0.000813073
0.000797535
0.000777176
0.000753029
0.000726992
0.000701864
0.000680423
0.000662154
0.00063563
0.000567663
0.000479204
0.000375299
0.000256186
0.000127832
2.73602e-05
5.45676e-06
7.46334e-06
3.19121e-05
0.000123433
0.00024194
0.000356508
0.000459984
0.000550899
0.000629299
0.000685831
0.000704569
0.000718541
0.00073766
0.00076079
0.000783881
0.000803454
0.000817513
0.000825325
0.000826881
0.000822464
0.000812399
0.000796994
0.000776777
0.000752841
0.000727191
0.000702759
0.000682388
0.000665322
0.000639118
0.00056857
0.000479901
0.000375725
0.000256313
0.000127763
2.72716e-05
5.39461e-06
7.49702e-06
3.183e-05
0.000123087
0.000241204
0.000355344
0.000458424
0.000549005
0.000627135
0.000682291
0.000701223
0.000715921
0.000735728
0.000759321
0.000782655
0.000802329
0.000816433
0.000824292
0.000825922
0.000821604
0.000811646
0.000796341
0.000776224
0.000752429
0.000727048
0.00070313
0.000683594
0.000667518
0.000641643
0.000569041
0.000480275
0.000375946
0.000256332
0.000127629
2.71617e-05
5.33402e-06
7.53048e-06
3.17394e-05
0.00012271
0.00024039
0.000354046
0.000456686
0.000546906
0.000624763
0.000678673
0.00069793
0.000713439
0.000733974
0.000758039
0.000781602
0.000801349
0.000815461
0.000823329
0.000824999
0.000820751
0.000810876
0.000795651
0.000775605
0.000751898
0.000726679
0.00070309
0.000684123
0.000668758
0.00064314
0.00056901
0.000480236
0.00037587
0.000256179
0.000127429
2.70436e-05
5.2734e-06
7.56457e-06
3.16861e-05
0.000122426
0.000239652
0.000352771
0.000454908
0.000544714
0.00062226
0.000674872
0.000694568
0.000711029
0.000732402
0.000757
0.000780812
0.000800619
0.00081471
0.000822552
0.000824227
0.00082002
0.000810209
0.000795051
0.000775067
0.000751422
0.000726301
0.000702918
0.000684333
0.00066936
0.000642636
0.00056853
0.000479825
0.000375522
0.000255874
0.000127179
2.69232e-05
5.21308e-06
7.59628e-06
3.16049e-05
0.000122065
0.000238786
0.000351323
0.000452921
0.000542283
0.000619498
0.000670552
0.00069077
0.000708373
0.000730759
0.000756012
0.000780136
0.000800027
0.000814095
0.000821895
0.000823553
0.000819364
0.000809597
0.000794496
0.000774569
0.000750982
0.000725942
0.000702716
0.000684392
0.000669486
0.00064166
0.000567634
0.000479044
0.000374882
0.000255383
0.000126843
2.6786e-05
5.1543e-06
7.6271e-06
3.15186e-05
0.000121683
0.000237866
0.000349781
0.000450796
0.000539673
0.000616523
0.00066582
0.000686597
0.000705493
0.000729051
0.000755074
0.000779575
0.000799579
0.000813632
0.000821388
0.000823021
0.000818839
0.000809105
0.000794055
0.000774187
0.000750665
0.000725717
0.000702647
0.000684497
0.000669426
0.00064034
0.000566355
0.000477874
0.000373888
0.000254615
0.000126343
2.66057e-05
5.09676e-06
7.65529e-06
3.14304e-05
0.000121293
0.000236902
0.000348146
0.000448531
0.000536879
0.000613325
0.000660597
0.000681954
0.000702295
0.000727181
0.000754079
0.000779014
0.000799155
0.000813205
0.000820922
0.000822531
0.000818356
0.000808656
0.000793661
0.000773867
0.000750444
0.000725643
0.000702781
0.000684789
0.000669392
0.000638753
0.000564746
0.000476334
0.000372518
0.000253514
0.000125614
2.636e-05
5.03899e-06
7.68022e-06
3.1319e-05
0.00012085
0.000235847
0.00034638
0.000446093
0.000533874
0.000609885
0.000654908
0.00067688
0.00069879
0.000725117
0.000752961
0.000778364
0.000798661
0.000812723
0.000820415
0.000822013
0.000817851
0.00080819
0.00079326
0.000773562
0.000750287
0.00072572
0.000703174
0.000685398
0.000669579
0.000637051
0.000562969
0.000474584
0.00037092
0.000252212
0.000124757
2.60806e-05
4.98189e-06
7.70478e-06
3.12632e-05
0.00012058
0.000235001
0.000344785
0.000443753
0.000530888
0.000606391
0.000648768
0.000671381
0.000695025
0.000722918
0.000751752
0.000777625
0.000798077
0.000812157
0.000819835
0.000821429
0.000817283
0.00080766
0.000792796
0.00077321
0.000750139
0.000725918
0.000703838
0.000686398
0.00067012
0.000635353
0.000561155
0.000472756
0.000369212
0.00025079
0.000123816
2.57818e-05
4.92685e-06
7.72699e-06
3.1152e-05
0.00012016
0.000233951
0.000342963
0.000441172
0.000527644
0.000602624
0.00064204
0.000665407
0.000690977
0.000720532
0.000750361
0.00077668
0.000797273
0.000811376
0.000819054
0.000820657
0.000816536
0.000806956
0.000792163
0.000772714
0.000749907
0.000726135
0.000704653
0.000687659
0.000670935
0.000633722
0.000559399
0.000470968
0.00036752
0.000249367
0.000122871
2.54881e-05
4.87542e-06
7.7528e-06
3.10806e-05
0.000119829
0.000232964
0.000341134
0.000438506
0.000524253
0.000598681
0.000634675
0.000659159
0.000686911
0.000718146
0.000748897
0.000775601
0.000796309
0.000810428
0.000818107
0.000819725
0.000815635
0.000806102
0.000791387
0.000772098
0.000749612
0.000726392
0.000705643
0.00068922
0.000672064
0.000632141
0.000557691
0.000469218
0.000365851
0.00024795
0.000121931
2.52014e-05
4.82746e-06
7.77707e-06
3.10176e-05
0.000119525
0.000231964
0.000339215
0.00043565
0.000520554
0.000593215
0.000626126
0.00065261
0.000682808
0.000715638
0.000747188
0.000774218
0.000795019
0.00080915
0.000816835
0.000818479
0.000814431
0.000804954
0.000790332
0.000771232
0.000749123
0.000726544
0.000706652
0.000690938
0.000673406
0.000630569
0.000556007
0.000467494
0.000364194
0.000246526
0.000120978
2.4914e-05
4.78168e-06
7.80062e-06
3.08787e-05
0.000119008
0.000230673
0.000336955
0.000432407
0.000516394
0.000583572
0.000616701
0.000645565
0.000678225
0.000712783
0.00074521
0.000772537
0.000793395
0.000807531
0.000815235
0.000816919
0.000812922
0.000803505
0.00078898
0.000770078
0.000748367
0.000726467
0.00070749
0.000692567
0.000674753
0.000629003
0.000554384
0.000465872
0.000362654
0.000245205
0.000120094
2.46521e-05
4.73846e-06
7.82744e-06
3.07483e-05
0.000118511
0.000229372
0.00033462
0.000429019
0.000512026
0.000573385
0.000606835
0.000638161
0.000673269
0.000709582
0.000742999
0.000770696
0.000791591
0.000805699
0.000813411
0.000815138
0.000811197
0.000801841
0.000787409
0.000768701
0.000747384
0.000726157
0.000708097
0.000693986
0.00067593
0.00062732
0.000552717
0.000464271
0.00036118
0.000243962
0.000119264
2.44071e-05
4.69693e-06
7.8553e-06
3.05664e-05
0.000117869
0.000227851
0.000332004
0.000425302
0.0005073
0.000562443
0.000596481
0.000630584
0.000668199
0.000706081
0.000740331
0.000768444
0.000789488
0.000803605
0.000811319
0.000813083
0.000809199
0.000799913
0.000785583
0.000767075
0.000746143
0.000725569
0.000708393
0.000695066
0.000676782
0.000625441
0.000550929
0.000462634
0.00035975
0.000242812
0.000118522
2.41909e-05
4.65867e-06
7.88758e-06
3.03383e-05
0.000117061
0.000226059
0.000329026
0.000421161
0.000502135
0.000550404
0.000585493
0.000622863
0.000663141
0.000702471
0.000737291
0.000765646
0.000786902
0.00080119
0.000808995
0.000810812
0.000806983
0.000797762
0.00078353
0.000765204
0.000744624
0.000724639
0.000708262
0.000695639
0.000677127
0.000623273
0.000548912
0.000460833
0.000358221
0.000241617
0.000117761
2.39718e-05
4.6237e-06
7.92494e-06
3.00969e-05
0.000116168
0.000224047
0.000325659
0.000416468
0.000495135
0.000537279
0.000574368
0.000615179
0.000657938
0.000698532
0.000733818
0.000762296
0.000783668
0.00079819
0.00080625
0.000808241
0.000804517
0.000795386
0.000781265
0.000763117
0.000742845
0.000723353
0.000707625
0.000695547
0.000676775
0.000620743
0.000546577
0.000458771
0.000356493
0.000240283
0.000116911
2.3733e-05
4.5913e-06
7.96749e-06
2.98364e-05
0.000115202
0.00022189
0.000322029
0.000411308
0.000481689
0.000523797
0.000563727
0.000607373
0.000652154
0.00069394
0.000729786
0.000758437
0.000779848
0.000794483
0.000802807
0.000805114
0.000801626
0.000792655
0.000778692
0.00076075
0.000740774
0.000721703
0.000706485
0.000694791
0.00067572
0.000617845
0.000543898
0.000456398
0.0003545
0.000238738
0.00011592
2.34575e-05
4.55895e-06
8.01311e-06
2.95389e-05
0.000114091
0.000219499
0.00031811
0.000405843
0.000467996
0.00051021
0.000553061
0.00059948
0.000646021
0.000688716
0.000725022
0.000753935
0.000775488
0.00079021
0.000798682
0.000801271
0.000798142
0.00078947
0.000775743
0.000758054
0.000738391
0.000719702
0.000704882
0.000693411
0.000673973
0.000614608
0.000540894
0.000453726
0.00035225
0.000237
0.000114818
2.31625e-05
4.52681e-06
8.06073e-06
2.91609e-05
0.000112689
0.000216652
0.000313645
0.00039986
0.000453958
0.00049671
0.000542607
0.000591649
0.000639691
0.000683
0.000719514
0.000748597
0.000770396
0.00078537
0.000794032
0.000796818
0.000794003
0.000785758
0.000772444
0.000755128
0.000735857
0.000717589
0.000703151
0.000691835
0.000671956
0.000611116
0.000537642
0.000450819
0.000349793
0.000235099
0.000113612
2.28394e-05
4.49117e-06
8.11074e-06
2.87239e-05
0.000111034
0.000213313
0.000308471
0.000391636
0.000439659
0.000484084
0.000532956
0.000584091
0.000633197
0.000676931
0.000713566
0.000742683
0.000764594
0.000779811
0.000788778
0.000791831
0.000789265
0.000781382
0.000768581
0.000751831
0.000733114
0.000715384
0.000701414
0.00069018
0.00066853
0.000607445
0.000534236
0.000447798
0.000347278
0.000233209
0.000112467
2.25478e-05
4.45791e-06
8.1625e-06
2.8231e-05
0.000109189
0.000209593
0.00030263
0.000377437
0.000425354
0.000472344
0.000523678
0.000576471
0.000626473
0.000670593
0.00070735
0.000736485
0.000758393
0.000773675
0.00078285
0.000786238
0.000784032
0.000776493
0.000764133
0.00074801
0.000730066
0.000713176
0.000699944
0.000688602
0.000664444
0.000603566
0.000530643
0.000444594
0.000344582
0.000231143
0.000111175
2.2207e-05
4.4205e-06
8.21672e-06
2.76897e-05
0.00010716
0.000205569
0.000296411
0.000363179
0.000411089
0.000460642
0.000514423
0.000568789
0.000619555
0.000663938
0.000700739
0.000729866
0.00075178
0.00076709
0.000776341
0.000779927
0.000778078
0.000771
0.000759142
0.000743625
0.000726526
0.000710711
0.000698393
0.000686849
0.000660067
0.00059939
0.00052676
0.000441126
0.000341673
0.00022894
0.000109834
2.18669e-05
4.38729e-06
8.27448e-06
2.71309e-05
0.000105018
0.000201317
0.000289909
0.000348931
0.000397156
0.000449352
0.000505454
0.000561191
0.000612554
0.000657099
0.000693883
0.000722953
0.000744828
0.00076014
0.000769436
0.000773114
0.000771463
0.00076477
0.000753494
0.000738718
0.000722541
0.000707862
0.000696579
0.000684977
0.000655551
0.000595077
0.000522726
0.000437474
0.000338535
0.00022648
0.000108262
2.14448e-05
4.34684e-06
8.33504e-06
2.65454e-05
0.000102707
0.000196714
0.000283077
0.000334688
0.000383789
0.00043865
0.000496781
0.000553595
0.000605387
0.00065003
0.000686774
0.000715756
0.000737543
0.0007528
0.000762096
0.000765847
0.000764346
0.000757913
0.000747089
0.00073303
0.000717816
0.000704204
0.000693776
0.000682146
0.000650763
0.000590537
0.000518498
0.000433657
0.000335272
0.000223955
0.000106703
2.10548e-05
4.31621e-06
8.39921e-06
2.593e-05
0.000100182
0.000191439
0.000269568
0.000320605
0.000371955
0.000428852
0.00048832
0.000545893
0.000598042
0.000642785
0.000679478
0.00070834
0.000729997
0.000745153
0.000754409
0.000758202
0.000756846
0.00075067
0.000740231
0.000726754
0.000712405
0.000699888
0.000690462
0.000679026
0.000645959
0.00058604
0.000514336
0.000429885
0.00033198
0.000221289
0.000104931
2.05775e-05
4.27567e-06
8.46682e-06
2.53294e-05
9.77432e-05
0.000186287
0.000256428
0.000307028
0.000360276
0.000419126
0.000479977
0.000538315
0.000590758
0.000635503
0.000672053
0.000700717
0.000722176
0.000737167
0.000746317
0.000750085
0.00074881
0.000742843
0.000732748
0.000719744
0.000705994
0.000694197
0.0006855
0.000674436
0.000640756
0.000581226
0.00050993
0.000425939
0.000328607
0.000218669
0.000103306
2.01848e-05
4.25337e-06
8.53477e-06
2.46952e-05
9.52025e-05
0.000180981
0.000243462
0.000293827
0.000349056
0.000409824
0.000471919
0.00053086
0.000583467
0.000628126
0.000664468
0.000692886
0.000714111
0.000728912
0.000737938
0.000741666
0.000740452
0.000734661
0.000724859
0.00071226
0.000699015
0.000687817
0.000679789
0.000669314
0.000635606
0.000576562
0.00050572
0.00042216
0.000325271
0.000215878
0.000101387
1.96716e-05
4.21593e-06
8.55699e-06
2.40421e-05
9.26199e-05
0.000175661
0.000230924
0.000281302
0.000338494
0.000401056
0.000464228
0.000523587
0.000576192
0.000620627
0.000656649
0.000684729
0.000705645
0.000720201
0.000729062
0.00073272
0.000731546
0.000725911
0.000716359
0.000704054
0.000691089
0.000680124
0.000672351
0.000662398
0.000629902
0.000571477
0.000501247
0.000418318
0.00032211
0.000213496
9.99431e-05
1.93547e-05
4.20439e-06
8.56286e-06
2.33213e-05
8.97409e-05
0.00017013
0.000218842
0.000269679
0.000328681
0.000392649
0.000456593
0.000516211
0.000568722
0.000612865
0.000648511
0.000676207
0.000696785
0.000711078
0.000719771
0.000723364
0.000722236
0.00071676
0.000707449
0.000695417
0.000682704
0.000671981
0.000664577
0.000655399
0.000624285
0.000566566
0.000496991
0.000414655
0.000318995
0.000210957
9.82074e-05
1.88941e-05
4.16222e-06
8.56939e-06
2.25951e-05
8.6472e-05
0.000159052
0.000207524
0.000259721
0.000319769
0.000384371
0.000448682
0.000508449
0.000560861
0.000604674
0.000639865
0.000667108
0.000687306
0.000701322
0.000709849
0.000713387
0.000712319
0.000707017
0.000697952
0.000686147
0.000673512
0.000662641
0.000655058
0.000646405
0.000617852
0.000560974
0.000492253
0.000410787
0.000316022
0.000208902
9.70915e-05
1.86932e-05
4.15555e-06
8.5775e-06
2.19195e-05
8.34931e-05
0.000149478
0.000196985
0.000249732
0.000310561
0.000375819
0.000440506
0.00050033
0.000552539
0.000595971
0.000630682
0.000657436
0.000677231
0.000690985
0.000699389
0.000702928
0.000701977
0.0006969
0.000688133
0.000676625
0.000664197
0.00065341
0.00064596
0.000638027
0.000611595
0.000555594
0.000487716
0.000407033
0.000312975
0.000206515
9.54865e-05
1.82634e-05
4.10267e-06
8.58149e-06
2.12314e-05
8.05001e-05
0.000140309
0.000187062
0.000240434
0.000301961
0.000367651
0.0004324
0.000491946
0.000543656
0.000586524
0.000620708
0.000647002
0.000666424
0.000679916
0.000688194
0.000691744
0.000690934
0.000686114
0.000677675
0.000666472
0.000654157
0.000643125
0.000635202
0.000627515
0.000604144
0.000549104
0.000482249
0.000402657
0.000309747
0.000204452
9.44924e-05
1.81097e-05
4.09263e-06
8.5802e-06
2.04959e-05
7.73803e-05
0.000131767
0.000177617
0.000231241
0.000293148
0.000359039
0.00042368
0.000482786
0.000533827
0.000575966
0.000609535
0.000635424
0.000654633
0.000668038
0.000676324
0.000679984
0.0006794
0.000674921
0.000666897
0.000656119
0.000644149
0.000633312
0.000625532
0.00061844
0.000597084
0.000542966
0.000477018
0.000398291
0.000306187
0.000201666
9.26348e-05
1.75992e-05
4.01546e-06
8.57067e-06
1.97244e-05
7.4175e-05
0.00012362
0.000168588
0.00022232
0.000284424
0.000350311
0.000414625
0.000473091
0.000523294
0.000564562
0.000597382
0.000622752
0.000641711
0.0006551
0.000663519
0.000667387
0.000667074
0.000662957
0.000655374
0.000645033
0.000633345
0.000622412
0.000614111
0.000606955
0.000588605
0.000535491
0.000470662
0.000393171
0.000302414
0.000199292
9.15442e-05
1.74339e-05
3.99471e-06
8.54876e-06
1.88012e-05
7.04994e-05
0.000115552
0.000159572
0.000213161
0.000275189
0.00034081
0.000404557
0.000462191
0.000511452
0.000551848
0.00058399
0.000608925
0.0006277
0.000641144
0.000649811
0.000654054
0.00065419
0.000650577
0.000643532
0.000633742
0.000622572
0.000612074
0.00060414
0.000597588
0.000580929
0.000528766
0.000464876
0.000388278
0.000298358
0.000196069
8.9388e-05
1.68273e-05
3.88771e-06
8.51545e-06
1.78008e-05
6.65632e-05
0.00010761
0.000150595
0.000203817
0.000265543
0.00033068
0.000393641
0.00045024
0.000498406
0.000537859
0.000569339
0.00059392
0.000612601
0.000626146
0.000635065
0.000639694
0.000640343
0.000637327
0.00063089
0.00062165
0.000610882
0.000600501
0.000592283
0.000585293
0.000570077
0.000520519
0.00045792
0.00038274
0.000294366
0.000193677
8.84026e-05
1.66977e-05
3.85827e-06
8.46764e-06
1.65652e-05
6.18708e-05
9.93578e-05
0.000141127
0.000193639
0.000254735
0.000319099
0.000381038
0.000436452
0.000483495
0.000522095
0.000553087
0.000577532
0.000596353
0.000610222
0.000619579
0.000624725
0.00062598
0.000623669
0.000617991
0.000609502
0.000599429
0.000589688
0.000582118
0.000575912
0.000561754
0.000513421
0.000451829
0.000377601
0.000290112
0.000190301
8.61503e-05
1.60416e-05
3.72764e-06
8.40799e-06
1.52077e-05
5.68502e-05
9.10283e-05
0.000131331
0.000182833
0.000243052
0.000306397
0.000367043
0.000421044
0.000466853
0.000504623
0.000535251
0.000559726
0.000578852
0.000593189
0.000603095
0.00060883
0.000610717
0.000609119
0.000604205
0.000596444
0.000586924
0.0005774
0.000569612
0.000562949
0.000549155
0.000504558
0.000444419
0.000371796
0.000286058
0.000188033
8.53568e-05
1.59665e-05
3.69985e-06
8.33467e-06
1.35404e-05
5.09943e-05
8.2155e-05
0.000120483
0.000170379
0.000229245
0.000291206
0.000350305
0.000402802
0.000447482
0.000484693
0.000515317
0.000540204
0.000559991
0.000575106
0.000585823
0.000592372
0.000595086
0.00059436
0.00059034
0.000583457
0.000574776
0.000566057
0.000559105
0.000553431
0.000540804
0.000497178
0.000438097
0.000366459
0.000281629
0.000184502
8.29865e-05
1.52533e-05
3.55464e-06
8.20747e-06
1.1999e-05
4.55764e-05
7.3501e-05
0.00010933
0.000157182
0.000214356
0.000274583
0.000331763
0.000382475
0.000425932
0.000462677
0.000493514
0.000519073
0.000539764
0.000555848
0.000567506
0.000574947
0.000578538
0.000578725
0.000575614
0.000569551
0.000561486
0.000553023
0.000545858
0.00053972
0.000527519
0.00048789
0.000430434
0.000360577
0.000277668
0.000182458
8.24268e-05
1.5246e-05
3.53949e-06
8.07674e-06
1.07124e-05
4.02501e-05
6.45495e-05
9.72454e-05
0.000142326
0.000197154
0.000255094
0.000309937
0.000358667
0.000400971
0.000437548
0.000469036
0.000495751
0.000517813
0.000535276
0.000548219
0.000556832
0.000561531
0.000562832
0.000560809
0.000555751
0.000548587
0.000540975
0.000534727
0.000529723
0.000518901
0.000480374
0.000424039
0.000355185
0.000273165
0.000178821
7.99471e-05
1.44834e-05
3.38866e-06
7.96565e-06
9.8126e-06
3.59351e-05
5.65412e-05
8.58653e-05
0.00012786
0.000180019
0.000235189
0.000287005
0.000333072
0.000373774
0.000410037
0.000442277
0.000470401
0.000494131
0.000513246
0.000527678
0.000537596
0.000543485
0.000545971
0.000545087
0.000541016
0.000534534
0.00052714
0.000520591
0.000515074
0.00050483
0.00047096
0.000416494
0.000349637
0.000269697
0.000177329
7.98202e-05
1.45972e-05
3.39625e-06
7.87772e-06
8.95769e-06
3.16211e-05
4.88141e-05
7.4586e-05
0.000113022
0.000162079
0.00021406
0.000262282
0.000305064
0.000343691
0.000379441
0.000412518
0.000442354
0.00046818
0.000489404
0.000505755
0.000517358
0.000524756
0.000528705
0.000529205
0.000526362
0.000520907
0.00051438
0.000508703
0.000504333
0.000495654
0.000463259
0.000410029
0.00034424
0.000265208
0.000173686
7.73028e-05
1.38092e-05
3.24733e-06
7.82251e-06
8.40821e-06
2.84974e-05
4.262e-05
6.52585e-05
0.000100575
0.00014703
0.000195961
0.000239956
0.000278289
0.000313638
0.000347947
0.000381324
0.000412685
0.000440652
0.000464125
0.000482541
0.00049594
0.000504912
0.000510388
0.000512335
0.000510733
0.000506138
0.00049989
0.00049382
0.000488778
0.000480731
0.000453671
0.000402574
0.000339017
0.000262232
0.00017273
7.75782e-05
1.40396e-05
3.27992e-06
7.79418e-06
7.84443e-06
2.52448e-05
3.6857e-05
5.66314e-05
8.89625e-05
0.000133259
0.00017981
0.00021968
0.000252854
0.000283769
0.0003155
0.000348382
0.000380909
0.000410997
0.000436903
0.000457668
0.000473186
0.000484039
0.000491344
0.000495023
0.000494948
0.000491583
0.000486267
0.000480987
0.000476933
0.00047043
0.000445334
0.000395575
0.000333165
0.000257346
0.000168744
7.48132e-05
1.31875e-05
3.13049e-06
7.78682e-06
7.51532e-06
2.24727e-05
3.2604e-05
5.02096e-05
8.05434e-05
0.000124225
0.000170012
0.000206396
0.000233811
0.000258751
0.000286018
0.000316907
0.000349689
0.000381337
0.000409293
0.000432139
0.00044959
0.000462152
0.000471193
0.000476583
0.000478043
0.000475846
0.000471073
0.000465488
0.000460574
0.000454508
0.00043541
0.000388022
0.000328074
0.000254673
0.000168161
7.53846e-05
1.35125e-05
3.1809e-06
7.78134e-06
7.16344e-06
1.98824e-05
2.86312e-05
4.40681e-05
7.22394e-05
0.000115455
0.000161599
0.000196226
0.000219191
0.000237988
0.000259371
0.000286574
0.000318401
0.000350989
0.000380626
0.000405375
0.000424732
0.000439043
0.000449941
0.000457238
0.000460484
0.000459789
0.000456145
0.000451354
0.000447205
0.000442496
0.000425794
0.000379777
0.000321027
0.000248689
0.000163248
7.20162e-05
1.25257e-05
3.02025e-06
7.75972e-06
7.01392e-06
1.83067e-05
2.59999e-05
3.97931e-05
6.68604e-05
0.000110935
0.000157815
0.000190519
0.000209606
0.000224032
0.000241124
0.000263968
0.000292349
0.000323629
0.000353677
0.000379542
0.000400246
0.000415792
0.000428168
0.000437136
0.000442033
0.000442734
0.000439996
0.000435372
0.000430562
0.000425374
0.000412919
0.000371867
0.000315829
0.000246095
0.000162846
7.277e-05
1.29178e-05
3.07626e-06
7.7038e-06
6.7647e-06
1.66143e-05
2.32773e-05
3.52513e-05
6.06047e-05
0.000104375
0.000149974
0.00017706
0.000195702
0.00021186
0.000227435
0.00024639
0.000269949
0.000297713
0.00032666
0.000353014
0.000374863
0.000391536
0.000405369
0.000416098
0.000422837
0.000425212
0.0004238
0.00042012
0.00041603
0.000411739
0.000400838
0.000362015
0.000307248
0.000238746
0.000156858
6.8752e-05
1.17851e-05
2.89428e-06
7.60321e-06
6.65599e-06
1.56405e-05
2.15869e-05
3.23518e-05
5.74139e-05
0.000102158
0.000138219
0.000156608
0.000174005
0.000197784
0.000222447
0.000238753
0.000256542
0.000278653
0.000304302
0.000329833
0.00035187
0.000368814
0.000383452
0.000395481
0.000403757
0.0004076
0.000407283
0.000404038
0.000399573
0.000394573
0.000384862
0.000354281
0.000302337
0.000236528
0.000156893
6.98862e-05
1.22856e-05
2.95307e-06
7.46851e-06
6.433e-06
1.44473e-05
1.94265e-05
2.8546e-05
5.13241e-05
9.33974e-05
0.000117396
0.000133766
0.000150422
0.000173625
0.000201472
0.000231943
0.000247841
0.000263582
0.000283688
0.000306569
0.00032823
0.000345223
0.000360529
0.000373818
0.000383713
0.000389212
0.000390303
0.000388087
0.000384376
0.000380201
0.000371797
0.000342972
0.00029227
0.000227778
0.000149741
6.51238e-05
1.09649e-05
2.741e-06
7.31849e-06
6.35316e-06
1.39293e-05
1.83762e-05
2.64718e-05
4.79808e-05
7.99575e-05
0.000102732
0.000117856
0.000133259
0.000155271
0.000182467
0.000212854
0.000244258
0.000259387
0.000272991
0.000290683
0.000309887
0.000325514
0.00034061
0.000354518
0.000365518
0.000372301
0.000374533
0.000372916
0.000368909
0.000363828
0.000356294
0.000336091
0.000288235
0.000226461
0.000150658
6.6946e-05
1.16489e-05
2.81392e-06
7.18853e-06
6.15109e-06
1.31116e-05
1.69767e-05
2.33261e-05
4.04292e-05
6.16988e-05
8.42594e-05
0.000100242
0.000113941
0.000134236
0.000160176
0.000190042
0.000221599
0.00025289
0.000266138
0.000277542
0.000292039
0.000305156
0.000319452
0.000333695
0.000345702
0.000353796
0.00035733
0.000356801
0.000353678
0.000349558
0.000343226
0.000323472
0.000276717
0.000216168
0.000142045
6.11552e-05
1.00671e-05
2.56347e-06
7.08911e-06
6.10536e-06
1.29961e-05
1.68824e-05
2.23403e-05
3.63487e-05
5.17854e-05
7.32426e-05
9.10157e-05
0.00010405
0.000122389
0.000146347
0.000174858
0.000205811
0.00023715
0.000267194
0.000276806
0.000284737
0.000292655
0.000304479
0.000317974
0.000330172
0.000338934
0.000343293
0.000343384
0.000340215
0.000335082
0.000327973
0.000313594
0.000273865
0.000216355
0.000144576
6.42038e-05
1.10457e-05
2.66843e-06
7.03514e-06
5.88631e-06
1.24157e-05
1.64726e-05
2.13115e-05
3.02638e-05
4.09278e-05
5.73229e-05
7.54489e-05
8.97181e-05
0.0001055
0.000126744
0.0001533
0.00018338
0.000214779
0.000245564
0.000274203
0.000280082
0.000280902
0.000288202
0.000299692
0.000311499
0.000320745
0.000325967
0.000327024
0.000324879
0.000321
0.000315525
0.000302368
0.00026067
0.00020399
0.000133783
5.68616e-05
9.11801e-06
2.36512e-06
6.97784e-06
5.79419e-06
1.236e-05
1.67821e-05
2.19046e-05
2.85407e-05
3.77742e-05
4.86211e-05
6.54896e-05
8.30024e-05
9.81213e-05
0.000116994
0.000140754
0.000168837
0.000199387
0.000230316
0.000259809
0.000285741
0.000282096
0.00028238
0.000289559
0.000299472
0.000308262
0.000313705
0.000315069
0.000312717
0.000307606
0.000300255
0.000288048
0.000259228
0.000206082
0.000138447
6.14388e-05
1.03932e-05
2.50222e-06
6.90325e-06
5.53802e-06
1.17556e-05
1.62828e-05
2.20749e-05
2.73592e-05
3.61216e-05
4.05912e-05
4.89477e-05
6.25426e-05
7.82751e-05
9.45777e-05
0.000115208
0.000140854
0.000170438
0.000201854
0.000232911
0.000261752
0.000280462
0.000276604
0.000277148
0.000283178
0.000290598
0.000296077
0.000298101
0.000296779
0.00029325
0.000288157
0.000277548
0.000244863
0.000192024
0.000125632
5.27158e-05
8.24235e-06
2.14726e-06
6.74755e-06
5.50546e-06
1.20004e-05
1.65609e-05
2.29995e-05
2.95204e-05
3.65601e-05
4.62989e-05
4.94029e-05
5.60304e-05
6.79155e-05
8.37318e-05
0.000101762
0.000123757
0.000150193
0.0001801
0.000211438
0.000241952
0.000269682
0.000281513
0.000276688
0.000276698
0.000281013
0.000285504
0.00028742
0.000285849
0.000281045
0.000273445
0.000262185
0.00024175
0.000194327
0.000131022
5.77853e-05
9.48483e-06
2.28297e-06
6.55623e-06
5.42544e-06
1.21492e-05
1.64734e-05
2.36222e-05
3.26441e-05
4.11867e-05
4.77731e-05
5.35608e-05
5.66149e-05
5.80401e-05
6.28401e-05
7.30243e-05
8.8749e-05
0.000110503
0.00013781
0.000169005
0.000201632
0.000233141
0.000261281
0.000274208
0.000269076
0.000267636
0.000269708
0.000271421
0.00027056
0.000267051
0.00026171
0.00025318
0.000230954
0.000182312
0.000119837
5.03729e-05
7.76209e-06
1.94285e-06
6.32619e-06
5.58337e-06
1.34379e-05
1.82731e-05
2.5563e-05
3.74647e-05
5.31376e-05
6.46241e-05
6.79395e-05
6.78261e-05
6.96496e-05
7.75037e-05
8.09593e-05
8.86851e-05
0.000102296
0.000121519
0.000146172
0.000175096
0.000206058
0.000236257
0.000263016
0.000275339
0.000268123
0.000264139
0.000263222
0.000261618
0.000257368
0.000250126
0.000239219
0.000220417
0.000180228
0.000120823
5.196e-05
8.07627e-06
2.00598e-06
6.14433e-06
5.5029e-06
1.39442e-05
1.99589e-05
2.78894e-05
3.93525e-05
5.3147e-05
6.52119e-05
7.59119e-05
8.33115e-05
8.78294e-05
8.24542e-05
8.1981e-05
8.86367e-05
8.82837e-05
9.3231e-05
0.000106121
0.000127696
0.000156053
0.000187645
0.000218828
0.000246471
0.000266126
0.0002588
0.000252359
0.000248832
0.000245125
0.000239633
0.000231868
0.000217547
0.000178488
0.000120892
5.307e-05
8.17485e-06
1.82017e-06
5.89706e-06
5.51902e-06
1.46312e-05
2.26262e-05
3.34423e-05
4.58047e-05
5.33255e-05
6.26886e-05
7.3934e-05
8.50036e-05
9.42974e-05
0.00010167
9.56836e-05
9.77579e-05
0.000113525
0.000118955
0.000127467
0.000140737
0.000159028
0.000181923
0.000207443
0.000232605
0.000253982
0.000266217
0.000254497
0.000244616
0.000237925
0.00023117
0.000221515
0.000203748
0.000164236
0.000107525
4.3407e-05
6.22622e-06
1.71937e-06
5.63612e-06
5.23165e-06
1.41588e-05
2.29648e-05
3.551e-05
4.72267e-05
5.44869e-05
6.15729e-05
6.9807e-05
7.91956e-05
8.87107e-05
9.73142e-05
0.000104031
0.000108018
0.000109071
0.0001082
0.000108254
0.000112324
0.00012201
0.000138431
0.00016101
0.00018681
0.000212139
0.000233219
0.000235461
0.000227801
0.000220932
0.000214428
0.000206439
0.000195283
0.000173693
0.000123043
5.7138e-05
8.67812e-06
1.70089e-06
5.23628e-06
5.36222e-06
1.51592e-05
2.47713e-05
3.89322e-05
5.21986e-05
6.12385e-05
6.93041e-05
7.68744e-05
8.43841e-05
9.20653e-05
9.98428e-05
0.000107346
0.000114311
0.000120897
0.000127729
0.000135615
0.00014538
0.000157842
0.00017339
0.000191332
0.000210162
0.000227564
0.000240579
0.000239742
0.000229605
0.000221187
0.000215018
0.000208127
0.000192431
0.000152854
9.95514e-05
3.97547e-05
5.7008e-06
1.52577e-06
4.93673e-06
5.09954e-06
1.43222e-05
2.39781e-05
3.53972e-05
4.70821e-05
5.47148e-05
6.16528e-05
6.80493e-05
7.37858e-05
7.8888e-05
8.34929e-05
8.74619e-05
9.05316e-05
9.26213e-05
9.42969e-05
9.68807e-05
0.000101827
0.000110177
0.0001229
0.000140163
0.000160491
0.00018137
0.000199831
0.00020152
0.000196211
0.000189808
0.000182882
0.000174084
0.000161929
0.000143943
0.000110233
5.16423e-05
7.49089e-06
1.46972e-06
4.61085e-06
5.5949e-06
1.71357e-05
3.09588e-05
4.31531e-05
5.3048e-05
5.93123e-05
6.43048e-05
6.85339e-05
7.21852e-05
7.56508e-05
7.93873e-05
8.37755e-05
8.91188e-05
9.55837e-05
0.000103267
0.000112342
0.000123192
0.000136415
0.000152158
0.000169828
0.000188162
0.000205335
0.000216297
0.000213795
0.000209047
0.000204821
0.00020124
0.000196746
0.000184581
0.00014961
9.98213e-05
4.17095e-05
6.0872e-06
1.39703e-06
4.37158e-06
5.94095e-06
1.85056e-05
3.60093e-05
5.01883e-05
5.79873e-05
6.22317e-05
6.48294e-05
6.72103e-05
7.03562e-05
7.47211e-05
8.00869e-05
8.16246e-05
8.20472e-05
8.21423e-05
8.19261e-05
8.16554e-05
8.21406e-05
8.4835e-05
9.16701e-05
0.000104398
0.000122683
0.000143515
0.000163191
0.000170386
0.000166639
0.000159464
0.000150417
0.000139028
0.000123712
0.000102911
7.44053e-05
3.1128e-05
4.06169e-06
1.16406e-06
4.27126e-06
6.83046e-06
2.04655e-05
3.97174e-05
5.61953e-05
6.73471e-05
7.41003e-05
7.82366e-05
8.11806e-05
8.27873e-05
8.37119e-05
8.56032e-05
8.58072e-05
8.54963e-05
8.49648e-05
8.4783e-05
8.57972e-05
8.8874e-05
9.4429e-05
9.26514e-05
9.72296e-05
0.000114879
0.000140579
0.000168793
0.00019486
0.000214059
0.000222901
0.000221793
0.000212983
0.00019749
0.000173924
0.000135577
6.3237e-05
8.68244e-06
1.66471e-06
4.18575e-06
1.01874e-05
3.42898e-05
5.77756e-05
6.96957e-05
7.42349e-05
7.63862e-05
7.85398e-05
8.12421e-05
8.42004e-05
8.59065e-05
8.39311e-05
8.22277e-05
8.11133e-05
8.10642e-05
8.2889e-05
8.77671e-05
9.64594e-05
9.91853e-05
0.000101573
0.00010596
0.000111658
0.000118678
0.000126315
0.000132551
0.000134322
0.000130092
0.00012037
0.000105101
8.49217e-05
6.1421e-05
4.01085e-05
2.12167e-05
3.96802e-06
1.16231e-06
4.09986e-06
1.20424e-05
3.48536e-05
5.27136e-05
5.98888e-05
6.25739e-05
6.46174e-05
6.69866e-05
6.93392e-05
7.12343e-05
7.27148e-05
7.39134e-05
7.50499e-05
7.63469e-05
7.79468e-05
7.99063e-05
8.25665e-05
8.75382e-05
9.90425e-05
0.000123507
0.000166156
0.000228278
0.000303035
0.000377927
0.000443079
0.000441638
0.000394152
0.000325726
0.000256859
0.000199284
0.000151257
0.000106156
4.57273e-05
3.77812e-06
1.06702e-06
3.12651e-06
3.93368e-05
6.12203e-05
7.5349e-05
8.17923e-05
7.79402e-05
7.85351e-05
8.06567e-05
8.29431e-05
8.51254e-05
8.70366e-05
8.86833e-05
9.00951e-05
9.12812e-05
9.22907e-05
9.31811e-05
9.39975e-05
9.4775e-05
9.55635e-05
9.64091e-05
9.72321e-05
9.77354e-05
9.74824e-05
9.59084e-05
9.25694e-05
8.71782e-05
7.97256e-05
7.01583e-05
5.83649e-05
4.43127e-05
2.86394e-05
1.38791e-05
3.73135e-06
3.4764e-07
6.0279e-08
5.14113e-06
2.87822e-05
1.92549e-05
1.99725e-05
2.19791e-05
2.24623e-05
2.32851e-05
2.47929e-05
2.68288e-05
2.90589e-05
3.13158e-05
3.35426e-05
3.5682e-05
3.76812e-05
3.95155e-05
4.11746e-05
4.26494e-05
4.39125e-05
4.48752e-05
4.54177e-05
4.54778e-05
4.4906e-05
4.38255e-05
4.2232e-05
4.00429e-05
3.72984e-05
3.4054e-05
3.04127e-05
2.64568e-05
2.21768e-05
1.74218e-05
1.21461e-05
7.52469e-06
7.81429e-06
2.57599e-07
1.44977e-08
6.98252e-07
1.06039e-06
1.74739e-06
2.62482e-06
3.539e-06
4.37117e-06
5.023e-06
5.3854e-06
5.46503e-06
5.3494e-06
4.92338e-06
4.11762e-06
3.91804e-06
5.20552e-06
7.17568e-06
9.28823e-06
1.2987e-05
1.47494e-05
1.5231e-05
1.56397e-05
1.62648e-05
1.71186e-05
1.80546e-05
1.89004e-05
1.95309e-05
1.9893e-05
1.99743e-05
1.97763e-05
1.93043e-05
1.85533e-05
1.74639e-05
1.57577e-05
3.60808e-06
1.18514e-07
8.06713e-08
1.9511e-07
7.23924e-07
2.42964e-06
5.20471e-06
8.16762e-06
1.05641e-05
1.20775e-05
1.2688e-05
1.25974e-05
1.19611e-05
1.10895e-05
1.01537e-05
9.2354e-06
8.36171e-06
7.85638e-06
7.96833e-06
7.21224e-06
6.23598e-06
1.04346e-05
2.11216e-05
3.39414e-05
4.56463e-05
5.47804e-05
6.12443e-05
6.5893e-05
6.9851e-05
7.36115e-05
7.70337e-05
7.95555e-05
7.99092e-05
7.48771e-05
3.10205e-05
8.17745e-06
9.2058e-07
6.29709e-07
9.32472e-07
4.78016e-06
1.64908e-05
2.79358e-05
3.7567e-05
4.62432e-05
5.2596e-05
5.24278e-05
4.50973e-05
3.57012e-05
2.67145e-05
1.97686e-05
1.52839e-05
1.26307e-05
1.09691e-05
9.78362e-06
9.0855e-06
9.6048e-06
1.2059e-05
1.56099e-05
1.92069e-05
2.27602e-05
2.72076e-05
3.31839e-05
4.0923e-05
5.02594e-05
6.06952e-05
7.11347e-05
8.0106e-05
8.51119e-05
6.42752e-05
2.62829e-05
9.41912e-06
1.58959e-06
8.85324e-07
2.43292e-06
1.64551e-05
2.86131e-05
4.00529e-05
4.95878e-05
5.71497e-05
6.27142e-05
6.46787e-05
6.01197e-05
5.20002e-05
4.17543e-05
3.11229e-05
2.2341e-05
1.76158e-05
1.76983e-05
2.1461e-05
2.74105e-05
3.4651e-05
4.27202e-05
5.12627e-05
6.01187e-05
6.94896e-05
7.99838e-05
9.20217e-05
0.00010465
0.00011592
0.000123731
0.000126119
0.000121274
0.000101286
5.29185e-05
2.32975e-05
8.37296e-06
2.2344e-06
7.75169e-07
1.07585e-06
4.4101e-06
1.6473e-05
2.72978e-05
3.62469e-05
4.42129e-05
5.14562e-05
5.86318e-05
6.59934e-05
6.82391e-05
6.74828e-05
6.53248e-05
6.22329e-05
5.88006e-05
5.57775e-05
5.40595e-05
5.44859e-05
5.75096e-05
6.2904e-05
6.98657e-05
7.35259e-05
7.64848e-05
8.63514e-05
0.000104701
0.000115361
0.000122036
0.000124889
0.000121596
0.000109297
8.10997e-05
4.52739e-05
2.39392e-05
9.03714e-06
2.75787e-06
1.19807e-06
2.28428e-06
1.46599e-05
3.57132e-05
5.13414e-05
6.46839e-05
7.64124e-05
8.38841e-05
8.66073e-05
8.6913e-05
8.54237e-05
8.27023e-05
7.92265e-05
7.54509e-05
7.18396e-05
6.88694e-05
6.6982e-05
6.64552e-05
6.73053e-05
6.92913e-05
7.20013e-05
7.50906e-05
7.84669e-05
8.228e-05
8.659e-05
9.09441e-05
9.39624e-05
9.28235e-05
8.51132e-05
7.38647e-05
5.9231e-05
3.76308e-05
2.30435e-05
8.85402e-06
3.20259e-06
1.2492e-06
2.82948e-06
1.6836e-05
3.569e-05
4.95721e-05
6.18153e-05
7.30819e-05
8.39158e-05
9.47305e-05
0.000104477
0.000106556
0.000106318
0.000104277
0.000100937
9.68746e-05
9.27049e-05
8.90027e-05
8.61914e-05
8.45414e-05
8.40864e-05
8.46532e-05
8.60265e-05
8.79986e-05
9.02357e-05
9.20491e-05
9.21359e-05
8.83413e-05
7.9353e-05
6.89429e-05
6.12001e-05
4.91931e-05
3.4653e-05
2.29559e-05
8.93617e-06
3.59394e-06
1.32164e-06
2.47631e-06
1.44638e-05
3.64034e-05
5.31744e-05
6.68059e-05
7.9031e-05
9.08274e-05
0.000102302
0.000109083
0.000112359
0.000113867
0.000113877
0.000112685
0.000110634
0.000108113
0.000105515
0.000103158
0.000101432
0.000100597
0.000100687
0.000101564
0.000102873
0.000103976
0.00010381
0.000100611
9.18703e-05
7.77361e-05
6.47556e-05
5.69034e-05
4.52187e-05
3.39874e-05
2.35697e-05
9.11469e-06
3.93673e-06
1.50791e-06
3.72236e-06
2.24176e-05
4.7921e-05
6.56434e-05
8.03828e-05
9.37385e-05
0.000106698
0.000119743
0.000130435
0.000134047
0.00013568
0.000135647
0.000134264
0.000131868
0.000128823
0.000125491
0.000122176
0.000119392
0.000117509
0.000116568
0.000116351
0.000116381
0.000115849
0.000113409
0.00010695
9.37974e-05
7.67194e-05
6.41242e-05
5.70277e-05
4.39237e-05
3.44815e-05
2.42399e-05
9.07391e-06
4.26566e-06
1.53144e-06
3.30621e-06
1.94189e-05
4.54737e-05
6.39604e-05
7.97226e-05
9.4044e-05
0.000107845
0.000122134
0.000136206
0.000142951
0.000147054
0.000149415
0.000150261
0.000149837
0.000148407
0.000146249
0.000143537
0.000140965
0.000139002
0.000137566
0.000136405
0.000135067
0.000132715
0.000127859
0.000118207
0.000101079
8.07045e-05
6.65765e-05
5.83556e-05
4.41057e-05
3.55982e-05
2.53964e-05
9.37278e-06
4.551e-06
1.63975e-06
4.08306e-06
2.39815e-05
5.37171e-05
7.61746e-05
9.33625e-05
0.000108347
0.000122664
0.000137405
0.000151971
0.00016012
0.000164499
0.000167157
0.000168354
0.000168326
0.000167298
0.000165488
0.000163069
0.000160673
0.000158658
0.000156851
0.000154956
0.000152455
0.000148369
0.000141047
0.00012817
0.000107445
8.47474e-05
6.99024e-05
5.71252e-05
4.48558e-05
3.6934e-05
2.64704e-05
9.46819e-06
4.82447e-06
1.73069e-06
4.31894e-06
2.51396e-05
5.63654e-05
7.87994e-05
9.70861e-05
0.000113382
0.000128751
0.000144317
0.000160546
0.000174253
0.000180445
0.000184778
0.000187486
0.000188791
0.000188899
0.000188011
0.000186243
0.000184215
0.000182189
0.000179912
0.000177079
0.000173107
0.000166924
0.000156854
0.00014076
0.000116889
9.19242e-05
7.56173e-05
5.77212e-05
4.63089e-05
3.85957e-05
2.7771e-05
9.73975e-06
5.07179e-06
1.76255e-06
4.56106e-06
2.64449e-05
5.95515e-05
8.80583e-05
0.000108731
0.000125817
0.000141538
0.000157364
0.000174103
0.000189878
0.000197065
0.000202373
0.000206051
0.00020832
0.000209373
0.000209373
0.000208446
0.00020701
0.000205199
0.000202745
0.000199258
0.000194035
0.000185915
0.000173266
0.000154285
0.000127927
0.000101105
7.9787e-05
5.94188e-05
4.85141e-05
4.05369e-05
2.91078e-05
9.93201e-06
5.30626e-06
1.88759e-06
5.14787e-06
2.94082e-05
6.50704e-05
9.49883e-05
0.000116838
0.000135095
0.000151775
0.000168236
0.000185548
0.000203137
0.000215373
0.000222084
0.000227049
0.000230484
0.000232579
0.000233488
0.000233317
0.000232356
0.000230649
0.000227901
0.000223657
0.000217149
0.000207217
0.000192386
0.000171254
0.000143361
0.000114539
8.32745e-05
6.25323e-05
5.16085e-05
4.28791e-05
3.06214e-05
1.02271e-05
5.52373e-06
1.90264e-06
5.23318e-06
3.00283e-05
6.73963e-05
0.000102057
0.00012845
0.000148589
0.000166149
0.000183137
0.000200816
0.000219131
0.000234099
0.000242115
0.000248316
0.000252916
0.000256089
0.000257969
0.000258625
0.000258214
0.000256687
0.000253703
0.000248744
0.000241004
0.000229383
0.000212632
0.000189773
0.000160842
0.000122298
8.78785e-05
6.71565e-05
5.56463e-05
4.57015e-05
3.23442e-05
1.05384e-05
5.72976e-06
2.02539e-06
5.88833e-06
3.30351e-05
7.28903e-05
0.000109719
0.000138611
0.000160343
0.000178867
0.00019632
0.00021419
0.000233273
0.000252031
0.000263426
0.00027109
0.000277021
0.000281376
0.000284262
0.000285719
0.000285803
0.000284397
0.000281129
0.000275444
0.000266552
0.000253462
0.000235168
0.000211042
0.000174726
0.000128312
9.37815e-05
7.28846e-05
6.02067e-05
4.88209e-05
3.42937e-05
1.09653e-05
5.92299e-06
2.05398e-06
6.02779e-06
3.40219e-05
7.59015e-05
0.000115615
0.000150347
0.000176483
0.000196488
0.000214308
0.000232066
0.000250907
0.000270298
0.000285601
0.000294625
0.000301829
0.000307345
0.000311244
0.000313522
0.000314149
0.000312945
0.00030951
0.000303281
0.000293509
0.000279333
0.00025997
0.000234052
0.00018261
0.000135154
0.00010128
7.98054e-05
6.54029e-05
5.22847e-05
3.6473e-05
1.14525e-05
6.10585e-06
2.16179e-06
6.65517e-06
3.67069e-05
8.08049e-05
0.000122626
0.000159512
0.000189438
0.000211599
0.000230415
0.000248361
0.000266995
0.000286893
0.000306331
0.00031892
0.000327572
0.000334364
0.000339342
0.000342471
0.000343665
0.000342703
0.000339177
0.000332538
0.000322098
0.000307114
0.000286961
0.000243902
0.000190346
0.000144087
0.000110449
8.76606e-05
7.10649e-05
5.60438e-05
3.88806e-05
1.20383e-05
6.27674e-06
2.21148e-06
6.90599e-06
3.81431e-05
8.45156e-05
0.00012913
0.000168952
0.000203524
0.000231086
0.000251123
0.00026867
0.000286344
0.000305353
0.000325414
0.000343207
0.000353212
0.000361233
0.000367277
0.000371264
0.000373048
0.000372362
0.000368777
0.000361737
0.000350578
0.000334601
0.000304017
0.000252899
0.000199695
0.000154634
0.000120663
9.60693e-05
7.71492e-05
6.01663e-05
4.1576e-05
1.26681e-05
6.4375e-06
2.30682e-06
7.49775e-06
4.06181e-05
8.91677e-05
0.000136026
0.000178183
0.000215224
0.000247301
0.000270453
0.0002889
0.000306223
0.000324147
0.000343316
0.000362899
0.000379286
0.000388449
0.000395428
0.000400108
0.000402294
0.000401673
0.000397784
0.000390047
0.000377791
0.000357423
0.000314223
0.000261546
0.000209957
0.000165837
0.000131165
0.000104664
8.34801e-05
6.4538e-05
4.44643e-05
1.32762e-05
6.58585e-06
2.38042e-06
7.89893e-06
4.25437e-05
9.35003e-05
0.000143013
0.000187767
0.000227284
0.000261733
0.000291162
0.000311259
0.000328152
0.000344874
0.000362599
0.000381343
0.000399845
0.000414713
0.000422566
0.000427866
0.00043036
0.000429682
0.000425327
0.000416691
0.0004031
0.000369852
0.000323204
0.000271287
0.000221152
0.000177458
0.000141839
0.000113448
9.00928e-05
6.92256e-05
4.7612e-05
1.38919e-05
6.7237e-06
2.46915e-06
8.47032e-06
4.49487e-05
9.82517e-05
0.000150279
0.000197587
0.00023963
0.00027653
0.000308601
0.000333642
0.000351357
0.000367248
0.0003836
0.000400829
0.000418387
0.000434986
0.000448349
0.000454888
0.000457421
0.00045642
0.000451345
0.000441571
0.000417389
0.000379565
0.000332501
0.000281723
0.00023265
0.000189055
0.000152418
0.000122236
9.6836e-05
7.41135e-05
5.09483e-05
1.45022e-05
6.85043e-06
2.56843e-06
9.04825e-06
4.74179e-05
0.000103269
0.000157905
0.000207681
0.00025203
0.000291102
0.000325239
0.000354849
0.000374121
0.000389791
0.00040531
0.000421536
0.000438054
0.000453859
0.000467672
0.000477995
0.000483037
0.000481588
0.000474861
0.000457579
0.000428956
0.000389737
0.000342913
0.000293013
0.000244556
0.00020076
0.00016302
0.000131102
0.000103753
7.92509e-05
5.45393e-05
1.51455e-05
6.9665e-06
2.65693e-06
9.62705e-06
4.98642e-05
0.000108303
0.000165742
0.000218276
0.000265219
0.000306669
0.000342947
0.000374431
0.000397729
0.0004135
0.000427882
0.000442975
0.000458649
0.00047385
0.000487209
0.000497244
0.000502376
0.000500913
0.000491049
0.000471173
0.000440646
0.000400571
0.000353881
0.00030455
0.000256428
0.000212299
0.000173478
0.000139931
0.000110751
8.45555e-05
5.8323e-05
1.57837e-05
7.07135e-06
2.77565e-06
1.03265e-05
5.26273e-05
0.000113677
0.000173743
0.000228769
0.000278039
0.000321648
0.00035991
0.0003932
0.000419786
0.00043616
0.000449972
0.000464205
0.000479085
0.000493621
0.000506378
0.000515741
0.000519956
0.000517173
0.000505621
0.000484053
0.000452328
0.000411834
0.000365363
0.000316442
0.00026844
0.00022384
0.000183908
0.000148785
0.000117865
9.00791e-05
6.23775e-05
1.64583e-05
7.16479e-06
2.8705e-06
1.09331e-05
5.51545e-05
0.000118943
0.000181945
0.000239786
0.000291632
0.000337536
0.000377811
0.000412842
0.000442855
0.000459505
0.000472405
0.000485537
0.000499458
0.000513161
0.00052508
0.000533466
0.000536487
0.000532305
0.000519305
0.000496511
0.00046405
0.000423389
0.000377143
0.000328493
0.000280456
0.0002353
0.000194266
0.000157639
0.000125072
9.5774e-05
6.66337e-05
1.71271e-05
7.24773e-06
3.00163e-06
1.17173e-05
5.8107e-05
0.000124559
0.00019024
0.000250626
0.000304834
0.00035289
0.000395092
0.000431808
0.000463411
0.000481364
0.000493743
0.000506042
0.000519163
0.000532083
0.000543134
0.000550484
0.00055229
0.000546801
0.000532584
0.000508879
0.000475957
0.000435267
0.00038923
0.000340738
0.000292543
0.000246757
0.000204607
0.000166501
0.000132347
0.000101668
7.12312e-05
1.78308e-05
7.32118e-06
3.10824e-06
1.23796e-05
6.07643e-05
0.000130008
0.000198632
0.000261792
0.000318497
0.000368742
0.000412823
0.000451116
0.000483993
0.000503529
0.000515213
0.000526327
0.000538433
0.000550486
0.000560639
0.000566951
0.000567581
0.000560891
0.000545629
0.00052121
0.000487989
0.000447349
0.000401511
0.000353106
0.000304662
0.000258172
0.000214884
0.000175373
0.000139803
0.000107782
7.50416e-05
1.85161e-05
7.38347e-06
3.24537e-06
1.32072e-05
6.37954e-05
0.000135744
0.000207097
0.000272838
0.0003319
0.000384244
0.000430148
0.000469975
0.000504093
0.000524414
0.000535498
0.000545681
0.000556922
0.000568179
0.000577488
0.000582833
0.0005824
0.000574669
0.000558551
0.000533598
0.000500206
0.000459665
0.000413998
0.000365604
0.000316829
0.000269593
0.000225215
0.000184455
0.000147642
0.000114094
7.77608e-05
1.91197e-05
7.43595e-06
3.36567e-06
1.39314e-05
6.6579e-05
0.000141312
0.000215546
0.000283975
0.000345432
0.000399848
0.000447499
0.000488761
0.000524008
0.000545174
0.000555464
0.000564534
0.000574812
0.000585254
0.000593753
0.000598201
0.000596806
0.000588162
0.000571324
0.000545956
0.000512465
0.000472038
0.000426513
0.000378083
0.000328947
0.00028099
0.000235613
0.000193733
0.000155746
0.000120547
8.03391e-05
1.9654e-05
7.47808e-06
3.50552e-06
1.47891e-05
6.96728e-05
0.000147139
0.000224115
0.000295106
0.000358862
0.000415282
0.000464625
0.000507264
0.00054358
0.000565025
0.000574482
0.000582553
0.000591976
0.000601678
0.000609436
0.000613077
0.000610836
0.000601415
0.000583994
0.00055832
0.000524794
0.000484499
0.000439097
0.000390603
0.000341094
0.000292434
0.000246112
0.000203177
0.000164046
0.000127132
8.28641e-05
2.01563e-05
7.51211e-06
3.63701e-06
1.55902e-05
7.26245e-05
0.000152846
0.000232608
0.000306168
0.000372191
0.000430547
0.000481498
0.000525422
0.000562711
0.000584253
0.000592762
0.000599815
0.000608416
0.000617434
0.00062452
0.000627438
0.000624456
0.000614372
0.000596479
0.000570586
0.000537081
0.000496942
0.000451672
0.000403126
0.00035327
0.000303955
0.000256742
0.000212796
0.000172532
0.000133839
8.53301e-05
2.06282e-05
7.53691e-06
3.77633e-06
1.64502e-05
7.56761e-05
0.000158591
0.000241056
0.000317121
0.00038536
0.000445609
0.000498118
0.00054327
0.000581469
0.000602636
0.000610119
0.000616228
0.000624103
0.000632516
0.000639003
0.000641279
0.000637651
0.000627008
0.000608739
0.000582706
0.000549273
0.000509318
0.000464197
0.000415618
0.000365451
0.00031553
0.000267489
0.000222598
0.000181251
0.000140762
8.78133e-05
2.11012e-05
7.55425e-06
3.91484e-06
1.72779e-05
7.86103e-05
0.000164149
0.000249248
0.000327743
0.000398124
0.000460193
0.000514192
0.00056051
0.000599557
0.000620049
0.000626468
0.000631731
0.000639005
0.000646918
0.000652891
0.000654611
0.00065043
0.000639327
0.000620771
0.000594667
0.000561351
0.000521607
0.000476654
0.000428059
0.000377601
0.000327103
0.000278273
0.000232491
0.000190127
0.000147848
9.02391e-05
2.15516e-05
7.56424e-06
4.05353e-06
1.81029e-05
8.14833e-05
0.000169553
0.000257201
0.00033806
0.000410529
0.00047437
0.000529812
0.000577245
0.000617091
0.000636659
0.000641965
0.000646437
0.000653193
0.000660684
0.000666209
0.000667431
0.000662758
0.000651256
0.000632474
0.00060635
0.000573193
0.000533701
0.000488959
0.000440401
0.00038971
0.00033869
0.000289121
0.000242502
0.000199175
0.000155092
9.25842e-05
2.19721e-05
7.56489e-06
4.19657e-06
1.89208e-05
8.42895e-05
0.000174779
0.000264838
0.000347926
0.000422367
0.000487886
0.000544699
0.000593193
0.000633796
0.00065198
0.000656258
0.000660148
0.000666558
0.000673748
0.000678921
0.000679732
0.000674649
0.000662824
0.000643878
0.000617782
0.000584818
0.000545599
0.000501095
0.000452614
0.00040175
0.000350283
0.00030006
0.000252687
0.00020846
0.00016255
9.48958e-05
2.23791e-05
7.55698e-06
4.33655e-06
1.97061e-05
8.69683e-05
0.000179791
0.000272177
0.000357412
0.000433743
0.000500864
0.000558978
0.000608469
0.000649775
0.000666125
0.00066941
0.000672921
0.000679152
0.000686127
0.000690998
0.000691459
0.000686043
0.000673977
0.000654942
0.000628932
0.000596203
0.000557291
0.00051305
0.000464671
0.00041366
0.000361792
0.000310995
0.00026301
0.000218071
0.000170414
9.7277e-05
2.28083e-05
7.54215e-06
4.48421e-06
2.05198e-05
8.96831e-05
0.000184756
0.000279331
0.000366557
0.000444631
0.000513223
0.000572528
0.000622934
0.000664883
0.000678924
0.000681369
0.000684791
0.000691058
0.000697933
0.000702549
0.000702682
0.000696974
0.000684726
0.000665662
0.000639786
0.000607325
0.000568743
0.00052479
0.000476551
0.000425466
0.000373302
0.000322051
0.00027353
0.000227874
0.000178376
9.958e-05
2.32152e-05
7.52106e-06
4.62708e-06
2.13278e-05
9.2376e-05
0.000189671
0.000286384
0.000375523
0.000455239
0.000525191
0.000585576
0.000636794
0.000679302
0.000690384
0.00069215
0.000695733
0.000702194
0.00070909
0.000713557
0.000713437
0.000707464
0.000695052
0.000675991
0.000650293
0.000618138
0.000579914
0.000536274
0.000488194
0.000437026
0.000384526
0.000332809
0.000283932
0.000238008
0.000186749
0.000101995
2.36409e-05
7.49354e-06
4.77398e-06
2.21316e-05
9.50024e-05
0.00019441
0.000293137
0.000384066
0.000465308
0.000536513
0.000597877
0.000649808
0.000691597
0.000700409
0.00070195
0.000705778
0.000712484
0.000719475
0.000723876
0.000723583
0.000717414
0.000704872
0.00068583
0.000660332
0.000628525
0.000590699
0.000547389
0.000499476
0.000448282
0.000395661
0.000343931
0.000295159
0.000248355
0.000191622
0.000104038
2.40195e-05
7.45862e-06
4.91341e-06
2.29142e-05
9.75682e-05
0.000199043
0.000299721
0.000392359
0.000475032
0.000547389
0.000609635
0.000662185
0.00070171
0.000709472
0.000710908
0.000715042
0.000722067
0.000729206
0.000733563
0.000733117
0.000726794
0.00071418
0.000695184
0.000669868
0.000638376
0.000600945
0.000558001
0.000510331
0.000459262
0.000406766
0.000355297
0.000306727
0.000258781
0.000196253
0.000105848
2.43419e-05
7.41601e-06
5.0524e-06
2.36825e-05
0.000100046
0.000203476
0.000305989
0.000400224
0.000484228
0.000557646
0.00062069
0.000673789
0.000710577
0.000717309
0.000718826
0.000723444
0.000730919
0.000738294
0.000742671
0.000742119
0.000735681
0.000723039
0.000704146
0.000679052
0.000647861
0.000610773
0.000568179
0.000520826
0.000470038
0.000417876
0.000366872
0.000318598
0.0002694
0.000200828
0.000107618
2.46573e-05
7.36804e-06
5.18098e-06
2.43702e-05
0.000102277
0.000207541
0.000311806
0.000407577
0.000492854
0.000567278
0.00063107
0.000684671
0.00071875
0.000724411
0.000726009
0.00073115
0.000739124
0.000746776
0.000751209
0.000750585
0.000744065
0.00073142
0.00071265
0.000687811
0.000656965
0.000620237
0.000577974
0.000530943
0.000480527
0.000428849
0.000378456
0.000330588
0.000280107
0.000205263
0.00010931
2.49487e-05
7.31676e-06
5.30828e-06
2.50196e-05
0.000104362
0.000211309
0.000317179
0.000414359
0.00050081
0.000576165
0.000640653
0.000694726
0.000726362
0.000731058
0.000732767
0.000738442
0.00074692
0.000754854
0.000759347
0.000758659
0.000752063
0.000739415
0.000720757
0.000696151
0.000665635
0.000629292
0.000587409
0.000540732
0.000490727
0.000439636
0.000389981
0.000342581
0.000290759
0.000209462
0.000110862
2.52022e-05
7.26078e-06
5.42792e-06
2.56563e-05
0.000106411
0.000214984
0.000322378
0.000420874
0.000508404
0.000584599
0.000649701
0.000704179
0.000733225
0.000737036
0.00073895
0.000745208
0.000754207
0.000762435
0.000767009
0.000766286
0.000759645
0.000747018
0.000728482
0.000704104
0.000673911
0.000637961
0.000596513
0.000550282
0.000500733
0.00045021
0.000401374
0.000354732
0.000301764
0.000213609
0.000112384
2.54402e-05
7.20048e-06
5.54526e-06
2.62682e-05
0.000108359
0.000218446
0.000327248
0.000426956
0.000515476
0.000592439
0.000658099
0.000712937
0.000739271
0.000742274
0.000744498
0.000751396
0.000760929
0.000769445
0.000774103
0.000773365
0.000766709
0.000754135
0.000735749
0.00071162
0.000681756
0.000646188
0.000605167
0.000559447
0.000510612
0.000461148
0.000413558
0.000366921
0.000308504
0.000217425
0.00011385
2.56846e-05
7.13871e-06
5.65389e-06
2.6861e-05
0.000110255
0.000221786
0.000331908
0.000432736
0.000522159
0.000599815
0.000665968
0.000721119
0.000744772
0.00074704
0.000749625
0.000757174
0.000767219
0.000775996
0.000780724
0.000779972
0.000773314
0.000760801
0.000742564
0.000718667
0.000689104
0.000653897
0.000613323
0.000568242
0.000520408
0.000472393
0.000426235
0.000379147
0.000314438
0.000220976
0.000115214
2.59196e-05
7.07566e-06
5.75728e-06
2.74076e-05
0.000111991
0.000224835
0.000336153
0.000438
0.000528248
0.000606538
0.000673146
0.000728585
0.000749373
0.000751044
0.00075415
0.000762425
0.000772994
0.000782028
0.000786832
0.000786088
0.00077945
0.000767017
0.00074893
0.000725252
0.000695969
0.000661118
0.000621038
0.000576716
0.000530069
0.000483682
0.000439031
0.000391365
0.000320122
0.000224308
0.00011644
2.61088e-05
7.01009e-06
5.85179e-06
2.78985e-05
0.000113562
0.00022761
0.000340026
0.000442805
0.000533809
0.000612679
0.000679701
0.000735403
0.000753276
0.000754457
0.000758174
0.000767196
0.00077827
0.000787544
0.000792426
0.000791705
0.000785103
0.000772757
0.000754819
0.00073135
0.000702337
0.000667847
0.000628297
0.000584817
0.000539471
0.00049482
0.000451729
0.000403457
0.000325596
0.000227501
0.000117629
2.63035e-05
6.94589e-06
5.94264e-06
2.83708e-05
0.000115062
0.000230213
0.000343608
0.000447207
0.000538869
0.000618244
0.000685629
0.000741565
0.000756487
0.000757346
0.000761791
0.000771573
0.000783123
0.000792622
0.000797588
0.000796903
0.00079035
0.000778098
0.000760308
0.000737041
0.000708294
0.000674172
0.000635184
0.000592585
0.000548562
0.00050565
0.000464145
0.000415284
0.000330803
0.000230517
0.000118735
2.64817e-05
6.88523e-06
6.02544e-06
2.88196e-05
0.000116487
0.00023268
0.000346984
0.000451327
0.000543569
0.000623376
0.000691066
0.000747198
0.000758924
0.000759674
0.000764953
0.000775469
0.000787457
0.000797169
0.000802227
0.000801591
0.000795099
0.00078295
0.000765317
0.000742259
0.000713781
0.000680021
0.000641577
0.000599887
0.000557369
0.0005165
0.000476265
0.000423837
0.000335608
0.000233302
0.000119727
2.66264e-05
6.82599e-06
6.10314e-06
2.92156e-05
0.000117735
0.000234852
0.000349972
0.000454985
0.000547749
0.000627937
0.000695878
0.000751353
0.000760645
0.000761711
0.000767754
0.000778906
0.000791303
0.000801233
0.00080639
0.000805812
0.000799392
0.000787359
0.000769887
0.000747031
0.000718804
0.000685406
0.000647587
0.000607032
0.000566323
0.00052753
0.000487714
0.000429826
0.000340035
0.00023595
0.000120736
2.67945e-05
6.76994e-06
6.17274e-06
2.95573e-05
0.000118822
0.000236762
0.000352616
0.000458236
0.000551477
0.000632011
0.000700175
0.000753352
0.000762043
0.000763486
0.000770199
0.00078195
0.000794749
0.000804899
0.000810166
0.00080966
0.000803327
0.000791416
0.000774105
0.000751448
0.00072348
0.000690484
0.000653379
0.00061406
0.000575174
0.000538267
0.000498566
0.000435423
0.000344159
0.000238449
0.000121727
2.69753e-05
6.7191e-06
6.24028e-06
2.98767e-05
0.000119817
0.000238486
0.000354984
0.000461141
0.000554801
0.00063564
0.000703995
0.000754787
0.0007629
0.000764751
0.00077214
0.000784476
0.000797664
0.000808029
0.000813411
0.000812986
0.000806746
0.000794959
0.000777805
0.000755345
0.00072765
0.000695097
0.000658767
0.000620724
0.00058362
0.000548461
0.000508726
0.00044048
0.000347807
0.000240581
0.000122493
2.70951e-05
6.66892e-06
6.30379e-06
3.01687e-05
0.000120718
0.000240049
0.000357135
0.000463775
0.000557813
0.000638923
0.000707445
0.000755893
0.000763472
0.000765727
0.000773753
0.000786632
0.000800178
0.000810746
0.000816242
0.000815904
0.000809761
0.000798098
0.000781097
0.000758831
0.000731419
0.000699331
0.000663791
0.00062701
0.000591626
0.000558127
0.000518338
0.000445213
0.000351223
0.000242585
0.000123224
2.72141e-05
6.61944e-06
6.36694e-06
3.04588e-05
0.000121581
0.000241504
0.000359101
0.000466161
0.000560526
0.000641871
0.000710535
0.000756567
0.000763677
0.000766382
0.000775045
0.000788442
0.00080232
0.000813075
0.000818679
0.000818429
0.000812384
0.000800844
0.000783994
0.000761926
0.000734803
0.000703191
0.000668448
0.000632906
0.000599176
0.000567247
0.000527377
0.000449575
0.000354364
0.000244428
0.000123897
2.73226e-05
6.5714e-06
6.42481e-06
3.0672e-05
0.000122202
0.000242595
0.000360636
0.000468086
0.00056277
0.000644353
0.000713171
0.000756909
0.000763584
0.000766727
0.000775997
0.000789874
0.000804052
0.000814971
0.000820675
0.00082051
0.000814566
0.000803149
0.000786451
0.000764578
0.000737745
0.000706604
0.000672636
0.000638282
0.00060614
0.000575754
0.0005356
0.000453509
0.000357123
0.000245968
0.000124381
2.73771e-05
6.52301e-06
6.48304e-06
3.0851e-05
0.000122706
0.000243466
0.000361855
0.00046962
0.000564579
0.000646382
0.000715353
0.000756991
0.000763318
0.000766907
0.000776753
0.00079107
0.000805509
0.000816563
0.000822346
0.000822256
0.000816406
0.00080511
0.000788561
0.000766881
0.000740323
0.000709627
0.000676427
0.000643368
0.000612985
0.000583585
0.000539923
0.000457031
0.000359595
0.0002473
0.000124737
2.73945e-05
6.47405e-06
6.53919e-06
3.09805e-05
0.000123056
0.000244105
0.000362779
0.000470813
0.000566011
0.000648014
0.000717131
0.000756656
0.000762727
0.00076681
0.000777237
0.000791974
0.000806651
0.000817823
0.000823676
0.000823658
0.000817905
0.000806734
0.000790336
0.000768844
0.000742554
0.000712314
0.000679936
0.000648209
0.000619445
0.000590715
0.000544079
0.000460427
0.000362043
0.000248698
0.000125198
2.7452e-05
6.42853e-06
6.59763e-06
3.11095e-05
0.000123368
0.000244633
0.000363514
0.000471744
0.000567126
0.000649291
0.000718535
0.000755998
0.000761909
0.000766539
0.000777545
0.000792681
0.000807573
0.000818846
0.000824756
0.000824799
0.000819132
0.000808075
0.000791815
0.000770495
0.000744463
0.000714679
0.000683109
0.000652628
0.000625279
0.000597091
0.00054803
0.00046369
0.000364443
0.000250119
0.00012572
2.75377e-05
6.38857e-06
6.6536e-06
3.11961e-05
0.000123559
0.000244961
0.000363978
0.000472349
0.000567876
0.000650182
0.000719549
0.000755238
0.000761098
0.000766292
0.00077786
0.000793358
0.000808426
0.00081977
0.000825718
0.000825808
0.000820216
0.00080926
0.000793127
0.000771974
0.0007462
0.000716868
0.00068607
0.000656717
0.000630595
0.000602852
0.000551723
0.000466758
0.00036672
0.000251493
0.00012625
2.76311e-05
6.35167e-06
6.7124e-06
3.13039e-05
0.000123785
0.000245291
0.000364379
0.000472817
0.000568421
0.000650815
0.000720272
0.000754266
0.000760157
0.000765971
0.00077813
0.000793995
0.000809217
0.000820588
0.000826529
0.000826634
0.000821093
0.000810222
0.000794205
0.000773217
0.000747711
0.000718843
0.000688804
0.00066052
0.000635525
0.000608179
0.000555211
0.000469665
0.000368893
0.000252826
0.000126795
2.77343e-05
6.3161e-06
6.76993e-06
3.14004e-05
0.000123976
0.000245547
0.000364658
0.000473109
0.000568741
0.000651182
0.000720697
0.00075306
0.00075907
0.000765574
0.000778361
0.000794611
0.000809995
0.000821388
0.000827293
0.000827369
0.000821834
0.000811008
0.000795069
0.000774215
0.000748955
0.00072053
0.000691219
0.000663948
0.00064002
0.000613079
0.000558501
0.000472426
0.000370967
0.000254105
0.000127326
2.7837e-05
6.27927e-06
6.82836e-06
3.14958e-05
0.000124158
0.00024576
0.000364842
0.000473251
0.000568858
0.000651304
0.000720853
0.000751681
0.000757891
0.000765119
0.000778561
0.000795219
0.000810783
0.000822218
0.000828107
0.000828151
0.000822598
0.000811784
0.000795899
0.000775158
0.000750121
0.000722111
0.000693487
0.000667176
0.000644271
0.000617741
0.000561642
0.000475126
0.00037307
0.000255486
0.000127983
2.79821e-05
6.24175e-06
6.88485e-06
3.1621e-05
0.000124419
0.000246042
0.000365046
0.000473348
0.000568865
0.000651257
0.000720794
0.000750132
0.000756605
0.000764617
0.000778749
0.000795833
0.000811586
0.000823057
0.000828919
0.000828924
0.000823338
0.000812507
0.000796643
0.000775988
0.000751151
0.000723532
0.000695567
0.000670192
0.000648291
0.00062215
0.000564491
0.000477599
0.000375024
0.000256798
0.000128628
2.81241e-05
6.20278e-06
6.9369e-06
3.16948e-05
0.000124539
0.000246113
0.000364988
0.000473147
0.000568546
0.000650866
0.000720378
0.000748282
0.000755113
0.000764022
0.00077893
0.000796478
0.000812431
0.000823948
0.00082978
0.000829731
0.000824092
0.000813218
0.000797329
0.000776705
0.00075201
0.000724713
0.000697329
0.000672812
0.000651861
0.000626104
0.000566934
0.00047972
0.000376688
0.000257887
0.000129129
2.82197e-05
6.16044e-06
6.98581e-06
3.17761e-05
0.000124665
0.000246157
0.000364855
0.000472818
0.000568045
0.000650244
0.000719694
0.000745943
0.000753156
0.000763063
0.000778859
0.000796963
0.000813173
0.000824768
0.000830602
0.000830526
0.000824847
0.000813931
0.000798013
0.000777393
0.00075279
0.000725744
0.00069884
0.000675061
0.000654958
0.000629553
0.000568948
0.00048149
0.000378093
0.00025881
0.000129543
2.82911e-05
6.11602e-06
7.02968e-06
3.18017e-05
0.000124627
0.000245955
0.000364422
0.000472152
0.000567185
0.000649248
0.000718625
0.000743272
0.000750876
0.000761818
0.000778539
0.000797245
0.000813764
0.000825474
0.000831322
0.000831228
0.000825522
0.000814574
0.000798629
0.000778007
0.000753466
0.000726612
0.0007001
0.000676941
0.000657558
0.000632415
0.000570379
0.000482725
0.000379045
0.000259388
0.000129742
2.82982e-05
6.06895e-06
7.07102e-06
3.18027e-05
0.000124514
0.000245625
0.000363809
0.000471261
0.000566061
0.000647958
0.000717243
0.000740294
0.000748356
0.000760377
0.000778025
0.00079732
0.000814165
0.000826038
0.000831938
0.000831826
0.000826081
0.000815095
0.000799118
0.000778487
0.000753983
0.000727262
0.000701043
0.000678365
0.000659539
0.000634556
0.00057121
0.000483371
0.000379457
0.000259522
0.000129642
2.82162e-05
6.01795e-06
7.11163e-06
3.18155e-05
0.000124428
0.00024531
0.000363177
0.000470299
0.000564809
0.000646485
0.000715635
0.000736722
0.000745339
0.000758533
0.000777118
0.000796998
0.000814185
0.000826262
0.000832284
0.000832219
0.000826462
0.000815447
0.000799455
0.000778836
0.000754387
0.00072779
0.000701804
0.00067949
0.000661068
0.000636149
0.000571676
0.000483673
0.00037958
0.000259454
0.000129444
2.81118e-05
5.96637e-06
7.15037e-06
3.18144e-05
0.000124301
0.000244935
0.000362469
0.000469238
0.000563423
0.000644837
0.000713838
0.0007329
0.000742227
0.000756529
0.000775948
0.000796368
0.000813893
0.000826181
0.000832339
0.000832363
0.000826642
0.000815618
0.000799612
0.000779015
0.000754646
0.0007282
0.000702449
0.000680457
0.000662355
0.000637419
0.000571902
0.000483728
0.000379475
0.000259216
0.000129158
2.79887e-05
5.91654e-06
7.18865e-06
3.18198e-05
0.00012419
0.000244565
0.000361741
0.000468126
0.000561944
0.000643038
0.000710192
0.000728924
0.000739129
0.000754381
0.000774548
0.000795482
0.000813341
0.000825844
0.000832143
0.000832263
0.000826606
0.00081561
0.000799606
0.00077903
0.000754755
0.000728495
0.000703007
0.000681327
0.000663493
0.000638496
0.000572069
0.00048373
0.000379334
0.000258972
0.000128899
2.78814e-05
5.86999e-06
7.22552e-06
3.1833e-05
0.000124095
0.000244209
0.000361019
0.000467004
0.000560433
0.000641176
0.000706027
0.000724731
0.000735793
0.000751973
0.000772868
0.000794302
0.00081249
0.000825215
0.000831669
0.000831899
0.00082632
0.000815381
0.00079942
0.000778892
0.000754723
0.000728688
0.000703545
0.000682249
0.000664696
0.00063961
0.000572318
0.000483835
0.000379318
0.000258875
0.000128781
2.78254e-05
5.82905e-06
7.26173e-06
3.18109e-05
0.000123893
0.000243705
0.000360137
0.000465723
0.000558766
0.000639158
0.000701688
0.000720333
0.00073224
0.000749337
0.000770938
0.000792848
0.000811346
0.00082428
0.000830887
0.000831231
0.000825731
0.000814846
0.000798935
0.000778479
0.000754437
0.000728636
0.000703886
0.000683092
0.00066593
0.000640754
0.000572498
0.000483851
0.000379192
0.000258664
0.000128582
2.77427e-05
5.78876e-06
7.2993e-06
3.17573e-05
0.000123599
0.000243073
0.000359108
0.000464287
0.000556945
0.000636987
0.000697242
0.000715868
0.000728601
0.000746568
0.000768826
0.000791171
0.00080995
0.000823079
0.000829838
0.000830304
0.000824897
0.000814072
0.000798206
0.00077782
0.000753919
0.000728372
0.000704024
0.000683783
0.000667164
0.000642052
0.000572767
0.000483974
0.000379173
0.000258547
0.000128456
2.76816e-05
5.74836e-06
7.34038e-06
3.17388e-05
0.000123398
0.000242538
0.000358151
0.000462892
0.000555136
0.000634805
0.000692741
0.000711398
0.000724977
0.000743793
0.000766666
0.0007894
0.000808418
0.000821711
0.000828602
0.000829184
0.00082387
0.000813108
0.000797279
0.000776933
0.000753135
0.000727828
0.000703903
0.000684263
0.000668292
0.000643421
0.000573136
0.00048426
0.000379344
0.000258607
0.000128459
2.76565e-05
5.70931e-06
7.38102e-06
3.16871e-05
0.000123105
0.000241872
0.00035704
0.000461335
0.000553165
0.000632467
0.0006881
0.000706842
0.000721322
0.000741018
0.000764508
0.000787609
0.000806835
0.000820261
0.00082726
0.000827943
0.000822716
0.000812012
0.000796207
0.000775866
0.000752103
0.000726939
0.000703355
0.000684292
0.000669015
0.000644512
0.000573425
0.000484562
0.0003796
0.000258769
0.000128529
2.76474e-05
5.67226e-06
7.42369e-06
3.16136e-05
0.000122743
0.000241093
0.00035578
0.000459605
0.000551011
0.000629949
0.000683371
0.000702272
0.000717696
0.000738295
0.000762401
0.000785848
0.000805247
0.000818765
0.000825837
0.000826592
0.000821429
0.000810766
0.000794963
0.000774591
0.000750792
0.000725646
0.000702221
0.000683537
0.000668843
0.000644829
0.000573391
0.000484662
0.000379757
0.000258899
0.000128585
2.76352e-05
5.63598e-06
7.46853e-06
3.15653e-05
0.000122455
0.000240386
0.000354559
0.000457869
0.000548813
0.000627358
0.000678665
0.000697803
0.00071423
0.00073577
0.000760506
0.000784287
0.000803827
0.000817397
0.000824499
0.000825288
0.00082016
0.000809511
0.000793685
0.000773243
0.000749335
0.000724078
0.000700602
0.000682009
0.000667608
0.000644026
0.000572726
0.000484222
0.000379498
0.000258744
0.000128479
2.75784e-05
5.59572e-06
7.51417e-06
3.15307e-05
0.000122207
0.000239718
0.000353353
0.000456115
0.000546559
0.000624681
0.000673826
0.000693253
0.000710776
0.000733339
0.000758753
0.000782879
0.000802547
0.000816148
0.000823258
0.000824063
0.000818957
0.000808317
0.000792466
0.000771945
0.000747892
0.000722426
0.000698705
0.000679901
0.00066545
0.000642128
0.000571355
0.000483106
0.00037863
0.000258096
0.000128045
2.74251e-05
5.55123e-06
7.55939e-06
3.15008e-05
0.000121978
0.000239068
0.000352149
0.000454335
0.000544248
0.000621917
0.000668859
0.000688616
0.000707311
0.000730965
0.000757093
0.000781569
0.000801349
0.000814955
0.000822047
0.000822845
0.000817741
0.000807097
0.000791218
0.000770621
0.000746415
0.000720683
0.000696564
0.000677255
0.000662353
0.000639059
0.000569366
0.000481388
0.000377217
0.000256998
0.0001273
2.71819e-05
5.50419e-06
7.60382e-06
3.14984e-05
0.000121828
0.000238502
0.000351006
0.00045258
0.000541924
0.000619107
0.000663765
0.000683904
0.000703875
0.00072872
0.000755623
0.000780476
0.000800375
0.000813985
0.000821053
0.000821834
0.000816719
0.000806061
0.00079015
0.000769484
0.00074514
0.000719146
0.000694574
0.00067459
0.000658923
0.00063534
0.000566949
0.000479244
0.000375443
0.000255667
0.000126465
2.69211e-05
5.45521e-06
7.64467e-06
3.14602e-05
0.000121586
0.000237794
0.000349685
0.000450625
0.000539384
0.00061607
0.000658251
0.000678854
0.000700254
0.000726409
0.000754155
0.000779418
0.000799461
0.0008131
0.00082017
0.000820954
0.000815843
0.000805181
0.000789255
0.000768554
0.000744128
0.000717948
0.000692993
0.000672342
0.000655782
0.000631604
0.000564221
0.000476723
0.000373294
0.000254046
0.000125479
2.66231e-05
5.40176e-06
7.68449e-06
3.1422e-05
0.000121347
0.000237062
0.000348299
0.00044856
0.000536697
0.000612857
0.000652308
0.00067348
0.000696481
0.000724048
0.000752666
0.000778336
0.000798524
0.000812205
0.000819295
0.000820102
0.000815013
0.000804366
0.000788448
0.000767754
0.000743322
0.000717074
0.000691892
0.000670725
0.000653321
0.000628344
0.000561422
0.000474027
0.000370911
0.000252206
0.000124363
2.62903e-05
5.34198e-06
7.7218e-06
3.13829e-05
0.000121109
0.000236297
0.000346829
0.000446364
0.000533838
0.000609448
0.000645741
0.000667646
0.000692492
0.000721589
0.00075109
0.000777156
0.000797488
0.000811227
0.000818363
0.000819222
0.000814186
0.000803588
0.000787716
0.000767079
0.000742724
0.000716553
0.000691366
0.000669964
0.000651948
0.000626072
0.000558794
0.0004714
0.000368514
0.000250315
0.000123218
2.59477e-05
5.27617e-06
7.75636e-06
3.12743e-05
0.000120684
0.000235258
0.000345018
0.000443777
0.000530567
0.000605645
0.000638449
0.000661445
0.000688369
0.000719002
0.000749336
0.000775777
0.000796266
0.000810087
0.000817297
0.000818243
0.0008133
0.00080279
0.000787005
0.000766473
0.000742271
0.000716313
0.000691356
0.000670063
0.000651785
0.000625032
0.000556483
0.00046901
0.00036627
0.000248505
0.000122116
2.56122e-05
5.20598e-06
7.7928e-06
3.12041e-05
0.000120363
0.000234314
0.00034323
0.000441102
0.000527056
0.000599058
0.000630456
0.000655336
0.000684273
0.000716308
0.000747438
0.000774259
0.00079491
0.000808818
0.000816117
0.000817173
0.000812352
0.000801962
0.000786294
0.000765899
0.000741898
0.000716253
0.000691728
0.00067087
0.000652711
0.000625186
0.000554537
0.000466944
0.000364283
0.000246862
0.000121099
2.52946e-05
5.1346e-06
7.82636e-06
3.11052e-05
0.000119967
0.000233247
0.000341268
0.000438201
0.000523259
0.000590148
0.000621741
0.000648732
0.000679779
0.000713288
0.000745238
0.000772431
0.000793234
0.000807233
0.000814637
0.000815828
0.000811161
0.000800924
0.000785405
0.000765177
0.000741412
0.000716144
0.000692177
0.00067199
0.000654277
0.00062615
0.000552788
0.000465074
0.000362454
0.000245298
0.000120086
2.49704e-05
5.06298e-06
7.86054e-06
3.09703e-05
0.000119454
0.000231998
0.000339069
0.000435018
0.000519142
0.00058067
0.00061251
0.000641753
0.000675015
0.000710032
0.000742783
0.000770317
0.000791252
0.000805336
0.000812851
0.000814192
0.000809699
0.000799641
0.000784299
0.000764259
0.000740744
0.00071589
0.000692632
0.000673391
0.00065597
0.000624695
0.000550953
0.000463201
0.000360644
0.00024373
0.000119033
2.46278e-05
4.99126e-06
7.89645e-06
3.08538e-05
0.000118972
0.000230742
0.000336796
0.000431691
0.000514823
0.000570609
0.000602788
0.000634461
0.000670038
0.000706562
0.000740064
0.000767889
0.000788928
0.000803092
0.000810722
0.00081222
0.000807909
0.000798042
0.000782889
0.000763052
0.000739827
0.000715486
0.000693071
0.000674772
0.000657284
0.000622706
0.000548971
0.000461289
0.000358881
0.000242245
0.000118041
2.4306e-05
4.92298e-06
7.93142e-06
3.06753e-05
0.000118289
0.000229176
0.000334144
0.000427952
0.000510085
0.000559776
0.000592501
0.00062683
0.000664786
0.000702758
0.000736932
0.000765006
0.000786149
0.00080041
0.000808173
0.00080984
0.000805719
0.000796048
0.000781096
0.000761489
0.000738593
0.000714789
0.000693165
0.000675634
0.000657936
0.00062039
0.000546722
0.000459194
0.000357024
0.00024073
0.000117042
2.39885e-05
4.86001e-06
7.96829e-06
3.04398e-05
0.000117402
0.000227261
0.000331031
0.000423694
0.000504854
0.000548242
0.000581943
0.000619161
0.000659432
0.000698686
0.000733421
0.000761721
0.000782991
0.000797378
0.000805294
0.00080714
0.000803215
0.000793751
0.00077902
0.000759672
0.000737129
0.000713841
0.000692887
0.000675921
0.000657886
0.000617682
0.000544105
0.000456781
0.000354923
0.000239056
0.000115955
2.36526e-05
4.80248e-06
8.0068e-06
3.01739e-05
0.000116393
0.000225068
0.000327456
0.000418769
0.000495437
0.000536105
0.000572018
0.000611846
0.000653934
0.00069422
0.00072947
0.000758017
0.000779435
0.00079396
0.000802036
0.000804063
0.000800336
0.000791083
0.000776587
0.000757521
0.000735347
0.000712541
0.000692136
0.000675542
0.000657094
0.000614724
0.000541251
0.00045416
0.000352665
0.00023729
0.000114831
2.33173e-05
4.75168e-06
8.04678e-06
2.98759e-05
0.000115269
0.000222694
0.000323633
0.000413503
0.000483138
0.000523777
0.000562109
0.000604348
0.000648094
0.00068932
0.000725044
0.000753828
0.000775407
0.000790097
0.00079836
0.000800592
0.000797081
0.000788057
0.000773815
0.000755054
0.000733259
0.000710905
0.000690948
0.000674569
0.000655653
0.000611594
0.000538222
0.000451365
0.00035025
0.000235406
0.000113642
2.29741e-05
4.70675e-06
8.08801e-06
2.95169e-05
0.000113952
0.000220057
0.000319505
0.000407913
0.000470593
0.000511366
0.000552238
0.000596904
0.000642209
0.000684197
0.000720234
0.000749192
0.000770938
0.000785817
0.000794294
0.000796756
0.000793486
0.000784717
0.000770759
0.000752334
0.000730942
0.000709041
0.000689492
0.00067326
0.000653873
0.000608366
0.000535081
0.000448435
0.000347683
0.000233377
0.000112347
2.26091e-05
4.66375e-06
8.13273e-06
2.91221e-05
0.000112492
0.000217185
0.000315078
0.000402002
0.000457654
0.000498875
0.000542499
0.000589601
0.000636346
0.000678952
0.000715172
0.000744186
0.000766037
0.000781104
0.000789808
0.000792513
0.000789494
0.000780994
0.000767341
0.000749282
0.00072833
0.000706911
0.000687782
0.000671694
0.000651874
0.000605165
0.000531972
0.000445525
0.000345121
0.000231349
0.000111068
2.22581e-05
4.62171e-06
8.18073e-06
2.86979e-05
0.000110888
0.000214033
0.000310271
0.000395743
0.00044438
0.00048652
0.000533022
0.000582406
0.000630393
0.00067351
0.000709881
0.000738926
0.000760818
0.000776005
0.000784924
0.000787898
0.000785167
0.000776975
0.000763671
0.000746027
0.000725576
0.000704722
0.000686111
0.000670262
0.00065005
0.000602092
0.000529021
0.000442788
0.000342725
0.000229461
0.000109882
2.19333e-05
4.57896e-06
8.23192e-06
2.82292e-05
0.000109096
0.000210453
0.000304691
0.000383626
0.000430727
0.000475284
0.000524226
0.000575233
0.000624153
0.000667762
0.000704359
0.000733494
0.000755425
0.000770668
0.000779714
0.00078291
0.000780483
0.000772642
0.000759739
0.000742573
0.000722697
0.000702498
0.00068451
0.000668992
0.000648398
0.000598983
0.000526063
0.00044007
0.000340368
0.000227625
0.000108752
2.16337e-05
4.53909e-06
8.28697e-06
2.77258e-05
0.000107192
0.000206677
0.000298818
0.00037001
0.000417048
0.000464037
0.000515365
0.00056799
0.000617782
0.000661789
0.000698578
0.000727837
0.000749866
0.000765189
0.000774317
0.00077764
0.00077543
0.000767921
0.000755453
0.000738821
0.000719597
0.000700154
0.00068292
0.000667874
0.000646959
0.000595851
0.000523096
0.000437343
0.000337982
0.000225723
0.000107537
2.12997e-05
4.49492e-06
8.34541e-06
2.71943e-05
0.000105167
0.000202663
0.000292618
0.000356092
0.000403299
0.000452875
0.000506597
0.000560734
0.000611263
0.000655544
0.000692418
0.000721743
0.000743878
0.00075933
0.00076859
0.00077205
0.000770019
0.000762782
0.00075072
0.000734655
0.000716146
0.000697535
0.000681138
0.000666644
0.000645442
0.000592597
0.00052005
0.000434582
0.000335611
0.000223884
0.000106409
2.10077e-05
4.45594e-06
8.40508e-06
2.66017e-05
0.000102901
0.000198248
0.00028598
0.000341978
0.000389757
0.00044202
0.000498008
0.000553468
0.000604589
0.000649062
0.000685966
0.000715286
0.000737449
0.000753002
0.000762421
0.000766073
0.000764262
0.000757295
0.000745605
0.000730071
0.000712303
0.000694623
0.000679234
0.000665524
0.000644187
0.000589234
0.000516893
0.000431688
0.000333062
0.000221813
0.000105053
2.06346e-05
4.40769e-06
8.46748e-06
2.59942e-05
0.000100461
0.000193371
0.000277151
0.000327845
0.000377048
0.000431841
0.000489668
0.000546136
0.000597712
0.000642347
0.000679273
0.000708557
0.000730678
0.000746225
0.000755715
0.000759528
0.000757946
0.000751278
0.000739975
0.000724952
0.000707855
0.000691024
0.000676604
0.000663696
0.000642371
0.000585742
0.000513696
0.00042884
0.000330641
0.000219944
0.000103916
2.03515e-05
4.36914e-06
8.53176e-06
2.53647e-05
9.7875e-05
0.000188022
0.000263519
0.000313948
0.000365253
0.00042204
0.000481265
0.000538585
0.000590603
0.000635405
0.000672335
0.000701551
0.000723594
0.000739095
0.000748604
0.000752534
0.000751189
0.000744864
0.000733998
0.00071952
0.000703118
0.000687169
0.000673794
0.000661884
0.000640788
0.0005823
0.000510613
0.000426132
0.000328335
0.000218104
0.000102715
2.00222e-05
4.3206e-06
8.55828e-06
2.47624e-05
9.5393e-05
0.000182796
0.00025057
0.0003006
0.000353775
0.000412501
0.000473114
0.000531222
0.000583575
0.000628428
0.000665263
0.000694329
0.000716224
0.000731616
0.000741081
0.000745053
0.00074386
0.000737825
0.000727377
0.000713426
0.000697673
0.000682521
0.000670037
0.000658918
0.000637719
0.000578401
0.000507186
0.000423215
0.000325971
0.000216358
0.000101691
1.9784e-05
4.28901e-06
8.56905e-06
2.41391e-05
9.28509e-05
0.000177499
0.000238029
0.000287813
0.0003428
0.000403313
0.000465135
0.000523877
0.000576452
0.000621278
0.000657962
0.000686832
0.000708544
0.0007238
0.0007332
0.000737192
0.00073612
0.000730322
0.000720243
0.000706803
0.000691697
0.000677377
0.00066595
0.000655654
0.000633188
0.000574437
0.00050375
0.000420283
0.000323525
0.000214413
0.000100394
1.94245e-05
4.23811e-06
8.57915e-06
2.35093e-05
9.03075e-05
0.000172248
0.000225974
0.000275778
0.000332564
0.000394694
0.00045749
0.000516639
0.000569249
0.000613909
0.000650335
0.000678933
0.000700406
0.000715492
0.000724807
0.000728811
0.000727856
0.000722287
0.000712546
0.000699553
0.00068501
0.000671358
0.000660652
0.000650849
0.000627901
0.000569798
0.000499777
0.000416996
0.00032095
0.000212591
9.93782e-05
1.92075e-05
4.21171e-06
8.58703e-06
2.28434e-05
8.75565e-05
0.000166526
0.000214516
0.000264821
0.000323217
0.000386543
0.000449962
0.000509304
0.000561826
0.000606228
0.00064232
0.000670577
0.000691759
0.000706637
0.000715848
0.000719856
0.000719017
0.000713678
0.000704267
0.000691699
0.000677696
0.000664755
0.000654915
0.000645807
0.000622525
0.000565123
0.000495787
0.000413649
0.000318193
0.000210397
9.78961e-05
1.88013e-05
4.15271e-06
8.5942e-06
2.21743e-05
8.44881e-05
0.000156046
0.000203829
0.00025543
0.000314806
0.000378672
0.000442323
0.000501677
0.000554019
0.000598083
0.000633752
0.000661592
0.000682432
0.000697079
0.000706175
0.000710185
0.000709466
0.000704359
0.000695276
0.000683092
0.000669476
0.000656864
0.000647295
0.000638572
0.000616169
0.000559569
0.000491079
0.000409829
0.000315297
0.000208449
9.68801e-05
1.86045e-05
4.12595e-06
8.60153e-06
2.15501e-05
8.16935e-05
0.000146933
0.000193843
0.000245997
0.000306156
0.000370685
0.000434668
0.000493947
0.000545904
0.000589442
0.000624575
0.000651947
0.000672436
0.000686874
0.000695905
0.00069998
0.000699447
0.000694641
0.000685944
0.000674204
0.000661066
0.000648968
0.000639974
0.00063187
0.000609873
0.00055409
0.000486411
0.000405929
0.0003121
0.000205923
9.51862e-05
1.81374e-05
4.05416e-06
8.60346e-06
2.08913e-05
7.8834e-05
0.000138149
0.000184393
0.000237174
0.000298019
0.000362983
0.00042705
0.000486037
0.000537387
0.00058016
0.00061456
0.000641359
0.000661466
0.000675694
0.000684668
0.000688825
0.000688504
0.000684033
0.000675761
0.000664479
0.000651733
0.000639825
0.000630781
0.000622815
0.000602374
0.000547497
0.000480816
0.000401422
0.000308758
0.000203771
9.41433e-05
1.79562e-05
4.02901e-06
8.59977e-06
2.0173e-05
7.58103e-05
0.000129904
0.000175339
0.000228421
0.000289676
0.000354851
0.0004188
0.00047734
0.000528007
0.000569985
0.000603615
0.000629799
0.000649529
0.000663625
0.000672655
0.000677001
0.000676989
0.000672938
0.000665173
0.000654445
0.00064226
0.000630898
0.000622401
0.000615034
0.00059526
0.000541262
0.000475463
0.00039693
0.000305087
0.000200908
9.22518e-05
1.74276e-05
3.94106e-06
8.58637e-06
1.93963e-05
7.2631e-05
0.000121883
0.00016653
0.000219802
0.000281333
0.000346565
0.000410203
0.00046806
0.000517822
0.000558881
0.000591722
0.000617299
0.000636625
0.000650537
0.000659602
0.000664165
0.000664504
0.000660919
0.000653694
0.000643521
0.000631798
0.000620635
0.000611962
0.000604538
0.000586712
0.000533678
0.000468975
0.000391669
0.000301179
0.000198426
9.10999e-05
1.72363e-05
3.91192e-06
8.56161e-06
1.84717e-05
6.89861e-05
0.000113938
0.000157716
0.00021092
0.000272455
0.000337492
0.000400597
0.000457596
0.000506326
0.000546396
0.000578472
0.000603581
0.000622697
0.00063658
0.000645765
0.000650608
0.00065139
0.000648379
0.000641805
0.000632314
0.00062127
0.000610762
0.000602742
0.000596043
0.000579027
0.000526923
0.000463136
0.000386714
0.000297068
0.00019517
8.89358e-05
1.66241e-05
3.80323e-06
8.52447e-06
1.74373e-05
6.49859e-05
0.000105946
0.00014877
0.000201714
0.000263062
0.000327704
0.00039006
0.000446005
0.000493576
0.000532603
0.000563901
0.000588561
0.000607543
0.000621527
0.000630947
0.000636104
0.000637304
0.000634854
0.000628944
0.000620122
0.000609629
0.000599404
0.000591277
0.000584316
0.000568919
0.000518673
0.000456139
0.000381104
0.000292982
0.000192678
8.78747e-05
1.64715e-05
3.77418e-06
8.47354e-06
1.61532e-05
6.01869e-05
9.75858e-05
0.000139242
0.000191573
0.000252412
0.000316382
0.000377756
0.000432497
0.000478892
0.000516994
0.000547719
0.000572148
0.000591186
0.00060545
0.000615301
0.000620969
0.000622732
0.000620927
0.000615748
0.00060771
0.000598003
0.000588548
0.000581218
0.000575185
0.000560891
0.000511649
0.000450106
0.000376
0.000288744
0.000189304
8.56188e-05
1.58155e-05
3.64893e-06
8.41082e-06
1.47285e-05
5.50436e-05
8.90801e-05
0.000129287
0.000180716
0.000240841
0.000303931
0.000364074
0.00041739
0.000462491
0.00049969
0.000529979
0.000554367
0.000573633
0.000588293
0.000598646
0.000604889
0.000607291
0.00060619
0.000601741
0.000594409
0.000585287
0.000576135
0.000568703
0.000562345
0.000548515
0.000502899
0.000442808
0.000370288
0.000284749
0.000187055
8.48219e-05
1.57431e-05
3.62796e-06
8.33431e-06
1.29831e-05
4.90716e-05
7.99741e-05
0.000118151
0.000168055
0.000227004
0.000288878
0.000347563
0.000399377
0.000443298
0.000479865
0.000510076
0.000534809
0.000554671
0.000570038
0.000581134
0.000588141
0.000591347
0.000591107
0.000587534
0.000581042
0.000572718
0.000564362
0.000557806
0.000552525
0.000540021
0.000495544
0.000436514
0.000364955
0.000280278
0.000183437
8.23618e-05
1.5015e-05
3.48971e-06
8.24761e-06
1.15762e-05
4.38244e-05
7.11299e-05
0.000106673
0.00015458
0.000212014
0.000272342
0.000329209
0.000379243
0.000421889
0.00045792
0.000488279
0.000513629
0.000534351
0.000550643
0.00056263
0.000570478
0.000574526
0.000575185
0.000572515
0.000566826
0.000559063
0.000550888
0.000544074
0.00053835
0.00052642
0.000486313
0.000428949
0.000359186
0.000276417
0.000181456
8.1827e-05
1.50195e-05
3.48071e-06
8.12013e-06
1.03762e-05
3.86101e-05
6.20765e-05
9.4345e-05
0.000139468
0.000194701
0.00025294
0.000307584
0.000355638
0.000397068
0.00043285
0.000463781
0.000490225
0.000512269
0.000529903
0.000543136
0.000552112
0.000557227
0.000558979
0.000557387
0.000552692
0.000545798
0.000538386
0.000532367
0.000527723
0.0005173
0.000478727
0.000422524
0.000353781
0.000271897
0.000177784
7.93064e-05
1.42565e-05
3.33621e-06
8.01271e-06
9.535e-06
3.4411e-05
5.4071e-05
8.28151e-05
0.00012478
0.000177471
0.000233162
0.000284924
0.000330326
0.000370088
0.000405476
0.000437089
0.000464883
0.000488551
0.000507802
0.000522496
0.000532746
0.000539011
0.000541916
0.00054145
0.000537733
0.000531501
0.000524254
0.000517809
0.000512501
0.000502679
0.000469236
0.000414953
0.000348243
0.000268459
0.000176322
7.91933e-05
1.4378e-05
3.34824e-06
7.92842e-06
8.73164e-06
3.0233e-05
4.64477e-05
7.14973e-05
0.000109765
0.000159419
0.000212145
0.000260487
0.000302638
0.000340257
0.000375026
0.000407382
0.000436821
0.000462539
0.000483867
0.000500457
0.000512375
0.000520134
0.000524488
0.000525401
0.000522914
0.000517698
0.00051127
0.000505595
0.000501281
0.000492969
0.000461422
0.000408421
0.000342823
0.000263979
0.000172703
7.66918e-05
1.36024e-05
3.2053e-06
7.87512e-06
8.2204e-06
2.72464e-05
4.04502e-05
6.22708e-05
9.72662e-05
0.00014436
0.000194275
0.000238568
0.000276295
0.000310556
0.000343758
0.000376283
0.000407147
0.000434945
0.000458492
0.000477133
0.000490841
0.000500171
0.000506055
0.000508422
0.000507193
0.00050286
0.000496714
0.000490601
0.000485511
0.000477746
0.00045176
0.000400929
0.000337602
0.000261038
0.000171801
7.70087e-05
1.38469e-05
3.24238e-06
7.84478e-06
7.69133e-06
2.40629e-05
3.49375e-05
5.38357e-05
8.56581e-05
0.000130559
0.000178348
0.000218789
0.00025146
0.000281239
0.000311736
0.000343629
0.000375541
0.000405367
0.000431274
0.000452211
0.000468006
0.000479195
0.000486899
0.000490997
0.000491303
0.00048821
0.000482987
0.000477609
0.000473412
0.000467134
0.000443276
0.000393799
0.000331635
0.000256054
0.000167737
7.41928e-05
1.29913e-05
3.09666e-06
7.83178e-06
7.39117e-06
2.14754e-05
3.09544e-05
4.76595e-05
7.73322e-05
0.000121587
0.000168873
0.000206176
0.000233342
0.000257153
0.000282925
0.000312551
0.000344605
0.000375961
0.000403875
0.000426828
0.000444489
0.000457327
0.000466727
0.00047252
0.000474366
0.000472473
0.000467852
0.000462212
0.000457103
0.000451133
0.000433376
0.000386296
0.000326631
0.000253506
0.000167297
7.48783e-05
1.33466e-05
3.15085e-06
7.81688e-06
7.06944e-06
1.9089e-05
2.7242e-05
4.17433e-05
6.90795e-05
0.000112671
0.000160316
0.000196074
0.000219223
0.000237404
0.00025764
0.000283443
0.000314092
0.000346082
0.000375553
0.000400336
0.000419825
0.000434325
0.000445515
0.000453178
0.000456803
0.000456433
0.000452985
0.000448189
0.000443845
0.00043915
0.000423729
0.00037803
0.000319589
0.00024756
0.000162448
7.1567e-05
1.23808e-05
2.99419e-06
7.78321e-06
6.93342e-06
1.76569e-05
2.48421e-05
3.77112e-05
6.3847e-05
0.000108139
0.000156218
0.000189823
0.000209565
0.000224354
0.000241082
0.000262751
0.000289566
0.000319705
0.000349278
0.000374993
0.000395721
0.000411362
0.000423941
0.000433201
0.00043843
0.000439444
0.00043693
0.000432386
0.000427503
0.000422212
0.000409982
0.000370188
0.000314491
0.000245088
0.000162174
7.24195e-05
1.27987e-05
3.05259e-06
7.71456e-06
6.69209e-06
1.60548e-05
2.22781e-05
3.33069e-05
5.75545e-05
0.000101224
0.000146992
0.000170578
0.000189811
0.000213133
0.000229542
0.000247295
0.000269124
0.000295142
0.000323043
0.000349085
0.000370864
0.000387531
0.000401468
0.000412404
0.000419411
0.000422059
0.000420861
0.000417278
0.000413139
0.000408736
0.00039799
0.000360306
0.000305881
0.00023772
0.000156183
6.84118e-05
1.16729e-05
2.87109e-06
7.6016e-06
6.59774e-06
1.52098e-05
2.07409e-05
3.06192e-05
5.44428e-05
9.86531e-05
0.00013157
0.000149899
0.000167754
0.000192091
0.000220538
0.000241327
0.000258163
0.000278051
0.000301922
0.000326613
0.000348398
0.000365293
0.000379989
0.000392155
0.00040063
0.000404699
0.000404583
0.000401453
0.000396983
0.000391904
0.000382305
0.000352631
0.000301009
0.000235524
0.000156225
6.9551e-05
1.21775e-05
2.93032e-06
7.45463e-06
6.38222e-06
1.40976e-05
1.87121e-05
2.7064e-05
4.85599e-05
8.77785e-05
0.000111294
0.000127386
0.000144153
0.000167555
0.000195835
0.000226906
0.000250253
0.000265593
0.000283339
0.000304475
0.000325434
0.000342184
0.000357478
0.000370857
0.000380892
0.000386554
0.000387803
0.000385687
0.000381976
0.000377719
0.000369351
0.000341195
0.000290787
0.000226602
0.000148911
6.46823e-05
1.0841e-05
2.71801e-06
7.28924e-06
6.31559e-06
1.36799e-05
1.78088e-05
2.5273e-05
4.57811e-05
7.50789e-05
9.75391e-05
0.000112316
0.000127611
0.000149573
0.000176928
0.000207662
0.000239572
0.00026157
0.000274829
0.000290421
0.000308123
0.000323158
0.00033813
0.000352089
0.000363188
0.000370086
0.000372436
0.000370915
0.000366932
0.000361783
0.000354205
0.000334394
0.000286812
0.000225329
0.000149855
6.6515e-05
1.15244e-05
2.79181e-06
7.13791e-06
6.1267e-06
1.29562e-05
1.65418e-05
2.24271e-05
3.92009e-05
5.82674e-05
8.0522e-05
9.58917e-05
0.000109275
0.000129291
0.000155146
0.000185114
0.000216941
0.000248646
0.000268023
0.000279071
0.000291843
0.000303747
0.000317548
0.000331706
0.000343772
0.000351953
0.000355579
0.000355136
0.000352065
0.000347912
0.00034143
0.000321554
0.000275013
0.000214732
0.000140966
6.05557e-05
9.91871e-06
2.54149e-06
7.00984e-06
6.09892e-06
1.29346e-05
1.6566e-05
2.16972e-05
3.47367e-05
5.03464e-05
7.16232e-05
8.84558e-05
0.000100778
0.000118729
0.000142417
0.000170801
0.000201771
0.000233257
0.000263572
0.000278484
0.000285972
0.000292417
0.000303373
0.000316542
0.00032869
0.000337506
0.000341949
0.000342128
0.000339026
0.000333898
0.000326687
0.00031211
0.000272297
0.000215018
0.000143546
6.36007e-05
1.08862e-05
2.64702e-06
6.9219e-06
5.90016e-06
1.24618e-05
1.62639e-05
2.07836e-05
3.0161e-05
4.00027e-05
5.71891e-05
7.46728e-05
8.78807e-05
0.000103246
0.000124128
0.000150408
0.000180301
0.000211615
0.000242422
0.000271192
0.00028143
0.00028178
0.000287935
0.000298744
0.000310301
0.000319515
0.000324797
0.000325955
0.000323922
0.000320117
0.000314584
0.000301094
0.000258718
0.0002022
0.000132332
5.60158e-05
8.93419e-06
2.34434e-06
6.82858e-06
5.81201e-06
1.24421e-05
1.6749e-05
2.1604e-05
2.90791e-05
3.62359e-05
4.86975e-05
6.63554e-05
8.28907e-05
9.7462e-05
0.000116062
0.000139592
0.000167425
0.00019772
0.000228431
0.000257781
0.000284349
0.000283261
0.000282822
0.000289217
0.000298755
0.000307427
0.000312878
0.000314319
0.000312078
0.000307063
0.000299692
0.000287156
0.000257487
0.00020449
0.000137141
6.06224e-05
1.01919e-05
2.48291e-06
6.71971e-06
5.49383e-06
1.17138e-05
1.64376e-05
2.19732e-05
2.72791e-05
3.36802e-05
3.83513e-05
4.88651e-05
6.38342e-05
7.90153e-05
9.52642e-05
0.000115795
0.00014128
0.000170576
0.000201615
0.00023229
0.000260815
0.000281747
0.000277565
0.000277314
0.000282792
0.000289941
0.000295337
0.000297406
0.000296233
0.000292916
0.000287943
0.000276948
0.000242714
0.000189909
0.000123813
5.16311e-05
8.03491e-06
2.1318e-06
6.52434e-06
5.32406e-06
1.14514e-05
1.66453e-05
2.31627e-05
2.93113e-05
3.63369e-05
4.17724e-05
4.56447e-05
5.46998e-05
6.88797e-05
8.5158e-05
0.0001036
0.000125817
0.00015228
0.000181948
0.000212829
0.000242783
0.000269956
0.000282335
0.000277283
0.000276759
0.000280642
0.00028489
0.000286724
0.000285184
0.000280452
0.000272868
0.000261439
0.000240521
0.000192259
0.000129156
5.65211e-05
9.20388e-06
2.26592e-06
6.28218e-06
5.04117e-06
1.06955e-05
1.58611e-05
2.40496e-05
3.27987e-05
3.9577e-05
4.48521e-05
4.95916e-05
5.00551e-05
5.28255e-05
6.02339e-05
7.29175e-05
9.04846e-05
0.000113366
0.000141135
0.000172241
0.000204393
0.000235213
0.000262586
0.000274629
0.000269266
0.00026749
0.00026925
0.000270775
0.000269895
0.000266528
0.000261364
0.000252634
0.000228952
0.000180327
0.000118087
4.9311e-05
7.5746e-06
1.93756e-06
5.98688e-06
5.08686e-06
1.13072e-05
1.63616e-05
2.60597e-05
4.06863e-05
5.31957e-05
5.84565e-05
5.95327e-05
6.07169e-05
6.53706e-05
7.05184e-05
7.52871e-05
8.58194e-05
0.000102015
0.000123246
0.000149046
0.000178388
0.000209176
0.000238794
0.000264727
0.000274288
0.000266959
0.000263112
0.000262131
0.000260387
0.000256057
0.000248784
0.000237723
0.000218388
0.000177086
0.000117793
4.98236e-05
7.6584e-06
1.98521e-06
5.76016e-06
5.05245e-06
1.20159e-05
1.72292e-05
2.68966e-05
4.30332e-05
5.66402e-05
6.87936e-05
7.69545e-05
8.1624e-05
7.64921e-05
7.3617e-05
7.73667e-05
8.03728e-05
8.0648e-05
8.78602e-05
0.000103696
0.000127694
0.000157343
0.000189333
0.000220377
0.00024758
0.000265511
0.000257965
0.000251543
0.000247944
0.000244106
0.000238487
0.000230586
0.000216117
0.000177093
0.000119778
5.23848e-05
8.03458e-06
1.82411e-06
5.50578e-06
5.24636e-06
1.37e-05
2.12262e-05
3.30072e-05
4.34735e-05
5.34519e-05
6.54524e-05
7.76226e-05
8.76507e-05
9.51593e-05
9.38802e-05
8.83424e-05
9.42638e-05
0.000108887
0.000113556
0.000123455
0.000138475
0.000158289
0.000182078
0.000207965
0.000233164
0.000254362
0.000267065
0.000254394
0.000243891
0.000236852
0.000229845
0.000219915
0.00020159
0.00016071
0.000103957
4.09272e-05
5.80529e-06
1.69889e-06
5.29343e-06
5.06947e-06
1.42009e-05
2.34277e-05
3.78669e-05
4.7714e-05
5.5296e-05
6.32597e-05
7.24745e-05
8.23645e-05
9.16827e-05
9.94463e-05
0.000104774
0.000106912
0.000105869
0.000102892
0.000101496
0.000105274
0.000115521
0.000132761
0.000156157
0.000182786
0.000208978
0.000231005
0.000236806
0.000228137
0.00022017
0.000213014
0.000204506
0.000192853
0.000172181
0.000121913
5.64378e-05
8.51851e-06
1.70589e-06
4.92229e-06
5.14632e-06
1.47504e-05
2.63539e-05
4.64197e-05
5.92065e-05
6.90008e-05
7.65684e-05
8.33552e-05
9.02572e-05
9.73006e-05
0.000104001
0.000109828
0.00011471
0.00011929
0.000124712
0.00013196
0.000141705
0.00015449
0.000170467
0.000188829
0.000208082
0.00022597
0.000239506
0.000245325
0.000233384
0.000222982
0.000215832
0.000208115
0.000190444
0.000150599
9.73873e-05
3.84376e-05
5.52586e-06
1.52504e-06
4.62794e-06
4.7318e-06
1.35372e-05
2.31559e-05
3.83217e-05
5.0476e-05
6.10596e-05
7.01188e-05
7.75985e-05
8.37208e-05
8.86622e-05
9.23838e-05
9.45775e-05
9.50759e-05
9.4314e-05
9.36163e-05
9.48527e-05
9.94224e-05
0.000107951
0.000121061
0.000138637
0.000159221
0.000180369
0.00019912
0.000206932
0.000199592
0.000190742
0.000182278
0.000172382
0.000159146
0.000140306
0.000107266
4.9366e-05
7.04206e-06
1.46621e-06
4.30287e-06
4.85756e-06
1.4514e-05
2.58752e-05
3.83693e-05
4.77257e-05
5.57162e-05
6.26792e-05
6.88318e-05
7.42596e-05
7.91389e-05
8.38702e-05
8.86647e-05
9.36777e-05
9.91285e-05
0.000105362
0.000112897
0.000122507
0.000135081
0.000150686
0.000168512
0.000187076
0.000204477
0.000218308
0.00021742
0.000211395
0.000205847
0.000201536
0.000196403
0.000182806
0.000147462
9.75949e-05
4.02244e-05
5.83864e-06
1.37218e-06
4.04801e-06
5.00519e-06
1.56092e-05
3.00189e-05
4.23414e-05
5.13486e-05
5.77968e-05
6.28543e-05
6.7277e-05
7.12372e-05
7.48337e-05
7.81028e-05
8.08621e-05
8.28595e-05
8.39687e-05
8.43572e-05
8.45619e-05
8.56807e-05
8.92068e-05
9.70552e-05
0.000110655
0.000129003
0.00014911
0.000167548
0.00017574
0.000169022
0.00015941
0.000148946
0.00013656
0.000120214
9.82422e-05
6.89482e-05
2.64967e-05
3.24209e-06
1.12947e-06
3.90753e-06
5.21915e-06
1.5097e-05
3.11996e-05
4.66593e-05
5.80204e-05
6.52397e-05
6.9674e-05
7.258e-05
7.4353e-05
7.54548e-05
7.62064e-05
7.69249e-05
7.79546e-05
7.96182e-05
8.22034e-05
8.5875e-05
9.05398e-05
8.62066e-05
8.36915e-05
9.43586e-05
0.000116537
0.00014525
0.0001753
0.000201518
0.000219404
0.000226398
0.000223822
0.000214019
0.000197792
0.000173503
0.000134575
6.34586e-05
8.59791e-06
1.66423e-06
3.65981e-06
7.39844e-06
2.64417e-05
5.01818e-05
6.65076e-05
7.47748e-05
7.86997e-05
8.11432e-05
8.34891e-05
8.59984e-05
8.86385e-05
9.07216e-05
8.73679e-05
8.44468e-05
8.31771e-05
8.41216e-05
8.80166e-05
9.55833e-05
9.7631e-05
9.9391e-05
0.00010254
0.000107562
0.000114949
0.000123321
0.000130272
0.000132754
0.000129455
0.000120377
0.000105204
8.42272e-05
5.84624e-05
3.41275e-05
1.50913e-05
2.82194e-06
1.08901e-06
3.48239e-06
7.86458e-06
2.40578e-05
4.2697e-05
5.40158e-05
5.9344e-05
6.24343e-05
6.50858e-05
6.75173e-05
6.94876e-05
7.11325e-05
7.26469e-05
7.42501e-05
7.61085e-05
7.82961e-05
8.07514e-05
8.34399e-05
8.70499e-05
9.44894e-05
0.000112179
0.00014782
0.000205337
0.000279128
0.000355308
0.000422752
0.000418181
0.00038752
0.000331496
0.000263693
0.000203249
0.000153852
0.000110705
6.13221e-05
5.52979e-06
1.25635e-06
2.25278e-06
2.25245e-05
8.31742e-05
9.68758e-05
9.11672e-05
8.50847e-05
8.40701e-05
8.56345e-05
8.78949e-05
9.02273e-05
9.23685e-05
9.42868e-05
9.59977e-05
9.74846e-05
9.87874e-05
9.99793e-05
0.000101133
0.00010229
0.000103456
0.000104603
0.000105609
0.000106306
0.000106179
0.000104607
0.000101138
9.54639e-05
8.7565e-05
7.73724e-05
6.4842e-05
4.99625e-05
3.31479e-05
1.68353e-05
5.1483e-06
5.64361e-07
1.11514e-07
1.85657e-06
1.62151e-05
1.7292e-05
2.20311e-05
2.56461e-05
2.88112e-05
3.18207e-05
3.48436e-05
3.78571e-05
4.07966e-05
4.35718e-05
4.61048e-05
4.83332e-05
5.02351e-05
5.18114e-05
5.30672e-05
5.39902e-05
5.45286e-05
5.45822e-05
5.412e-05
5.31146e-05
5.17023e-05
4.98006e-05
4.73307e-05
4.43064e-05
4.07796e-05
3.68446e-05
3.25865e-05
2.80602e-05
2.32127e-05
1.78072e-05
1.16183e-05
5.56359e-06
3.21248e-06
1.71074e-07
1.25706e-08
8.03747e-07
1.20239e-06
1.8808e-06
2.70242e-06
3.54219e-06
4.29919e-06
4.87771e-06
5.21738e-06
5.29483e-06
5.14244e-06
4.86838e-06
4.3415e-06
3.93386e-06
4.57609e-06
6.8437e-06
8.1496e-06
8.76941e-06
1.09533e-05
1.39433e-05
1.31401e-05
1.24957e-05
1.23294e-05
1.25389e-05
1.29308e-05
1.33999e-05
1.38968e-05
1.43861e-05
1.48238e-05
1.51476e-05
1.52618e-05
1.5002e-05
1.39762e-05
3.08575e-06
6.10693e-08
6.50959e-08
1.74144e-07
7.2214e-07
2.30005e-06
4.80443e-06
7.45669e-06
9.60395e-06
1.09441e-05
1.14669e-05
1.13167e-05
1.06722e-05
9.84933e-06
9.09064e-06
8.50446e-06
8.25425e-06
8.31914e-06
8.78404e-06
1.01109e-05
1.06205e-05
1.11561e-05
1.67002e-05
2.59346e-05
3.84618e-05
5.35618e-05
6.25692e-05
6.86675e-05
7.24286e-05
7.47824e-05
7.64494e-05
7.75073e-05
7.69927e-05
7.20714e-05
2.87575e-05
7.93794e-06
9.49131e-07
6.02261e-07
9.03224e-07
4.75463e-06
1.54701e-05
2.7692e-05
3.65326e-05
4.46969e-05
5.13894e-05
5.17457e-05
4.54827e-05
3.67415e-05
2.74459e-05
1.9061e-05
1.24239e-05
7.7045e-06
4.52161e-06
2.38021e-06
5.94917e-07
8.21346e-07
1.04918e-06
5.09326e-06
1.14801e-05
1.8137e-05
2.4198e-05
2.98078e-05
3.56835e-05
4.30195e-05
5.23607e-05
6.24265e-05
7.13868e-05
7.60705e-05
6.29868e-05
2.44851e-05
9.14701e-06
1.64306e-06
9.30204e-07
2.63763e-06
1.83853e-05
3.08971e-05
4.31959e-05
5.3091e-05
6.03028e-05
6.52282e-05
6.75046e-05
6.4401e-05
5.75391e-05
4.86985e-05
3.93738e-05
3.10268e-05
2.48244e-05
2.13587e-05
2.06341e-05
2.23032e-05
2.62323e-05
3.18231e-05
3.87675e-05
4.6256e-05
5.38214e-05
6.14888e-05
6.9549e-05
7.81432e-05
8.68191e-05
9.45863e-05
0.000100029
0.000100751
9.19606e-05
5.27108e-05
2.24937e-05
8.53019e-06
2.24505e-06
8.05113e-07
1.15629e-06
5.37681e-06
1.89183e-05
2.94184e-05
3.8444e-05
4.62823e-05
5.30566e-05
5.91828e-05
6.52983e-05
7.02171e-05
6.95126e-05
6.75034e-05
6.47114e-05
6.17629e-05
5.93943e-05
5.84196e-05
5.95492e-05
6.30856e-05
6.86948e-05
7.55886e-05
8.30208e-05
8.72913e-05
9.52025e-05
0.000106818
0.000113914
0.000119383
0.000121887
0.000119268
0.000107995
8.54204e-05
4.44545e-05
2.22513e-05
8.86556e-06
2.74599e-06
1.16478e-06
2.35453e-06
1.51097e-05
3.5481e-05
5.01901e-05
6.25664e-05
7.35988e-05
8.20883e-05
8.51418e-05
8.58115e-05
8.46596e-05
8.21873e-05
7.88776e-05
7.52295e-05
7.17883e-05
6.91549e-05
6.79155e-05
6.84551e-05
7.07827e-05
7.45446e-05
7.92221e-05
8.45023e-05
9.03793e-05
9.67805e-05
0.000103255
0.00010897
0.000112462
0.000111378
0.000102428
8.46119e-05
6.48984e-05
3.6551e-05
2.10014e-05
8.31841e-06
3.17845e-06
1.21777e-06
2.83187e-06
1.70882e-05
3.57813e-05
4.9232e-05
6.06314e-05
7.07982e-05
8.04546e-05
9.03042e-05
9.96687e-05
0.000102253
0.000102225
0.000100555
9.76706e-05
9.40848e-05
9.03449e-05
8.71418e-05
8.49967e-05
8.42091e-05
8.48247e-05
8.66908e-05
8.96184e-05
9.33343e-05
9.7325e-05
0.00010077
0.000102409
0.000100416
9.25021e-05
7.95104e-05
6.70802e-05
5.231e-05
3.31824e-05
2.09298e-05
8.21891e-06
3.55828e-06
1.31426e-06
2.63653e-06
1.5731e-05
3.81476e-05
5.44639e-05
6.74162e-05
7.85457e-05
8.87651e-05
9.86698e-05
0.000105955
0.000108311
0.000109046
0.000108482
0.000106952
0.000104811
0.000102293
9.98246e-05
9.7853e-05
9.68837e-05
9.7157e-05
9.85889e-05
0.000100886
0.000103465
0.000105514
0.000105907
0.000103032
9.49023e-05
8.1277e-05
6.74146e-05
5.77964e-05
4.50108e-05
3.17064e-05
2.13642e-05
8.24837e-06
3.88739e-06
1.46566e-06
3.77802e-06
2.28058e-05
4.76316e-05
6.48433e-05
7.8939e-05
9.13695e-05
0.000103061
0.000114812
0.000125568
0.000128556
0.000129607
0.000129061
0.000127288
0.000124697
0.000121496
0.000118106
0.000114951
0.000112777
0.000111913
0.000112125
0.000112971
0.000113779
0.000113624
0.00011116
0.000104502
9.15015e-05
7.49665e-05
6.25367e-05
5.501e-05
4.18012e-05
3.18128e-05
2.20503e-05
8.22692e-06
4.20915e-06
1.50479e-06
3.38503e-06
2.01584e-05
4.62334e-05
6.4422e-05
7.94101e-05
9.25458e-05
0.000104776
0.000117196
0.000129624
0.000136427
0.000139523
0.000141009
0.000141156
0.000140163
0.000138057
0.000135242
0.000132149
0.000129561
0.000128132
0.000127557
0.000127185
0.000126419
0.000124361
0.000119592
0.00011009
9.36339e-05
7.45425e-05
6.15717e-05
5.39867e-05
4.07217e-05
3.26717e-05
2.31962e-05
8.50069e-06
4.49162e-06
1.60424e-06
4.20554e-06
2.48524e-05
5.46271e-05
7.63632e-05
9.28586e-05
0.000106795
0.00011951
0.000132183
0.000144997
0.000153722
0.000157024
0.000158694
0.000159029
0.000158278
0.00015632
0.00015344
0.000150049
0.000147027
0.000145048
0.00014373
0.000142288
0.000140036
0.000136005
0.000128688
0.000116086
9.63066e-05
7.53496e-05
6.23352e-05
5.12183e-05
4.06833e-05
3.38051e-05
2.42594e-05
8.62009e-06
4.76998e-06
1.69094e-06
4.33719e-06
2.54782e-05
5.65076e-05
7.81047e-05
9.58145e-05
0.000111274
0.000125323
0.000139093
0.000153516
0.000166695
0.000171624
0.000174761
0.000176377
0.000176745
0.00017568
0.000173299
0.000169969
0.000166716
0.000164255
0.000162155
0.00015958
0.000155782
0.000149717
0.000139844
0.000124285
0.000101606
7.88852e-05
6.52074e-05
5.0714e-05
4.15066e-05
3.52072e-05
2.55067e-05
8.891e-06
5.02213e-06
1.72536e-06
4.66701e-06
2.71899e-05
6.02768e-05
8.78743e-05
0.000107682
0.000123706
0.000137931
0.000151726
0.000166217
0.000180731
0.000188724
0.000192738
0.000195166
0.000196253
0.000196141
0.000194685
0.000191891
0.0001889
0.00018628
0.000183367
0.000179463
0.000173836
0.000165364
0.00015253
0.000133737
0.000108226
8.40291e-05
6.82925e-05
5.15905e-05
4.31674e-05
3.6865e-05
2.67157e-05
9.05643e-06
5.26614e-06
1.84802e-06
5.15885e-06
2.96682e-05
6.4977e-05
9.34567e-05
0.000114553
0.000132096
0.000147678
0.000162411
0.000177488
0.000193196
0.000205711
0.000211016
0.000214601
0.000216695
0.000217501
0.000217073
0.000215181
0.000212741
0.000210046
0.000206453
0.000201416
0.000194164
0.000183545
0.000168101
0.000146479
0.000118389
9.21693e-05
6.96203e-05
5.3477e-05
4.54885e-05
3.88774e-05
2.81375e-05
9.3423e-06
5.49257e-06
1.85922e-06
5.27997e-06
3.04539e-05
6.76692e-05
0.000101802
0.000126506
0.000145423
0.000161695
0.000176887
0.000192243
0.000208606
0.000224374
0.000231433
0.000236105
0.00023917
0.000240808
0.000241146
0.000240251
0.000238372
0.000235496
0.000231252
0.000225102
0.000216208
0.000203418
0.000185417
0.000161211
0.000131082
0.000102015
7.25949e-05
5.64277e-05
4.84721e-05
4.11372e-05
2.95783e-05
9.566e-06
5.70956e-06
1.99049e-06
5.91217e-06
3.32996e-05
7.27727e-05
0.000108753
0.000135494
0.000156004
0.000173487
0.000189522
0.000205338
0.000222001
0.000239092
0.00025151
0.000257644
0.00026203
0.000264835
0.000266173
0.00026609
0.000264708
0.000261916
0.000257309
0.000250301
0.000240035
0.000225413
0.000205307
0.00017907
0.000147396
0.000107638
7.71615e-05
6.07144e-05
5.2091e-05
4.37648e-05
3.12608e-05
9.90494e-06
5.91329e-06
2.00384e-06
6.00045e-06
3.4114e-05
7.57191e-05
0.000114868
0.000148734
0.000172737
0.000191174
0.000207416
0.00022316
0.000239628
0.000257323
0.000273957
0.000281344
0.000286876
0.000290697
0.00029289
0.00029346
0.000292417
0.000289576
0.000284495
0.000276551
0.0002649
0.000248555
0.000226636
0.000198863
0.000158536
0.000113566
8.28514e-05
6.59435e-05
5.62172e-05
4.6644e-05
3.308e-05
1.0243e-05
6.10754e-06
2.12714e-06
6.65211e-06
3.68101e-05
8.04639e-05
0.00012144
0.00015719
0.000184529
0.000205124
0.000222618
0.000238928
0.000255414
0.000273011
0.00029107
0.000304703
0.000311747
0.000316897
0.0003202
0.000321624
0.000321103
0.000318402
0.000313062
0.000304464
0.00029182
0.000274287
0.000251218
0.000220337
0.00016752
0.000121134
9.02052e-05
7.23003e-05
6.09324e-05
4.98288e-05
3.51097e-05
1.06811e-05
6.28954e-06
2.15505e-06
6.79782e-06
3.78918e-05
8.38574e-05
0.000127883
0.000166874
0.000200343
0.000225918
0.00024407
0.000259787
0.000275433
0.000292167
0.000310245
0.00032767
0.000337581
0.000343947
0.000348308
0.000350579
0.000350625
0.000348163
0.000342722
0.000333695
0.000320365
0.000302018
0.00027818
0.000232176
0.000176723
0.000130543
9.91234e-05
7.9633e-05
6.61482e-05
5.32984e-05
3.73375e-05
1.11672e-05
6.46176e-06
2.26501e-06
7.41419e-06
4.03537e-05
8.82985e-05
0.000134304
0.000175415
0.000211231
0.000241585
0.000262567
0.000279481
0.000295117
0.000311035
0.000328112
0.000346229
0.000362884
0.000371104
0.000376646
0.000379891
0.00038065
0.000378606
0.000373275
0.000364053
0.000350252
0.000331203
0.0002977
0.000243707
0.000187925
0.000142042
0.000109499
8.77398e-05
7.18072e-05
5.70687e-05
3.98028e-05
1.1763e-05
6.62237e-06
2.31762e-06
7.70522e-06
4.19233e-05
9.22574e-05
0.000141087
0.000185025
0.000223555
0.000256843
0.000285223
0.000303607
0.000318542
0.000333178
0.000348749
0.000365554
0.000382924
0.000398118
0.000404768
0.000408904
0.000410312
0.000408622
0.000403311
0.000393747
0.00037922
0.00035695
0.000311379
0.000255312
0.000200452
0.000154735
0.000120699
9.64194e-05
7.79157e-05
6.117e-05
4.25419e-05
1.24614e-05
6.77453e-06
2.41605e-06
8.30179e-06
4.43255e-05
9.68048e-05
0.0001479
0.0001942
0.000235151
0.000270877
0.000301699
0.000325725
0.000342007
0.00035614
0.00037054
0.000385858
0.000401899
0.000417731
0.000431023
0.000437132
0.000439003
0.00043746
0.000431934
0.000421754
0.000406197
0.000371861
0.000322854
0.000267389
0.000213745
0.000167986
0.000132337
0.000105529
8.44346e-05
6.56298e-05
4.56057e-05
1.32649e-05
6.91572e-06
2.49657e-06
8.7759e-06
4.64522e-05
0.000101401
0.000155171
0.000204068
0.000247482
0.000285542
0.000318593
0.000347037
0.000366939
0.000380936
0.000394171
0.000408232
0.000422995
0.000437695
0.000451197
0.000461698
0.000466223
0.000464556
0.000458541
0.000447483
0.000422789
0.00038386
0.000334352
0.000280016
0.000227371
0.000181404
0.000144182
0.000114964
9.1346e-05
7.04772e-05
4.8986e-05
1.40406e-05
7.04631e-06
2.59248e-06
9.4018e-06
4.89952e-05
0.000106375
0.000162724
0.000214189
0.000260081
0.000300487
0.000335724
0.000366183
0.000390735
0.000405662
0.000418116
0.000431035
0.000444811
0.000458672
0.000471413
0.000481652
0.000487867
0.000488382
0.000481263
0.000464303
0.000435672
0.00039534
0.000346022
0.000292677
0.000240791
0.000194574
0.000155935
0.00012452
9.85356e-05
7.56683e-05
5.26639e-05
1.47711e-05
7.16334e-06
2.69652e-06
1.00325e-05
5.15616e-05
0.00011149
0.000170487
0.00022451
0.00027282
0.000315492
0.000352838
0.00038524
0.000413086
0.000430281
0.000442312
0.00045417
0.000466956
0.000480036
0.000492148
0.000501784
0.000507241
0.000506592
0.000497711
0.000478591
0.0004481
0.000406904
0.000357848
0.000305339
0.000254035
0.00020753
0.000167592
0.000134163
0.000105953
8.11448e-05
5.65824e-05
1.54825e-05
7.26789e-06
2.79905e-06
1.06891e-05
5.42053e-05
0.000116754
0.000178495
0.00023517
0.000285958
0.000330902
0.000370304
0.000404537
0.000433978
0.000454285
0.000466369
0.000477175
0.000488861
0.000501034
0.000512321
0.000521042
0.000525345
0.0005232
0.000512531
0.00049164
0.000459886
0.000418293
0.000369645
0.000317873
0.000267012
0.000220192
0.000179067
0.000143803
0.000113547
8.69297e-05
6.08413e-05
1.62127e-05
7.36007e-06
2.91849e-06
1.14271e-05
5.70576e-05
0.000122269
0.000186709
0.000245959
0.000299144
0.000346288
0.000387678
0.000423677
0.000454651
0.000477432
0.00048964
0.000499634
0.00051034
0.000521601
0.000531981
0.000539644
0.000542626
0.000538903
0.000526566
0.000504223
0.000471571
0.0004298
0.000381556
0.000330371
0.000279798
0.000232621
0.000190399
0.000153468
0.000121316
9.29614e-05
6.53156e-05
1.6939e-05
7.44044e-06
3.03385e-06
1.21542e-05
5.98968e-05
0.000127876
0.000195147
0.000257056
0.000312659
0.000361963
0.000405256
0.000442905
0.000475277
0.000499921
0.000512045
0.000521235
0.000531017
0.000541392
0.000550856
0.000557445
0.000559122
0.000553915
0.000540104
0.000516576
0.000483266
0.000441437
0.00039357
0.000342849
0.000292443
0.000244853
0.000201559
0.000163037
0.000129117
9.92414e-05
7.02484e-05
1.77125e-05
7.51092e-06
3.16154e-06
1.29513e-05
6.28819e-05
0.00013362
0.000203692
0.000268235
0.000326233
0.000377668
0.000422821
0.000462057
0.000495742
0.000521635
0.000533454
0.000541856
0.0005508
0.000560354
0.000568931
0.000574468
0.000574899
0.000568336
0.000553249
0.000528759
0.000494974
0.000453168
0.000405642
0.000355276
0.000304918
0.000256855
0.000212528
0.000172582
0.000137144
0.000105762
7.41008e-05
1.84499e-05
7.5695e-06
3.29018e-06
1.37375e-05
6.58361e-05
0.000139374
0.00021229
0.000279481
0.000339853
0.000393365
0.0004403
0.000481029
0.000515923
0.000542778
0.000554096
0.000561632
0.000569745
0.000578522
0.000586266
0.00059082
0.000590106
0.000582335
0.000566158
0.000540893
0.000506766
0.000465024
0.000417789
0.00036767
0.000317256
0.000268685
0.00022341
0.000182243
0.000145498
0.000112471
7.7029e-05
1.90978e-05
7.61556e-06
3.42236e-06
1.45641e-05
6.88713e-05
0.000145204
0.000220957
0.000290796
0.000353535
0.000409104
0.000457777
0.000499931
0.000535947
0.000563315
0.00057391
0.000580516
0.000587817
0.000595869
0.000602849
0.000606509
0.000604776
0.000595962
0.000578882
0.000553009
0.000518649
0.000476995
0.000429998
0.000380036
0.000329499
0.000280419
0.000234282
0.000192038
0.000154084
0.000119327
7.98396e-05
1.96873e-05
7.65092e-06
3.56037e-06
1.5393e-05
7.18751e-05
0.000150957
0.000229491
0.000301916
0.000366961
0.000424524
0.000474874
0.000518391
0.000555463
0.000583112
0.000592863
0.000598511
0.000605027
0.000612409
0.000618696
0.000621551
0.000618915
0.0006092
0.000591367
0.000565017
0.000530502
0.000488953
0.000442162
0.000392312
0.000341624
0.000292059
0.000245137
0.000201912
0.000162809
0.000126268
8.25279e-05
2.02199e-05
7.67585e-06
3.69596e-06
1.6244e-05
7.49322e-05
0.000156774
0.00023809
0.000313089
0.00038041
0.00043992
0.000491881
0.00053668
0.000574715
0.000602266
0.000611029
0.000615688
0.000621438
0.000628195
0.000633856
0.000636003
0.000632586
0.000622111
0.000603665
0.00057695
0.000542345
0.000500916
0.000454312
0.000404543
0.000353695
0.000303668
0.000256021
0.000211898
0.000171712
0.000133367
8.51625e-05
2.07248e-05
7.6906e-06
3.83891e-06
1.71006e-05
7.7937e-05
0.000162432
0.000246415
0.000323889
0.000393407
0.0004548
0.000508321
0.000554355
0.000593309
0.000620465
0.0006282
0.000631941
0.000637018
0.000643235
0.000648348
0.00064987
0.000645775
0.000634663
0.000615727
0.000588752
0.000554128
0.000512851
0.000466436
0.000416741
0.000365732
0.00031526
0.000266924
0.000221954
0.000180741
0.00014059
8.77483e-05
2.12102e-05
7.69701e-06
3.97688e-06
1.79366e-05
8.08654e-05
0.000167975
0.000254592
0.000334502
0.000406168
0.000469386
0.0005244
0.0005716
0.000611405
0.00063799
0.000644617
0.000647452
0.000651908
0.000657639
0.000662257
0.000663216
0.000658522
0.000646862
0.000627528
0.000600372
0.000565785
0.000524691
0.000478479
0.000428868
0.000377714
0.000326829
0.000277851
0.000232099
0.000189927
0.000147977
9.02937e-05
2.16799e-05
7.69487e-06
4.12226e-06
1.87881e-05
8.37711e-05
0.000173368
0.000262465
0.000344671
0.000418372
0.00048333
0.000539774
0.000588093
0.000628709
0.000654394
0.000659933
0.000662
0.000665982
0.000671351
0.000675573
0.000676059
0.00067086
0.000658753
0.000639118
0.000611858
0.000577357
0.000536466
0.00049046
0.000440931
0.000389637
0.000338359
0.000288788
0.000242336
0.00019931
0.000155596
9.28246e-05
2.21439e-05
7.68418e-06
4.26327e-06
1.96217e-05
8.66186e-05
0.000178661
0.000270179
0.000354602
0.000430249
0.000496851
0.000554634
0.000603989
0.000645346
0.00066996
0.000674397
0.000675756
0.000679344
0.000684438
0.000688358
0.000688464
0.000682849
0.00067038
0.000650528
0.000623235
0.000588866
0.0005482
0.000502403
0.000452951
0.000401519
0.000349867
0.000299743
0.000252654
0.000208848
0.000163376
9.53265e-05
2.25997e-05
7.66573e-06
4.40913e-06
2.04743e-05
8.94675e-05
0.000183858
0.000277664
0.000364171
0.000441641
0.000509785
0.000568819
0.000619139
0.00066118
0.000684297
0.000687701
0.000688565
0.000691951
0.000696893
0.00070059
0.000700391
0.000694444
0.000681701
0.000661703
0.000634431
0.000600233
0.000559816
0.000514239
0.00046487
0.000413307
0.000361302
0.000310686
0.000263085
0.000218672
0.000171514
9.78474e-05
2.30607e-05
7.63905e-06
4.55102e-06
2.13071e-05
9.22478e-05
0.000188928
0.000284949
0.00037345
0.000452642
0.000522224
0.000582413
0.000633611
0.000676265
0.000697605
0.000699981
0.000700502
0.000703849
0.000708759
0.000712302
0.000711846
0.000705631
0.000692698
0.000672643
0.000645457
0.000611464
0.000571308
0.000525954
0.000476673
0.000425006
0.00037271
0.00032168
0.000273629
0.000228631
0.000179751
0.000100277
2.3491e-05
7.60537e-06
4.69347e-06
2.21504e-05
9.50215e-05
0.000193905
0.000292018
0.000382385
0.00046318
0.000534093
0.000595343
0.00064734
0.000690545
0.000709784
0.000711179
0.000711535
0.000715017
0.000720017
0.000723484
0.000722823
0.000716377
0.000703296
0.000683242
0.000656215
0.00062249
0.000582631
0.000537515
0.000488319
0.000436513
0.000383868
0.000332432
0.000284138
0.000238883
0.00018778
0.000102754
2.39335e-05
7.56441e-06
4.83014e-06
2.29728e-05
9.77196e-05
0.000198731
0.000298847
0.00039098
0.000473273
0.000545413
0.000607629
0.000660344
0.00070403
0.000720615
0.000721085
0.000721513
0.000725332
0.000730546
0.000734015
0.000733211
0.000726593
0.000713415
0.000693407
0.00066659
0.000633199
0.000593692
0.000548824
0.000499695
0.000447782
0.00039498
0.000343546
0.000295411
0.000249353
0.000192816
0.000104916
2.4342e-05
7.51654e-06
4.9622e-06
2.37472e-05
0.000100237
0.000203241
0.000305243
0.00039904
0.000482742
0.000556033
0.000619148
0.000672524
0.000716648
0.000730295
0.00072993
0.000730637
0.000734951
0.000740467
0.000743989
0.000743085
0.000736342
0.000723113
0.000703186
0.000676594
0.000643539
0.000604404
0.000559826
0.000510821
0.000458899
0.000406117
0.000354893
0.000306983
0.000259887
0.000197673
0.00010692
2.47199e-05
7.46405e-06
5.08899e-06
2.44761e-05
0.000102602
0.000207473
0.000311235
0.000406581
0.000491591
0.000565945
0.000629887
0.00068387
0.000728399
0.00073899
0.000737986
0.000739148
0.000744033
0.000749884
0.000753492
0.000752525
0.000745688
0.000732432
0.000712603
0.000686241
0.00065351
0.000614728
0.000570464
0.000521677
0.000469884
0.000417263
0.000366364
0.000318699
0.00027042
0.000202316
0.000108776
2.50567e-05
7.4073e-06
5.21158e-06
2.51754e-05
0.000104856
0.000211482
0.000316883
0.000413659
0.000499867
0.000575183
0.000639865
0.000694384
0.000739284
0.000746456
0.000745195
0.000746983
0.000752475
0.000758696
0.000762444
0.000761468
0.00075458
0.000741331
0.000721621
0.000695499
0.000663094
0.000624662
0.000580716
0.000532199
0.000480664
0.000428356
0.000377883
0.00033049
0.000280923
0.000206698
0.000110457
2.53403e-05
7.34612e-06
5.33024e-06
2.58406e-05
0.000106993
0.000215268
0.000322199
0.000420302
0.000507609
0.000583798
0.000649136
0.000704104
0.000746872
0.000752834
0.000751736
0.000754139
0.000760252
0.000766889
0.00077082
0.00076987
0.000762968
0.000749758
0.000730193
0.000704331
0.000672267
0.000634203
0.000590597
0.000542378
0.000491168
0.000439326
0.000389464
0.00034245
0.000291531
0.000210896
0.000112034
2.55985e-05
7.28069e-06
5.445e-06
2.64869e-05
0.000109061
0.000218899
0.000327254
0.000426574
0.000514876
0.000591845
0.000657757
0.000713107
0.000753149
0.000758207
0.000757408
0.000760549
0.000767359
0.000774449
0.000778581
0.000777677
0.00077078
0.000757629
0.000738225
0.000712632
0.000680923
0.000643258
0.000600053
0.000552218
0.0005014
0.000450061
0.000400909
0.000354505
0.00030236
0.000214963
0.000113546
2.58389e-05
7.2129e-06
5.55443e-06
2.71088e-05
0.000111042
0.00022236
0.000332047
0.000432487
0.000521692
0.000599354
0.000665763
0.00072143
0.000758321
0.000762518
0.000762178
0.000766185
0.000773762
0.000781342
0.000785702
0.000784871
0.00077801
0.000764947
0.000745728
0.000720422
0.00068908
0.000651819
0.000609019
0.000561601
0.000511328
0.000460852
0.000412829
0.000366525
0.000309268
0.000218579
0.000114882
2.60437e-05
7.14188e-06
5.65893e-06
2.77092e-05
0.000112938
0.000225652
0.000336581
0.000438056
0.000528079
0.000606355
0.000673192
0.000729115
0.000762455
0.000765802
0.000766047
0.00077102
0.000779413
0.0007875
0.000792102
0.000791369
0.000784583
0.00077165
0.000752649
0.000727647
0.000696671
0.000659814
0.000617463
0.000570624
0.000521222
0.000472017
0.000425269
0.000378443
0.000314867
0.000221822
0.000116055
2.62282e-05
7.06967e-06
5.75721e-06
2.82621e-05
0.000114681
0.000228686
0.000340771
0.000443204
0.00053398
0.000612814
0.000680029
0.000736166
0.000765828
0.000768355
0.000769269
0.000775272
0.0007845
0.000793084
0.000797917
0.000797285
0.000790591
0.000777811
0.000759046
0.000734357
0.000703752
0.000667323
0.000625502
0.000579405
0.000531107
0.00048338
0.000437943
0.000390387
0.000320333
0.00022496
0.000117185
2.63999e-05
6.99843e-06
5.85143e-06
2.87728e-05
0.000116282
0.000231477
0.000344623
0.000447933
0.000539393
0.000618728
0.000686276
0.000742594
0.000768444
0.000770248
0.000771953
0.000779053
0.00078913
0.000798196
0.000803247
0.000802717
0.000796125
0.000783506
0.000764976
0.000740591
0.000710353
0.000674369
0.000633138
0.000587902
0.000540866
0.000494771
0.000450721
0.000402363
0.000325642
0.000227987
0.000118273
2.65593e-05
6.92772e-06
5.94102e-06
2.92391e-05
0.000117743
0.000234034
0.000348155
0.000452266
0.000544346
0.000624129
0.000691968
0.000748436
0.000770386
0.000771576
0.000774181
0.000782414
0.000793316
0.00080283
0.000808081
0.000807658
0.00080118
0.000788733
0.000770443
0.000746358
0.000716484
0.000680961
0.000640367
0.00059607
0.000550388
0.000506004
0.000463426
0.000414303
0.000330823
0.00023095
0.000119353
2.67224e-05
6.85886e-06
6.02777e-06
2.96819e-05
0.000119124
0.000236425
0.000351431
0.000456259
0.000548887
0.000629057
0.000697139
0.000753722
0.000771553
0.000772278
0.000775931
0.000785329
0.000797014
0.000806931
0.000812366
0.000812059
0.000805718
0.000793462
0.000775426
0.000751656
0.000722162
0.00068711
0.000647153
0.000603809
0.000559609
0.000517228
0.000476045
0.000423866
0.000335825
0.000233872
0.00012045
2.68938e-05
6.79363e-06
6.11031e-06
3.00754e-05
0.000120354
0.000238583
0.000354405
0.000459892
0.000553014
0.000633525
0.000701813
0.000758486
0.000771871
0.000772342
0.000777208
0.000787763
0.000800155
0.000810425
0.000816039
0.000815865
0.000809679
0.000797632
0.000779861
0.000756405
0.000727278
0.000692702
0.000653478
0.00061137
0.000569082
0.00052886
0.000488043
0.000429957
0.000340287
0.000236517
0.000121458
2.70549e-05
6.7318e-06
6.19264e-06
3.04518e-05
0.000121514
0.000240604
0.000357173
0.000463246
0.000556791
0.000637575
0.000706008
0.00076254
0.000771602
0.000772359
0.000778431
0.000789947
0.000802921
0.00081351
0.000819304
0.000819268
0.000813237
0.000801388
0.000783859
0.000760687
0.000731907
0.000697824
0.000659416
0.000618673
0.000578366
0.000540178
0.000499456
0.000435666
0.000344427
0.000238964
0.000122388
2.72091e-05
6.67423e-06
6.27161e-06
3.08114e-05
0.000122616
0.000242521
0.000359784
0.000466391
0.000560309
0.00064131
0.000709815
0.000762495
0.000770838
0.000772312
0.000779388
0.000791728
0.000805238
0.000816132
0.000822106
0.000822214
0.000816344
0.000804692
0.000787395
0.000764492
0.000736056
0.000702489
0.000664941
0.000625584
0.000587194
0.00055087
0.0005101
0.000440859
0.000348142
0.000241106
0.000123141
2.73183e-05
6.61889e-06
6.34736e-06
3.11106e-05
0.000123527
0.000244137
0.000362023
0.000469123
0.000563392
0.0006446
0.000713171
0.000762045
0.000769663
0.000771844
0.000779901
0.00079302
0.000807019
0.000818184
0.000824322
0.000824569
0.000818864
0.000807413
0.000790354
0.000767735
0.00073967
0.000706665
0.000670018
0.000632053
0.000595515
0.000560936
0.000520047
0.000445568
0.000351462
0.000242976
0.000123756
2.7395e-05
6.56448e-06
6.41929e-06
3.13499e-05
0.000124256
0.000245472
0.000363913
0.000471466
0.000566064
0.000647473
0.000716115
0.000761491
0.000768414
0.00077122
0.000780156
0.000793967
0.000808389
0.00081978
0.000826051
0.00082642
0.000820864
0.000809603
0.000792772
0.000770431
0.000742744
0.000710314
0.000674583
0.000637997
0.000603258
0.000570351
0.00052933
0.00044984
0.000354405
0.000244562
0.000124204
2.74267e-05
6.50946e-06
6.49001e-06
3.15728e-05
0.00012491
0.000246658
0.000365586
0.000473536
0.000568427
0.000650016
0.000718721
0.000760734
0.000767049
0.000770449
0.000780179
0.000794597
0.000809382
0.000820966
0.000827359
0.000827851
0.000822451
0.000811384
0.000794783
0.00077272
0.000745407
0.00071354
0.000678693
0.000643448
0.000610511
0.000579169
0.000536549
0.000453863
0.000357188
0.00024606
0.000124632
2.7458e-05
6.45534e-06
6.55548e-06
3.17466e-05
0.000125407
0.000247591
0.000366943
0.000475257
0.000570428
0.000652202
0.000720986
0.000760077
0.000765827
0.000769719
0.000780117
0.000795034
0.000810102
0.000821828
0.000828315
0.000828919
0.000823676
0.00081281
0.000796446
0.000774664
0.000747715
0.000716398
0.000682474
0.000648726
0.00061768
0.000587203
0.000541088
0.000457579
0.000359856
0.000247574
0.000125131
2.75196e-05
6.40511e-06
6.61662e-06
3.18414e-05
0.000125665
0.000248156
0.000367846
0.000476484
0.000571934
0.000653919
0.000722831
0.000759788
0.000765084
0.00076932
0.000780203
0.000795472
0.000810718
0.000822512
0.000829041
0.000829717
0.0008246
0.000813915
0.000797774
0.000776259
0.00074967
0.000718923
0.000685964
0.000653683
0.000624294
0.00059438
0.000545202
0.000460909
0.000362236
0.000248917
0.000125563
2.75668e-05
6.357e-06
6.67424e-06
3.1948e-05
0.000125927
0.000248655
0.000368599
0.000477484
0.000573161
0.000655336
0.000724385
0.000759747
0.000764716
0.000769208
0.00078044
0.000795941
0.000811276
0.000823073
0.000829589
0.000830291
0.000825261
0.00081472
0.000798772
0.000777506
0.00075127
0.000721099
0.000689085
0.000658166
0.000630222
0.000600729
0.000548887
0.000463818
0.000364225
0.000249933
0.000125782
2.75502e-05
6.30634e-06
6.72781e-06
3.20192e-05
0.00012607
0.000248914
0.00036901
0.000478076
0.000573948
0.000656313
0.000725526
0.000759897
0.000764709
0.000769416
0.000780899
0.000796544
0.000811902
0.00082365
0.000830111
0.0008308
0.000825821
0.000815395
0.00079962
0.000778595
0.000752716
0.000723114
0.000691992
0.000662303
0.000635638
0.000606549
0.000552459
0.00046668
0.000366231
0.000251019
0.000126093
2.75665e-05
6.25512e-06
6.77965e-06
3.21045e-05
0.000126248
0.000249174
0.00036934
0.000478501
0.0005745
0.000657015
0.000726385
0.000760144
0.000765003
0.00076997
0.000781678
0.000797425
0.000812764
0.000824424
0.000830787
0.000831413
0.000826431
0.000816071
0.000800432
0.000779627
0.0007541
0.000725059
0.000694787
0.000666234
0.000640727
0.000612013
0.000555945
0.000469538
0.000368314
0.000252247
0.000126551
2.76326e-05
6.20595e-06
6.82844e-06
3.21512e-05
0.000126311
0.000249235
0.000369395
0.000478581
0.000574655
0.000657291
0.000726812
0.000759979
0.000765093
0.000770503
0.000782537
0.000798428
0.000813763
0.000825332
0.000831578
0.000832107
0.000827076
0.000816732
0.000801183
0.000780563
0.000755363
0.000726856
0.000697387
0.000669886
0.000645437
0.000617056
0.000559213
0.00047222
0.000370269
0.000253395
0.000126975
2.76854e-05
6.1558e-06
6.87687e-06
3.21917e-05
0.000126347
0.000249215
0.000369293
0.000478429
0.000574509
0.000657214
0.000726857
0.000759516
0.000765009
0.000770988
0.000783462
0.000799576
0.000814949
0.000826445
0.000832573
0.000832988
0.000827879
0.000817511
0.000802014
0.000781549
0.00075665
0.00072865
0.000699936
0.00067341
0.000649927
0.00062184
0.000562386
0.00047487
0.000372256
0.000254623
0.000127489
2.77671e-05
6.1057e-06
6.92581e-06
3.22923e-05
0.000126538
0.000249348
0.000369278
0.000478268
0.000574256
0.00065694
0.000726632
0.000758471
0.000764419
0.000771139
0.000784223
0.000800707
0.000816222
0.000827699
0.000833731
0.000834035
0.000828834
0.00081842
0.000802946
0.000782612
0.000758
0.0007305
0.000702537
0.000676972
0.000654417
0.000626555
0.000565397
0.000477403
0.000374178
0.00025584
0.000128025
2.78552e-05
6.05578e-06
6.96941e-06
3.2346e-05
0.000126592
0.000249282
0.000369019
0.000477821
0.000573675
0.000656298
0.000726001
0.000756604
0.000763048
0.0007707
0.000784562
0.000801535
0.000817291
0.000828835
0.000834829
0.00083505
0.000829768
0.000819304
0.000803842
0.000783623
0.000759287
0.000732287
0.000705091
0.000680518
0.000658919
0.000631237
0.000568181
0.00047973
0.000375927
0.000256928
0.000128489
2.79204e-05
6.0041e-06
7.01144e-06
3.23778e-05
0.000126561
0.000249062
0.000368543
0.000477102
0.00057277
0.000655285
0.000724961
0.000754103
0.000761047
0.00076977
0.000784556
0.000802106
0.00081815
0.000829811
0.000835829
0.000836015
0.000830673
0.000820163
0.000804706
0.000784589
0.000760515
0.00073401
0.000707594
0.000684053
0.000663456
0.000635939
0.000570779
0.000481911
0.000377576
0.000257959
0.000128931
2.79813e-05
5.95153e-06
7.05175e-06
3.23812e-05
0.000126442
0.000248705
0.000367885
0.000476156
0.000571594
0.00065396
0.000723568
0.000751066
0.000758464
0.000768325
0.000784143
0.000802363
0.000818744
0.000830545
0.00083662
0.000836826
0.000831472
0.000820935
0.000805482
0.000785456
0.00076163
0.000735613
0.000709997
0.000687546
0.000668028
0.000640665
0.00057308
0.00048382
0.00037899
0.000258806
0.000129255
2.80057e-05
5.89727e-06
7.09299e-06
3.23978e-05
0.000126344
0.000248351
0.000367193
0.000475129
0.000570284
0.000652442
0.000721929
0.000747432
0.00075526
0.000766304
0.0007832
0.000802148
0.000818933
0.000830919
0.000837065
0.000837307
0.000831979
0.000821452
0.000806014
0.000786068
0.000762468
0.000736918
0.0007121
0.000690777
0.000672421
0.000645255
0.000575058
0.000485424
0.000380129
0.000259421
0.000129421
2.79835e-05
5.84121e-06
7.13287e-06
3.2392e-05
0.000126183
0.000247903
0.000366384
0.000473959
0.000568801
0.000650722
0.000720055
0.00074342
0.000751719
0.000763987
0.000781926
0.000801556
0.000818755
0.000830986
0.000837255
0.000837542
0.000832233
0.000821729
0.000806322
0.000786449
0.000763044
0.000737921
0.000713865
0.000693663
0.00067651
0.000649627
0.000576825
0.000486878
0.000381176
0.000259999
0.000129587
2.7967e-05
5.78691e-06
7.17314e-06
3.2382e-05
0.000126
0.000247406
0.000365493
0.000472674
0.000567171
0.000648825
0.000717985
0.000739086
0.000747959
0.000761496
0.000780443
0.000800684
0.000818244
0.00083072
0.000837166
0.000837551
0.000832266
0.000821763
0.000806377
0.000786573
0.000763337
0.000738588
0.000715233
0.000696104
0.000680152
0.000653617
0.000578345
0.000488157
0.000382125
0.000260543
0.000129759
2.79611e-05
5.73793e-06
7.21328e-06
3.23465e-05
0.000125739
0.000246793
0.00036446
0.000471221
0.000565341
0.000646686
0.000715422
0.000734247
0.000743983
0.00075875
0.000778608
0.000799432
0.000817348
0.000830047
0.00083666
0.00083718
0.000831976
0.000821488
0.000806099
0.000786338
0.000763248
0.000738825
0.00071612
0.000698047
0.000683032
0.000654779
0.000579435
0.000489099
0.000382814
0.000260898
0.000129814
2.79276e-05
5.69323e-06
7.25613e-06
3.23023e-05
0.000125442
0.000246125
0.000363356
0.000469681
0.000563399
0.000644393
0.000710453
0.000729269
0.000740011
0.000755843
0.000776516
0.000797887
0.00081615
0.000829063
0.00083581
0.000836429
0.000831315
0.000820884
0.0008055
0.000785735
0.000762731
0.000738593
0.000716487
0.000699326
0.000684955
0.000655416
0.000580087
0.000489679
0.000383225
0.000261063
0.000129764
2.78723e-05
5.6508e-06
7.30204e-06
3.22827e-05
0.00012521
0.000245532
0.000362315
0.000468179
0.000561465
0.000642077
0.000705416
0.000724216
0.000735945
0.000752805
0.000774242
0.000796108
0.000814679
0.000827794
0.000834676
0.000835383
0.000830326
0.000819947
0.000804604
0.000784851
0.000761878
0.000737931
0.0007163
0.00069986
0.000686009
0.000655678
0.000580406
0.000489991
0.00038345
0.000261133
0.000129695
2.78202e-05
5.60996e-06
7.34972e-06
3.226e-05
0.000124967
0.000244926
0.000361258
0.000466657
0.000559507
0.000639733
0.000700531
0.000719321
0.000731973
0.000749778
0.000771904
0.000794201
0.000813032
0.000826315
0.000833326
0.000834135
0.000829146
0.000818802
0.000803491
0.000783784
0.000760874
0.000737052
0.000715726
0.0006998
0.000686396
0.000655672
0.000580525
0.000490194
0.000383669
0.000261288
0.000129747
2.78156e-05
5.57302e-06
7.39817e-06
3.2269e-05
0.000124816
0.000244419
0.000360281
0.00046519
0.000557586
0.000637419
0.000696158
0.000714988
0.000728457
0.000747092
0.000769809
0.000792453
0.000811464
0.000824844
0.000831922
0.000832792
0.000827853
0.000817533
0.000802213
0.000782501
0.000759635
0.000735929
0.000714797
0.000699158
0.000686052
0.000655283
0.000580292
0.000490103
0.000383675
0.000261319
0.000129742
2.77969e-05
5.53784e-06
7.44332e-06
3.2274e-05
0.000124668
0.000243888
0.000359243
0.000463634
0.000555564
0.000635011
0.000692111
0.000711091
0.000725344
0.000744744
0.000767995
0.000790934
0.000810073
0.000823493
0.000830583
0.000831464
0.000826538
0.000816224
0.000800889
0.000781139
0.000758242
0.000734566
0.000713552
0.000698082
0.000685136
0.000654478
0.000579637
0.000489607
0.00038333
0.000261093
0.000129593
2.77359e-05
5.50077e-06
7.48596e-06
3.22874e-05
0.000124547
0.000243362
0.000358174
0.000462009
0.000553443
0.000632494
0.000688259
0.000707507
0.000722564
0.000742721
0.000766482
0.000789678
0.00080889
0.000822287
0.000829325
0.000830156
0.000825191
0.000814844
0.000799476
0.000779687
0.000756743
0.000733016
0.00071198
0.00069655
0.00068374
0.000653347
0.000578646
0.000488774
0.000382662
0.00026059
0.000129266
2.76254e-05
5.46123e-06
7.52483e-06
3.23012e-05
0.000124448
0.000242843
0.000357069
0.000460299
0.000551197
0.000629824
0.000684435
0.000704101
0.000720087
0.000741096
0.000765423
0.000788884
0.00080814
0.000821458
0.000828371
0.000829076
0.000823997
0.000813548
0.000798088
0.000778221
0.000755205
0.000731397
0.000710247
0.000694705
0.000681934
0.000651982
0.000577429
0.000487736
0.000381827
0.000259972
0.000128874
2.74948e-05
5.419e-06
7.5608e-06
3.2309e-05
0.000124348
0.00024231
0.000355916
0.000458496
0.000548807
0.000626964
0.000680165
0.000700367
0.000717512
0.000739583
0.000764625
0.00078844
0.00080778
0.000821026
0.000827799
0.000828345
0.000823108
0.000812504
0.0007969
0.000776902
0.000753772
0.000729853
0.000708566
0.000692862
0.000680031
0.000650485
0.000576102
0.00048662
0.000380963
0.000259383
0.000128557
2.73942e-05
5.3761e-06
7.59485e-06
3.23235e-05
0.000124281
0.000241812
0.000354775
0.00045666
0.000546324
0.000623946
0.000675216
0.000695991
0.000714533
0.000737905
0.000763835
0.000788113
0.000807607
0.000820827
0.000827489
0.000827887
0.00082248
0.000811693
0.000795898
0.000775716
0.000752421
0.00072835
0.000706899
0.000691006
0.000678048
0.000648742
0.00057453
0.000485271
0.000379884
0.000258607
0.000128098
2.72501e-05
5.33048e-06
7.62524e-06
3.23249e-05
0.000124195
0.000241288
0.000353592
0.000454751
0.000543725
0.000620754
0.000669513
0.000690864
0.000711043
0.000735965
0.00076296
0.000787817
0.000807548
0.000820818
0.000827438
0.000827743
0.0008222
0.000811232
0.000795223
0.000774813
0.000751299
0.000727033
0.000705408
0.000689332
0.000676159
0.00064669
0.000572626
0.000483586
0.000378491
0.000257575
0.000127481
2.70543e-05
5.27886e-06
7.65149e-06
3.22638e-05
0.000123946
0.000240543
0.000352161
0.000452585
0.000540857
0.000617271
0.000662928
0.000684876
0.000706914
0.000733586
0.000761771
0.000787283
0.000807324
0.00082073
0.000827407
0.000827715
0.000822116
0.000811024
0.000794828
0.000774189
0.000750439
0.000725965
0.000704178
0.000687943
0.00067448
0.00064441
0.000570485
0.000481673
0.000376896
0.000256385
0.000126771
2.68338e-05
5.2228e-06
7.67709e-06
3.2173e-05
0.000123614
0.000239657
0.00035054
0.000450194
0.000537741
0.000613519
0.000655593
0.00067823
0.000702335
0.000730884
0.000760292
0.000786464
0.000806841
0.000820444
0.000827266
0.000827678
0.00082212
0.000810986
0.00079466
0.000773823
0.000749846
0.000725172
0.000703237
0.000686847
0.000672982
0.000641902
0.000568102
0.000479525
0.000375091
0.000255027
0.000125952
2.65826e-05
5.16479e-06
7.70165e-06
3.20728e-05
0.000123253
0.000238687
0.000348773
0.000447603
0.000534386
0.000609506
0.000647305
0.000670804
0.000697256
0.000727782
0.000758384
0.000785169
0.000805878
0.000819727
0.000826776
0.000827399
0.000822001
0.000810942
0.00079459
0.000773635
0.000749493
0.000724671
0.000702642
0.000686107
0.000671699
0.000639147
0.000565443
0.000477099
0.000373033
0.000253467
0.000125008
2.62956e-05
5.10506e-06
7.72407e-06
3.19075e-05
0.000122694
0.00023742
0.000346636
0.000444593
0.000530591
0.000605094
0.000638033
0.000662854
0.000691873
0.000724278
0.00075592
0.000783237
0.000804264
0.000818381
0.000825714
0.000826631
0.000821505
0.00081065
0.000794405
0.00077346
0.00074927
0.000724407
0.000702366
0.000685701
0.00067061
0.000636208
0.000562569
0.000474454
0.000370782
0.000251769
0.000123994
2.59911e-05
5.04583e-06
7.74755e-06
3.17171e-05
0.000122048
0.000235993
0.000344259
0.000441249
0.000526324
0.000595822
0.000628017
0.000655125
0.000686448
0.00072047
0.000753051
0.000780859
0.000802175
0.00081655
0.000824182
0.000825442
0.000820667
0.000810124
0.000794115
0.000773323
0.000749235
0.000724482
0.000702556
0.000685807
0.000669892
0.000633171
0.000559556
0.000471653
0.000368385
0.000249961
0.000122925
2.56738e-05
4.98837e-06
7.77188e-06
3.15101e-05
0.000121332
0.000234441
0.000341699
0.000437675
0.000521786
0.000585065
0.000617362
0.000646842
0.00068053
0.000716168
0.000749624
0.000777844
0.000799394
0.000814003
0.000821939
0.000823576
0.000819216
0.000809084
0.000793449
0.000772982
0.000749195
0.000724747
0.000703086
0.000686303
0.000669442
0.000630076
0.000556448
0.000468739
0.000365878
0.000248065
0.000121803
2.53484e-05
4.93401e-06
7.79767e-06
3.12793e-05
0.000120514
0.000232724
0.000338932
0.000433863
0.000516992
0.000573883
0.000606339
0.000638286
0.000674355
0.000711529
0.000745738
0.000774262
0.000795968
0.000810761
0.000818973
0.00082098
0.000817057
0.0008074
0.000792255
0.000772293
0.000749037
0.000725142
0.000703949
0.000687214
0.000669305
0.000627015
0.000553334
0.000465793
0.000363334
0.000246147
0.000120683
2.50294e-05
4.88248e-06
7.82456e-06
3.10004e-05
0.000119531
0.000230756
0.000335854
0.000429712
0.000511862
0.000562257
0.000595119
0.000629702
0.000668138
0.000706722
0.000741547
0.000770276
0.000792076
0.000807005
0.000815445
0.000817773
0.000814252
0.000805071
0.000790481
0.000771169
0.000748675
0.000725621
0.000705176
0.000688663
0.00066965
0.000624079
0.00055029
0.000462871
0.00036079
0.000244233
0.000119583
2.47226e-05
4.83432e-06
7.85524e-06
3.07058e-05
0.000118461
0.000228605
0.000332507
0.000425238
0.000506428
0.000550239
0.000583931
0.000621314
0.000661974
0.000701733
0.000737011
0.000765873
0.000787739
0.000802775
0.000811395
0.000813981
0.000810801
0.000802059
0.000788039
0.000769474
0.000747931
0.000725987
0.000706594
0.000690551
0.000670492
0.000621409
0.000547465
0.000460107
0.000358345
0.000242376
0.000118518
2.44289e-05
4.79023e-06
7.89046e-06
3.04075e-05
0.000117381
0.000226389
0.000328967
0.000420388
0.000497642
0.000538001
0.000573733
0.000613673
0.000656034
0.000696657
0.000732278
0.00076124
0.000783142
0.000798242
0.000806986
0.000809767
0.000806861
0.000798502
0.000785031
0.000767247
0.00074677
0.000726141
0.000708084
0.000692812
0.000671871
0.000619032
0.000544893
0.000457521
0.000355985
0.00024052
0.000117416
2.41225e-05
4.74965e-06
7.93012e-06
3.01069e-05
0.000116313
0.000224185
0.000325388
0.000415396
0.000485528
0.000525867
0.000564022
0.000606316
0.000650222
0.000691607
0.000727477
0.000756455
0.000778326
0.000793431
0.000802237
0.000805138
0.000802422
0.000794358
0.000781356
0.000764306
0.000744902
0.000725681
0.000709158
0.000694955
0.000673445
0.000616968
0.000542645
0.000455207
0.000353796
0.000238719
0.000116293
2.38098e-05
4.71216e-06
7.97466e-06
2.97964e-05
0.000115183
0.000221852
0.00032162
0.000410167
0.000472902
0.000513414
0.000554262
0.000599068
0.000644494
0.000686511
0.000722516
0.000751451
0.000773266
0.000788358
0.000797197
0.000800172
0.000797578
0.000789721
0.00077708
0.000760647
0.000742218
0.000724366
0.000709449
0.000696535
0.000674821
0.000615091
0.000540653
0.000453145
0.000351785
0.000236976
0.000115133
2.34799e-05
4.67446e-06
8.0232e-06
2.94421e-05
0.000113845
0.000219158
0.000317402
0.000404478
0.000459724
0.000500657
0.000544357
0.000591702
0.000638615
0.000681222
0.000717316
0.000746174
0.000767927
0.000783011
0.000791886
0.000794925
0.000792426
0.000784721
0.000772346
0.000756385
0.000738748
0.000722086
0.000708693
0.000697211
0.000675468
0.00061317
0.00053874
0.000451228
0.000349911
0.000235302
0.000113968
2.31472e-05
4.63636e-06
8.07583e-06
2.90366e-05
0.0001123
0.00021608
0.000312673
0.000398306
0.000446281
0.000488181
0.000534753
0.0005843
0.00063242
0.000675574
0.000711854
0.000740726
0.000762434
0.000777492
0.000786384
0.000789475
0.000787053
0.00077946
0.000767264
0.000751618
0.000734552
0.000718882
0.000706921
0.000696528
0.000672908
0.000610908
0.000536663
0.00044926
0.000348028
0.000233589
0.000112718
2.27796e-05
4.59483e-06
8.13283e-06
2.85986e-05
0.000110596
0.000212608
0.000307187
0.000385799
0.000432487
0.000476883
0.000525834
0.000576877
0.00062579
0.000669349
0.00070588
0.000734921
0.000756717
0.000771802
0.000780712
0.000783851
0.000781511
0.000774027
0.000761969
0.000746525
0.000729818
0.000714795
0.000703785
0.000694163
0.000669785
0.000608202
0.000534315
0.000447193
0.000346181
0.000231981
0.000111557
2.24453e-05
4.55804e-06
8.19371e-06
2.81125e-05
0.000108729
0.000208877
0.000301356
0.000372015
0.000418629
0.000465481
0.000516808
0.000569404
0.000619062
0.000662859
0.000699447
0.000728575
0.000750534
0.000765787
0.000774818
0.000778044
0.000775801
0.000768442
0.000756527
0.000741234
0.000724705
0.000709956
0.000699385
0.000690301
0.000666053
0.00060495
0.000531519
0.000444794
0.000344109
0.000230213
0.00011026
2.20705e-05
4.523e-06
8.2568e-06
2.75585e-05
0.000106633
0.000204776
0.000295069
0.000357889
0.000404701
0.000454151
0.000507838
0.000561892
0.000612233
0.00065624
0.000692812
0.000721879
0.000743853
0.000759248
0.000768486
0.0007719
0.000769805
0.000762587
0.000750826
0.000735662
0.00071918
0.000704361
0.000693702
0.000684873
0.000661712
0.000601111
0.00052819
0.000441959
0.000341737
0.000228296
0.000108933
2.17127e-05
4.49686e-06
8.32273e-06
2.69547e-05
0.000104314
0.000200293
0.000288369
0.000343615
0.000391016
0.000443124
0.000498999
0.000554291
0.000605163
0.000649333
0.000685914
0.000714928
0.000736837
0.000752224
0.000761571
0.000765207
0.00076338
0.000756417
0.000744875
0.00072988
0.000713446
0.000698472
0.000687521
0.000678768
0.000657041
0.000596944
0.000524553
0.000438859
0.00033916
0.000226241
0.000107525
2.13338e-05
4.46802e-06
8.38885e-06
2.62939e-05
0.000101701
0.000195171
0.000278819
0.000329214
0.000378161
0.000432734
0.000490336
0.000546542
0.000597819
0.000642133
0.000678743
0.000707733
0.00072959
0.000744911
0.000754232
0.000757956
0.000756368
0.000749738
0.000738522
0.000723772
0.000707434
0.000692302
0.000680919
0.00067201
0.000651984
0.000592386
0.000520554
0.000435465
0.000336412
0.000224179
0.000106236
2.10259e-05
4.44784e-06
8.45716e-06
2.56317e-05
9.89933e-05
0.000189652
0.000265041
0.000315137
0.000366115
0.00042262
0.000481578
0.000538611
0.000590316
0.000634791
0.000671409
0.000700339
0.000722125
0.000737389
0.000746678
0.00075042
0.000748952
0.000742586
0.000731742
0.000717365
0.00070128
0.000686188
0.000674615
0.00066558
0.000646887
0.000587812
0.00051656
0.000432087
0.000333679
0.000222118
0.000104929
2.06931e-05
4.41595e-06
8.52622e-06
2.49828e-05
9.63421e-05
0.000184187
0.000251834
0.000301507
0.000354308
0.000412687
0.000472971
0.000530757
0.000582789
0.000627335
0.000663891
0.000692708
0.000714383
0.000729571
0.000738834
0.000742602
0.00074122
0.000735037
0.000724496
0.000710508
0.000694782
0.000679872
0.000668223
0.000658964
0.000640856
0.000582839
0.000512227
0.00042846
0.000330838
0.000220132
0.000103827
2.04569e-05
4.39535e-06
8.54927e-06
2.4323e-05
9.36548e-05
0.000178679
0.00023914
0.000288479
0.00034298
0.000403062
0.000464513
0.000522927
0.000575203
0.000619759
0.000656206
0.000684873
0.000706406
0.000721495
0.000730723
0.000734531
0.000733263
0.000727266
0.000716985
0.000703331
0.000687991
0.000673437
0.000662029
0.000652905
0.000635041
0.00057783
0.000507827
0.000424705
0.000327771
0.000217812
0.000102369
2.00743e-05
4.35064e-06
8.55995e-06
2.36847e-05
9.10585e-05
0.000173341
0.000227068
0.00027628
0.000332429
0.000394025
0.000456413
0.00051525
0.000567611
0.000612064
0.000648316
0.000676765
0.000698103
0.000713053
0.000722218
0.000726047
0.000724891
0.00071909
0.000709068
0.000695709
0.00068067
0.000666364
0.00065507
0.000645934
0.000628254
0.000572324
0.000503032
0.000420694
0.000324638
0.000215647
0.000101206
1.98264e-05
4.32366e-06
8.56963e-06
2.30244e-05
8.83517e-05
0.000168048
0.000215715
0.000265179
0.000322792
0.000385498
0.000448456
0.00050748
0.000559794
0.000604064
0.000640068
0.000668265
0.000689398
0.00070422
0.00071335
0.00071724
0.00071624
0.000710687
0.000700975
0.000687955
0.000673257
0.000659293
0.000648344
0.000639571
0.000622303
0.000566832
0.000498213
0.000416561
0.000321214
0.000212992
9.94949e-05
1.93587e-05
4.26143e-06
8.58012e-06
2.23919e-05
8.54226e-05
0.00015821
0.000205366
0.000255894
0.000314273
0.000377372
0.000440499
0.000499518
0.00055166
0.000595625
0.000631262
0.000659108
0.000679967
0.000694625
0.000703711
0.000707671
0.000706851
0.000701577
0.000692215
0.000679565
0.000665183
0.000651403
0.000640469
0.000631613
0.000614568
0.000560601
0.00049281
0.00041206
0.000317708
0.000210576
9.82108e-05
1.90866e-05
4.2273e-06
8.59112e-06
2.1816e-05
8.2833e-05
0.000149635
0.000195874
0.000246775
0.000305701
0.000369233
0.000432546
0.000491458
0.000543252
0.000586735
0.000621873
0.000649294
0.000669856
0.000684364
0.000693444
0.000697529
0.000696952
0.000692027
0.000683088
0.000670896
0.000656963
0.000643585
0.000632999
0.000624504
0.000607941
0.000554638
0.000487633
0.000407673
0.000314106
0.000207784
9.63971e-05
1.8579e-05
4.14779e-06
8.59771e-06
2.12451e-05
8.03082e-05
0.000141492
0.000187056
0.000238456
0.000297873
0.000361623
0.000424825
0.00048332
0.000534482
0.000577249
0.000611717
0.000638603
0.000658812
0.000673157
0.000682244
0.000686485
0.000686196
0.000681675
0.000673217
0.000661524
0.000648027
0.000634911
0.000624317
0.000615602
0.000599145
0.000547593
0.000481549
0.000402657
0.000310272
0.000205226
9.51065e-05
1.83192e-05
4.11024e-06
8.5967e-06
2.06259e-05
7.76793e-05
0.000133883
0.000178697
0.000230342
0.000290036
0.000353829
0.000416742
0.000474628
0.00052497
0.000566865
0.000600559
0.000626866
0.000646725
0.000660942
0.000670098
0.000674573
0.000674662
0.000670644
0.000662779
0.000651726
0.000638871
0.000626361
0.00061632
0.000608114
0.000592146
0.000541039
0.000475836
0.000397795
0.00030626
0.000202092
9.30567e-05
1.77375e-05
4.0125e-06
8.58518e-06
1.99478e-05
7.48927e-05
0.00012647
0.00017058
0.000222406
0.000282276
0.00034597
0.00040841
0.000465483
0.000514814
0.000555679
0.000588481
0.000614132
0.0006336
0.000647674
0.000656894
0.000661604
0.000662081
0.000658593
0.000651357
0.000640966
0.000628708
0.000616599
0.00060664
0.000598238
0.000582375
0.000533241
0.000469115
0.000392297
0.00030214
0.000199454
9.18207e-05
1.75118e-05
3.97365e-06
8.56013e-06
1.91033e-05
7.15845e-05
0.000118927
0.000162306
0.00021416
0.000274027
0.000337424
0.000399179
0.00045525
0.00050345
0.000543256
0.000575203
0.000600264
0.000619418
0.000633428
0.000642789
0.000647806
0.00064874
0.000645851
0.000639324
0.000629712
0.000618265
0.000606971
0.000597817
0.000590208
0.000575046
0.00052623
0.000462973
0.000387026
0.000297744
0.000195993
8.95576e-05
1.68635e-05
3.85593e-06
8.52174e-06
1.81542e-05
6.79237e-05
0.000111258
0.000153888
0.000205667
0.000265406
0.000328351
0.000389237
0.000444116
0.000491031
0.000529701
0.000560807
0.000585347
0.000604255
0.000618242
0.000627761
0.000633084
0.000634463
0.000632161
0.000626326
0.000617445
0.000606663
0.000595827
0.000586795
0.000579037
0.000564157
0.000517886
0.000455847
0.000381273
0.000293533
0.000193425
8.84797e-05
1.66976e-05
3.81917e-06
8.46687e-06
1.69114e-05
6.32754e-05
0.000102878
0.000144623
0.000196098
0.000255487
0.000317769
0.000377604
0.000431184
0.000476814
0.00051445
0.000544896
0.000569148
0.000588058
0.000602238
0.00061208
0.000617835
0.000619757
0.000618119
0.000613041
0.000604975
0.000595041
0.000585084
0.000576992
0.000570265
0.000556409
0.000510694
0.000449592
0.000375908
0.000289022
0.000189812
8.60707e-05
1.5994e-05
3.68717e-06
8.40052e-06
1.55269e-05
5.81629e-05
9.4169e-05
0.000134783
0.00018571
0.000244588
0.000306053
0.000364646
0.000416755
0.000461021
0.000497658
0.000527554
0.000551663
0.000570734
0.000585258
0.00059553
0.000601767
0.000604247
0.000603275
0.000598931
0.000591592
0.000582266
0.000572659
0.000564561
0.000557631
0.000544267
0.000501872
0.000442173
0.000370026
0.000284823
0.000187362
8.51319e-05
1.5874e-05
3.65804e-06
8.29165e-06
1.38026e-05
5.20481e-05
8.46913e-05
0.000123652
0.000173466
0.000231437
0.000291826
0.000349023
0.000399634
0.000442667
0.000478575
0.000508274
0.000532603
0.000552166
0.000567329
0.000578295
0.000585232
0.000588434
0.000588253
0.000584745
0.000578239
0.00056972
0.000560917
0.000553707
0.000547886
0.00053587
0.000494555
0.000435906
0.0003647
0.000280335
0.000183712
8.26471e-05
1.51314e-05
3.51511e-06
8.15424e-06
1.20745e-05
4.60601e-05
7.52477e-05
0.000111919
0.000160088
0.000216816
0.000275854
0.000331376
0.000380278
0.000422024
0.000457321
0.000487059
0.000511892
0.000532213
0.000548229
0.00056005
0.000567803
0.000571803
0.000572462
0.000569809
0.000564081
0.000556127
0.000547522
0.000540072
0.000533841
0.000522426
0.000485332
0.000428344
0.000358912
0.000276423
0.000181651
8.20405e-05
1.51086e-05
3.49963e-06
8.03014e-06
1.0702e-05
4.03895e-05
6.55871e-05
9.91602e-05
0.000144897
0.000199786
0.000257035
0.000310557
0.000357595
0.000398118
0.000433067
0.00046324
0.00048903
0.000510558
0.000527829
0.000540846
0.000549715
0.000554779
0.000556506
0.0005549
0.000550146
0.000543053
0.000535223
0.000528587
0.00052343
0.000513477
0.0004778
0.000422007
0.000353627
0.000272042
0.000178114
7.9617e-05
1.43616e-05
3.35205e-06
7.9288e-06
9.74717e-06
3.5761e-05
5.68762e-05
8.69616e-05
0.000129798
0.000182483
0.000237518
0.000288451
0.000333039
0.000371952
0.000406429
0.000437138
0.000464126
0.000487151
0.000505948
0.000520367
0.000530484
0.000536706
0.000539597
0.000539117
0.000535347
0.000528942
0.000521318
0.00051431
0.000508526
0.000499092
0.00046822
0.000414353
0.000348028
0.000268567
0.000176636
7.95007e-05
1.44779e-05
3.36013e-06
7.85294e-06
8.88817e-06
3.13197e-05
4.87229e-05
7.50491e-05
0.000114358
0.000164302
0.000216691
0.000264489
0.000306021
0.000342878
0.000376715
0.000408056
0.000436538
0.000461473
0.000482242
0.000498487
0.000510231
0.000517933
0.000522286
0.000523203
0.000520684
0.000515331
0.000508577
0.000502385
0.000497602
0.000489569
0.000460277
0.000407688
0.000342491
0.000264004
0.000172975
7.6989e-05
1.36932e-05
3.21305e-06
7.80865e-06
8.33369e-06
2.81055e-05
4.22301e-05
6.52022e-05
0.000101316
0.000148922
0.000198772
0.000242785
0.000280063
0.000313618
0.000345872
0.000377326
0.000407152
0.000434078
0.000456988
0.00047523
0.000488735
0.000497999
0.000503891
0.000506296
0.000505093
0.000500709
0.000494356
0.000487843
0.000482322
0.000474676
0.000450442
0.000399997
0.000337078
0.000260913
0.000171989
7.72838e-05
1.39307e-05
3.24667e-06
7.78862e-06
7.78639e-06
2.48178e-05
3.64021e-05
5.63361e-05
8.93073e-05
0.000134859
0.000182714
0.000222983
0.000255273
0.00028434
0.000313812
0.000344532
0.000375341
0.000404282
0.000429569
0.000450125
0.00046572
0.000476839
0.000484558
0.000488731
0.000489131
0.000486095
0.000480816
0.00047522
0.000470728
0.000464484
0.000441814
0.000392662
0.000330869
0.000255683
0.000167719
7.4344e-05
1.30399e-05
3.09643e-06
7.785e-06
7.47246e-06
2.20791e-05
3.21885e-05
4.98888e-05
8.07994e-05
0.000125856
0.000173235
0.000210275
0.000236946
0.00025999
0.000284631
0.000312871
0.000343685
0.000374182
0.000401591
0.000424288
0.000441842
0.00045467
0.000464119
0.00047001
0.000471985
0.000470218
0.000465668
0.000459989
0.00045473
0.000448738
0.000431779
0.000384982
0.000325661
0.000252926
0.000167097
7.49187e-05
1.33669e-05
3.14744e-06
7.77627e-06
7.13549e-06
1.95542e-05
2.82932e-05
4.382e-05
7.26064e-05
0.000117334
0.000165159
0.000200436
0.000222832
0.000239972
0.000258761
0.000282932
0.00031215
0.000343283
0.000372432
0.000397144
0.000416661
0.000431236
0.000442526
0.000450321
0.000454111
0.000453924
0.000450641
0.000445941
0.000441591
0.000436924
0.000422095
0.000376641
0.000318495
0.000246811
0.00016207
7.148e-05
1.23661e-05
2.9878e-06
7.745e-06
6.99426e-06
1.80255e-05
2.57249e-05
3.96343e-05
6.74599e-05
0.000113291
0.00016164
0.00019445
0.000213086
0.000226452
0.000241432
0.000261423
0.000286769
0.000315959
0.000345226
0.000370996
0.000391893
0.000407699
0.000420422
0.000429838
0.000435256
0.000436489
0.000434197
0.000429838
0.000425074
0.00041987
0.000407865
0.00036883
0.000313448
0.000244377
0.000161801
7.23164e-05
1.27757e-05
3.04624e-06
7.67504e-06
6.74268e-06
1.63375e-05
2.2997e-05
3.50894e-05
6.13384e-05
0.000107092
0.000153101
0.000174878
0.000192968
0.00021493
0.000229426
0.000245487
0.000265943
0.000290872
0.000318284
0.000344391
0.000366388
0.000383276
0.000397411
0.000408541
0.000415766
0.000418659
0.000417714
0.000414351
0.000410373
0.00040611
0.000395687
0.000358983
0.000304883
0.000237037
0.000155809
6.82925e-05
1.16442e-05
2.86591e-06
7.5607e-06
6.63438e-06
1.53712e-05
2.1247e-05
3.21035e-05
5.80851e-05
0.000104322
0.000135955
0.000154008
0.000170248
0.000192943
0.000219816
0.000239063
0.000254646
0.000273549
0.000296693
0.000321216
0.000343275
0.00036046
0.000375389
0.000387764
0.000396466
0.000400794
0.000400949
0.000398065
0.000393789
0.000388912
0.00037979
0.000351431
0.000300219
0.000235079
0.000156056
6.95478e-05
1.21703e-05
2.92673e-06
7.41678e-06
6.41156e-06
1.41918e-05
1.90311e-05
2.81613e-05
5.1661e-05
9.18541e-05
0.000115469
0.000131237
0.000146444
0.000168288
0.000194979
0.000224667
0.000246394
0.000260777
0.000277871
0.000298766
0.000319883
0.000336882
0.00035244
0.000366078
0.000376381
0.000382332
0.00038387
0.00038199
0.000378429
0.000374333
0.000366508
0.000340006
0.000290094
0.00022632
0.00014893
6.48197e-05
1.08631e-05
2.71737e-06
7.26567e-06
6.33718e-06
1.36961e-05
1.79182e-05
2.58352e-05
4.781e-05
7.80964e-05
0.000100644
0.00011517
0.000129272
0.000149915
0.000175828
0.000205234
0.000236035
0.000256351
0.00026902
0.000284354
0.000302112
0.000317409
0.000332651
0.000346874
0.000358254
0.000365461
0.000368138
0.000366925
0.000363189
0.000358254
0.000351215
0.000333227
0.000286217
0.000225197
0.000150022
6.67483e-05
1.15684e-05
2.79107e-06
7.14411e-06
6.14657e-06
1.29405e-05
1.65469e-05
2.25146e-05
3.97571e-05
5.97167e-05
8.22037e-05
9.77477e-05
0.000110351
0.000129324
0.000153905
0.000182624
0.000213356
0.000244171
0.000262003
0.000272667
0.000285467
0.000297553
0.000311616
0.000326066
0.000338443
0.000346961
0.000350934
0.000350793
0.000347893
0.000343816
0.000337845
0.000320203
0.00027434
0.000214626
0.000141243
6.08984e-05
9.98391e-06
2.54265e-06
7.06046e-06
6.1139e-06
1.28884e-05
1.6528e-05
2.14468e-05
3.44849e-05
4.97734e-05
7.11239e-05
8.83608e-05
0.000100674
0.000117872
0.000140574
0.000167926
0.000197949
0.000228633
0.000258309
0.000271824
0.000279217
0.000285862
0.000297107
0.000310556
0.000323013
0.000332183
0.000337009
0.000337563
0.000334791
0.000329971
0.0003232
0.000309542
0.000271692
0.000215047
0.000143974
6.40716e-05
1.09879e-05
2.64741e-06
7.0258e-06
5.90727e-06
1.24014e-05
1.63147e-05
2.06926e-05
2.90505e-05
3.8862e-05
5.52605e-05
7.32474e-05
8.69744e-05
0.000101782
0.000121806
0.000147128
0.000176142
0.000206723
0.000236949
0.000265287
0.000274563
0.00027486
0.000281266
0.000292377
0.000304266
0.00031385
0.000319518
0.000321029
0.000319258
0.000315628
0.000310345
0.000297726
0.000257895
0.000202185
0.00013285
5.65769e-05
9.0404e-06
2.34614e-06
6.98357e-06
5.8112e-06
1.23589e-05
1.67351e-05
2.14735e-05
2.74005e-05
3.5465e-05
4.61934e-05
6.31386e-05
8.03714e-05
9.49429e-05
0.00011291
0.000135602
0.000162641
0.000192305
0.000222556
0.000251592
0.000277969
0.000276224
0.00027585
0.000282601
0.000292505
0.000301562
0.000307437
0.00030931
0.000307465
0.000302811
0.000295895
0.000284305
0.000256804
0.000204587
0.000137757
6.1306e-05
1.03464e-05
2.48405e-06
6.91602e-06
5.53824e-06
1.174e-05
1.62559e-05
2.18486e-05
2.64645e-05
3.43463e-05
3.79988e-05
4.63717e-05
6.02355e-05
7.5888e-05
9.15872e-05
0.000111214
0.00013571
0.000164229
0.000194784
0.000225221
0.000253688
0.000274799
0.000270527
0.000270463
0.00027624
0.000283755
0.000289567
0.000292042
0.000291177
0.000288032
0.000283258
0.000273116
0.000241615
0.000189783
0.000124368
5.22631e-05
8.14547e-06
2.1312e-06
6.75858e-06
5.48464e-06
1.19358e-05
1.6384e-05
2.26136e-05
2.8494e-05
3.45725e-05
4.33902e-05
4.62394e-05
5.29342e-05
6.50828e-05
8.10046e-05
9.8753e-05
0.000120011
0.000145475
0.00017442
0.000204959
0.000234898
0.000262287
0.000276051
0.000270872
0.000270476
0.000274688
0.000279362
0.000281658
0.000280579
0.000276306
0.000269247
0.000258547
0.000238789
0.000192474
0.000130044
5.7484e-05
9.41683e-06
2.26902e-06
6.56348e-06
5.39972e-06
1.21475e-05
1.62803e-05
2.31574e-05
3.14853e-05
3.89827e-05
4.45397e-05
4.96726e-05
5.36947e-05
5.47881e-05
5.96102e-05
7.00421e-05
8.58001e-05
0.000106957
0.000133273
0.000163451
0.000195249
0.000226183
0.000254007
0.000269098
0.000263443
0.000261542
0.000263536
0.000265452
0.000264936
0.000261801
0.000256814
0.000248707
0.00022733
0.000179721
0.000118305
4.9783e-05
7.65177e-06
1.93209e-06
6.33414e-06
5.56521e-06
1.35969e-05
1.82271e-05
2.51055e-05
3.62356e-05
5.03832e-05
5.97424e-05
6.19209e-05
6.17742e-05
6.41524e-05
7.33846e-05
7.66092e-05
8.45646e-05
9.88676e-05
0.000118348
0.000142551
0.000170683
0.000200881
0.000230515
0.000256952
0.000271241
0.000263367
0.000258873
0.000257906
0.000256532
0.000252647
0.000245847
0.000235462
0.000217283
0.000177901
0.000119384
5.13315e-05
7.96309e-06
1.99635e-06
6.16013e-06
5.50278e-06
1.39135e-05
2.03983e-05
2.79702e-05
3.87586e-05
5.45614e-05
6.71997e-05
7.74846e-05
8.38112e-05
7.96875e-05
7.49416e-05
7.75665e-05
8.35425e-05
8.2412e-05
8.77933e-05
0.000101485
0.000123216
0.000151129
0.000182146
0.000212883
0.000240283
0.000261374
0.000253986
0.000246983
0.000243405
0.00023988
0.000234587
0.000226986
0.000213048
0.000175464
0.000119043
5.22908e-05
8.02956e-06
1.81458e-06
5.9176e-06
5.52958e-06
1.5058e-05
2.34747e-05
3.44221e-05
4.67997e-05
5.47247e-05
6.49073e-05
7.67075e-05
8.73789e-05
9.55239e-05
9.27238e-05
8.75121e-05
9.41203e-05
0.000108539
0.00011249
0.00012171
0.000135939
0.000154841
0.000177817
0.000203112
0.000227972
0.000249118
0.000262583
0.000249995
0.000239732
0.000233121
0.000226637
0.000217381
0.000200174
0.000161283
0.000105456
4.23746e-05
6.07567e-06
1.70971e-06
5.65404e-06
5.21963e-06
1.41653e-05
2.35977e-05
3.68688e-05
4.8564e-05
5.62102e-05
6.38475e-05
7.26989e-05
8.23338e-05
9.14667e-05
9.89619e-05
0.000103119
0.000102238
0.000103891
0.000100895
0.000100216
0.000104873
0.000115558
0.000132794
0.000155744
0.000181608
0.000206862
0.000227884
0.000230753
0.000222646
0.000215608
0.000209106
0.000201023
0.000189763
0.000169726
0.000120524
5.58854e-05
8.43455e-06
1.69404e-06
5.24214e-06
5.32437e-06
1.4971e-05
2.46237e-05
3.9367e-05
5.32049e-05
6.30209e-05
7.15679e-05
7.92884e-05
8.66268e-05
9.37686e-05
0.000100491
0.000106389
0.000111399
0.000116099
0.000121593
0.000128834
0.000138551
0.000151409
0.000167465
0.000185862
0.000205021
0.00022265
0.000235832
0.000235102
0.000224691
0.000216368
0.000210443
0.000203863
0.000188736
0.000149725
9.72115e-05
3.86027e-05
5.5474e-06
1.50973e-06
4.93963e-06
5.02518e-06
1.3822e-05
2.27654e-05
3.40519e-05
4.5785e-05
5.38672e-05
6.13782e-05
6.83268e-05
7.44808e-05
7.97884e-05
8.43177e-05
8.77767e-05
8.97363e-05
9.0168e-05
8.9991e-05
9.10366e-05
9.50145e-05
0.000102903
0.000115607
0.000133152
0.000153912
0.000175226
0.000194093
0.000196575
0.000190838
0.000184378
0.0001776
0.000168745
0.000156158
0.000138019
0.00010693
4.97155e-05
7.10046e-06
1.45597e-06
4.6335e-06
5.48631e-06
1.61591e-05
2.83053e-05
3.96734e-05
4.96521e-05
5.59893e-05
6.11506e-05
6.56094e-05
6.95261e-05
7.32201e-05
7.71539e-05
8.16262e-05
8.67866e-05
9.26538e-05
9.93215e-05
0.000107163
0.000116875
0.000129299
0.000144709
0.000162455
0.000181179
0.000198982
0.000212839
0.000210058
0.000204901
0.000200449
0.000196807
0.000192557
0.000181534
0.000147251
9.83017e-05
4.11591e-05
6.04841e-06
1.38616e-06
4.41524e-06
5.86427e-06
1.76201e-05
3.37162e-05
4.59055e-05
5.44615e-05
6.01707e-05
6.42026e-05
6.7954e-05
7.2268e-05
7.68121e-05
7.84492e-05
7.97779e-05
8.07891e-05
8.13444e-05
8.1282e-05
8.06697e-05
8.01529e-05
8.11377e-05
8.57199e-05
9.63174e-05
0.000113551
0.000134468
0.000154966
0.000165125
0.000161477
0.000154611
0.000146058
0.000134995
0.000119507
9.78228e-05
6.89437e-05
2.73096e-05
3.26314e-06
1.13379e-06
4.33879e-06
6.71485e-06
1.94224e-05
3.70735e-05
5.26752e-05
6.38029e-05
7.08088e-05
7.51459e-05
7.81469e-05
8.01943e-05
8.15297e-05
8.22459e-05
8.24475e-05
8.23128e-05
8.2155e-05
8.24626e-05
8.38625e-05
8.69264e-05
9.18696e-05
8.9402e-05
9.01608e-05
0.000104492
0.000128799
0.000157015
0.000183594
0.000204187
0.000215122
0.000215982
0.000208839
0.000194669
0.000171905
0.00013416
6.45997e-05
8.92279e-06
1.69337e-06
4.29838e-06
9.96418e-06
3.24877e-05
5.51217e-05
6.82066e-05
7.37568e-05
7.60993e-05
7.79521e-05
8.02657e-05
8.29064e-05
8.57054e-05
8.42707e-05
8.22807e-05
8.08695e-05
8.05294e-05
8.19053e-05
8.59133e-05
9.3147e-05
9.6614e-05
9.79736e-05
0.000101222
0.000106125
0.00011296
0.000121052
0.000128309
0.000131479
0.00012842
0.000119557
0.000104634
8.39864e-05
5.87757e-05
3.5413e-05
1.71408e-05
3.28726e-06
1.13198e-06
4.33362e-06
1.18879e-05
3.34206e-05
5.07606e-05
5.83269e-05
6.09315e-05
6.25826e-05
6.4553e-05
6.6627e-05
6.83334e-05
6.9717e-05
7.09004e-05
7.20815e-05
7.34675e-05
7.51871e-05
7.71795e-05
7.93047e-05
8.1988e-05
8.77183e-05
0.000102738
0.000135353
0.000190575
0.000264939
0.00034457
0.000416692
0.000414947
0.000380625
0.00032264
0.000256655
0.000199002
0.000151199
0.000107908
5.5044e-05
4.77652e-06
1.19569e-06
3.59913e-06
3.59331e-05
4.92127e-05
6.9538e-05
8.50881e-05
7.91977e-05
7.87893e-05
8.0495e-05
8.25587e-05
8.46178e-05
8.64819e-05
8.81314e-05
8.95744e-05
9.07996e-05
9.18439e-05
9.27657e-05
9.36148e-05
9.4421e-05
9.51994e-05
9.59719e-05
9.67232e-05
9.72392e-05
9.72234e-05
9.60357e-05
9.31661e-05
8.82757e-05
8.1315e-05
7.21601e-05
6.06891e-05
4.68118e-05
3.09392e-05
1.54857e-05
4.50126e-06
4.51996e-07
8.31477e-08
6.2368e-06
3.19575e-05
1.39759e-05
1.65209e-05
2.18049e-05
2.32832e-05
2.49995e-05
2.70045e-05
2.93078e-05
3.17235e-05
3.41779e-05
3.65933e-05
3.88975e-05
4.10249e-05
4.2944e-05
4.46349e-05
4.60765e-05
4.72365e-05
4.80343e-05
4.83424e-05
4.81496e-05
4.72805e-05
4.59446e-05
4.41147e-05
4.16876e-05
3.87156e-05
3.52722e-05
3.14489e-05
2.73199e-05
2.28554e-05
1.78545e-05
1.21743e-05
6.88295e-06
5.97943e-06
2.34707e-07
5.70338e-09
6.53162e-07
1.08715e-06
1.77751e-06
2.38129e-06
2.74402e-06
2.76911e-06
2.42538e-06
1.88698e-06
1.36772e-06
1.03954e-06
1.80302e-06
2.3477e-06
2.53587e-06
3.99054e-06
8.18277e-06
8.24939e-06
7.78552e-06
7.52579e-06
7.50071e-06
7.71468e-06
8.20824e-06
8.97638e-06
9.85972e-06
1.07022e-05
1.14408e-05
1.20583e-05
1.2537e-05
1.28627e-05
1.30367e-05
1.30471e-05
1.28092e-05
1.20281e-05
2.18057e-06
9.55848e-09
3.46774e-08
1.29147e-07
6.92713e-07
2.12898e-06
4.14342e-06
6.19098e-06
7.76833e-06
8.61869e-06
8.74009e-06
8.15604e-06
7.15188e-06
5.97959e-06
4.9443e-06
4.21598e-06
3.55934e-06
3.10381e-06
3.02466e-06
2.963e-06
3.92447e-06
4.98641e-06
5.49075e-06
9.94762e-06
1.99143e-05
3.18908e-05
4.35558e-05
5.44289e-05
6.40478e-05
7.16499e-05
7.69705e-05
7.97418e-05
7.9196e-05
6.96343e-05
2.5625e-05
7.77504e-06
9.25108e-07
4.82482e-07
7.40567e-07
4.12173e-06
1.23421e-05
2.25477e-05
3.22527e-05
3.91891e-05
4.23278e-05
4.1893e-05
3.85266e-05
3.34864e-05
2.79477e-05
2.28828e-05
1.87672e-05
1.53192e-05
1.21555e-05
9.07298e-06
6.14261e-06
3.6036e-06
1.19873e-06
7.94269e-07
4.63081e-06
1.1438e-05
1.86105e-05
2.23084e-05
2.22497e-05
2.25022e-05
2.4682e-05
2.9957e-05
3.29899e-05
3.70995e-05
3.14277e-05
1.48192e-05
6.77134e-06
1.61688e-06
9.11834e-07
2.52372e-06
1.88268e-05
3.17821e-05
4.41037e-05
5.29115e-05
5.78313e-05
5.98461e-05
5.72255e-05
4.80039e-05
3.63138e-05
2.37368e-05
1.23038e-05
4.27382e-06
7.39904e-07
1.25011e-06
3.60669e-06
6.42117e-06
9.58126e-06
1.32623e-05
1.78708e-05
2.32852e-05
2.88949e-05
3.42941e-05
3.93859e-05
4.43467e-05
4.9348e-05
5.45279e-05
5.95955e-05
6.30459e-05
5.99818e-05
3.86767e-05
1.58856e-05
6.22567e-06
2.27704e-06
7.79062e-07
1.18785e-06
6.28144e-06
2.08662e-05
3.16985e-05
4.1193e-05
4.90987e-05
5.51533e-05
5.94048e-05
6.27611e-05
6.61422e-05
6.33822e-05
5.74087e-05
5.04435e-05
4.35307e-05
3.76939e-05
3.38216e-05
3.25927e-05
3.43355e-05
3.87555e-05
4.50071e-05
5.20739e-05
5.91168e-05
6.56006e-05
7.13164e-05
7.63728e-05
8.09005e-05
8.46139e-05
8.61287e-05
8.18206e-05
6.65402e-05
3.4129e-05
1.66284e-05
6.60076e-06
2.84679e-06
1.10157e-06
2.28255e-06
1.46824e-05
3.513e-05
4.90063e-05
6.00931e-05
6.99705e-05
7.90174e-05
8.37062e-05
8.45686e-05
8.32969e-05
8.02161e-05
7.56877e-05
7.01667e-05
6.42193e-05
5.85093e-05
5.37732e-05
5.07586e-05
5.00778e-05
5.19458e-05
5.59606e-05
6.12628e-05
6.43826e-05
7.07311e-05
7.89532e-05
8.45522e-05
8.92297e-05
9.12656e-05
8.72362e-05
7.34578e-05
5.46945e-05
2.92282e-05
1.69509e-05
6.8002e-06
3.34287e-06
1.21589e-06
2.83204e-06
1.74676e-05
3.74472e-05
5.12238e-05
6.24074e-05
7.20225e-05
8.10095e-05
9.01745e-05
9.79246e-05
9.87346e-05
9.76122e-05
9.48742e-05
9.08869e-05
8.60703e-05
8.09038e-05
7.59256e-05
7.16941e-05
6.87326e-05
6.73952e-05
6.7727e-05
6.94895e-05
7.23574e-05
7.6095e-05
8.03816e-05
8.44597e-05
8.67444e-05
8.42257e-05
7.37658e-05
5.90541e-05
4.42619e-05
2.73979e-05
1.78892e-05
7.23352e-06
3.74006e-06
1.31629e-06
2.80192e-06
1.69915e-05
4.02792e-05
5.68947e-05
6.95959e-05
8.02119e-05
8.98772e-05
9.94225e-05
0.000106439
0.000107981
0.000107729
0.000106017
0.000103185
9.95848e-05
9.55868e-05
9.15734e-05
8.79034e-05
8.49487e-05
8.29925e-05
8.21419e-05
8.23714e-05
8.35597e-05
8.54284e-05
8.7381e-05
8.82757e-05
8.59648e-05
7.69725e-05
6.24569e-05
5.075e-05
3.80406e-05
2.66925e-05
1.87619e-05
7.44281e-06
4.09129e-06
1.47077e-06
3.72722e-06
2.25582e-05
4.81522e-05
6.51589e-05
7.86343e-05
9.00547e-05
0.00010036
0.000110703
0.000120802
0.000124155
0.000124439
0.000123058
0.000120362
0.000116739
0.000112567
0.000108203
0.000104014
0.000100423
9.76899e-05
9.59056e-05
9.50402e-05
9.48796e-05
9.49634e-05
9.4462e-05
9.18978e-05
8.49071e-05
7.14664e-05
5.62688e-05
4.67983e-05
3.48444e-05
2.68054e-05
1.95843e-05
7.55628e-06
4.41067e-06
1.51909e-06
3.53448e-06
2.11758e-05
4.83818e-05
6.68804e-05
8.16263e-05
9.40944e-05
0.000105131
0.000115914
0.00012696
0.000134213
0.000135983
0.000135997
0.000134563
0.000131804
0.000127985
0.000123632
0.000119168
0.000115185
0.000112172
0.000110074
0.000108585
0.000107355
0.000105814
0.000102922
9.68586e-05
8.5025e-05
6.83026e-05
5.39394e-05
4.57198e-05
3.37635e-05
2.75611e-05
2.05617e-05
7.71291e-06
4.69974e-06
1.63613e-06
4.24251e-06
2.50503e-05
5.51636e-05
7.59018e-05
9.17006e-05
0.000104755
0.000115977
0.000126519
0.000137743
0.000148915
0.000151588
0.00015226
0.000151411
0.000148818
0.000144798
0.000140029
0.000135
0.000130391
0.000126687
0.000124198
0.000122326
0.000120236
0.000117193
0.000111938
0.000102445
8.62649e-05
6.7086e-05
5.33872e-05
4.34019e-05
3.36275e-05
2.86356e-05
2.1534e-05
7.82204e-06
4.97544e-06
1.70458e-06
4.3112e-06
2.53309e-05
5.64796e-05
7.84576e-05
9.59656e-05
0.000110769
0.000123449
0.000134869
0.000146375
0.000158339
0.000165858
0.00016777
0.000168069
0.000166466
0.000162996
0.000158304
0.000152972
0.000147829
0.00014343
0.000140188
0.000137667
0.000134668
0.000130108
0.000122536
0.000109849
8.99512e-05
6.84611e-05
5.44876e-05
4.198e-05
3.41709e-05
2.98326e-05
2.25288e-05
7.97237e-06
5.23226e-06
1.78068e-06
4.73768e-06
2.74094e-05
6.0634e-05
8.6383e-05
0.000105251
0.000120612
0.000133683
0.000145263
0.000156559
0.000168875
0.00018124
0.000185042
0.000186338
0.000185943
0.0001835
0.000179353
0.000174095
0.000168735
0.000163919
0.000160045
0.000156557
0.000152108
0.000145463
0.000135037
0.000118807
9.52706e-05
7.17009e-05
5.73151e-05
4.22358e-05
3.54583e-05
3.12925e-05
2.35865e-05
8.1209e-06
5.47831e-06
1.86957e-06
4.99853e-06
2.87316e-05
6.36701e-05
9.14175e-05
0.000112051
0.000129127
0.00014377
0.000156538
0.000168364
0.000180617
0.00019364
0.000202665
0.000205119
0.000206027
0.000205135
0.000202261
0.000197721
0.000192723
0.000188022
0.000183831
0.000179279
0.000173101
0.000164071
0.000150546
0.000130702
0.00010367
7.77035e-05
5.88125e-05
4.35083e-05
3.72588e-05
3.29283e-05
2.47227e-05
8.31837e-06
5.711e-06
1.92721e-06
5.30869e-06
3.0228e-05
6.70834e-05
9.92886e-05
0.000121751
0.000139705
0.000155148
0.000168777
0.000181254
0.000193723
0.000207315
0.000220773
0.00022563
0.000227577
0.000228031
0.000226829
0.000223642
0.000219609
0.000215514
0.000210912
0.000204961
0.000196739
0.000185013
0.000168186
0.000144757
0.000114536
8.61072e-05
6.05855e-05
4.5751e-05
3.97197e-05
3.4904e-05
2.59724e-05
8.5211e-06
5.9329e-06
2.02504e-06
5.69e-06
3.20486e-05
7.09959e-05
0.000106502
0.000131197
0.000150607
0.000167222
0.00018188
0.000195145
0.000207944
0.000221513
0.000235933
0.000246406
0.000249662
0.000251298
0.000251439
0.000249932
0.000247307
0.00024376
0.000238781
0.000231791
0.000221925
0.000207949
0.000188404
0.00016215
0.000129534
9.49872e-05
6.43073e-05
4.9047e-05
4.27012e-05
3.71482e-05
2.73823e-05
8.79361e-06
6.14235e-06
2.07388e-06
5.95309e-06
3.33876e-05
7.42543e-05
0.000112281
0.000142584
0.000164227
0.000181837
0.000197305
0.000211361
0.000224674
0.000238285
0.000253061
0.000267478
0.000273595
0.000276341
0.000277456
0.000276981
0.000275093
0.000271714
0.000266412
0.000258573
0.000247288
0.000231361
0.00020952
0.000181
0.000146609
0.000100902
6.92704e-05
5.35719e-05
4.63389e-05
3.96959e-05
2.89301e-05
9.07733e-06
6.34058e-06
2.1738e-06
6.42167e-06
3.5465e-05
7.84374e-05
0.000118688
0.000153491
0.000177432
0.000196293
0.000212577
0.000227327
0.000241174
0.000254932
0.000269613
0.000285173
0.00029745
0.000301599
0.000303939
0.000304471
0.000303252
0.000300124
0.000294621
0.0002861
0.00027366
0.000256209
0.000232714
0.000202752
0.000156345
0.000107951
7.58526e-05
5.91673e-05
5.05908e-05
4.26247e-05
3.07227e-05
9.44472e-06
6.52702e-06
2.21981e-06
6.67622e-06
3.6803e-05
8.18152e-05
0.000124719
0.000162462
0.000193545
0.000214793
0.000231709
0.000246766
0.000260916
0.000274768
0.00028912
0.000304553
0.000319639
0.000327808
0.000331215
0.00033262
0.00033198
0.000329071
0.00032341
0.000314341
0.000301007
0.000282437
0.000257803
0.000221522
0.000165626
0.000116332
8.38122e-05
6.58617e-05
5.5503e-05
4.58892e-05
3.27204e-05
9.85261e-06
6.70226e-06
2.32443e-06
7.22047e-06
3.90754e-05
8.61691e-05
0.000131169
0.00017107
0.000205458
0.000231102
0.000249777
0.000265592
0.00028022
0.000294361
0.000308584
0.000323551
0.00033934
0.000353556
0.000358664
0.000361123
0.000361251
0.00035877
0.000353181
0.00034383
0.000329907
0.000310548
0.000285079
0.00023456
0.000175956
0.00012673
9.34137e-05
7.36094e-05
6.09798e-05
4.94897e-05
3.49635e-05
1.03465e-05
6.86593e-06
2.37615e-06
7.52653e-06
4.06425e-05
8.99596e-05
0.000137685
0.000180453
0.000217721
0.000249593
0.000272348
0.000288588
0.000302822
0.00031666
0.000330576
0.0003449
0.000359943
0.000375046
0.000386432
0.000389837
0.000390693
0.000388665
0.000383223
0.000373698
0.0003593
0.000339221
0.000302837
0.000246853
0.000188088
0.000139034
0.000104451
8.22022e-05
6.69549e-05
5.34106e-05
3.7444e-05
1.09089e-05
7.01781e-06
2.48684e-06
8.14462e-06
4.31487e-05
9.46538e-05
0.000144539
0.000189461
0.000228942
0.00026313
0.000291395
0.000310094
0.000325057
0.000338987
0.000352849
0.000366872
0.000381139
0.000395591
0.000409221
0.000418431
0.000419964
0.000418316
0.000412911
0.000403043
0.000387904
0.000363644
0.000317372
0.000259458
0.00020143
0.000152468
0.000116314
9.13995e-05
7.34063e-05
5.76806e-05
4.02128e-05
1.15873e-05
7.15911e-06
2.55306e-06
8.55168e-06
4.51054e-05
9.90868e-05
0.00015179
0.000199502
0.000241621
0.000278279
0.000309813
0.000334253
0.000350016
0.000363266
0.00037647
0.000390102
0.000403929
0.000417588
0.000430584
0.000441767
0.000448239
0.000446714
0.000441079
0.000430582
0.000414397
0.000379853
0.000330175
0.000272462
0.000215437
0.000166401
0.000128601
0.000101048
8.02899e-05
6.23088e-05
4.32855e-05
1.23839e-05
7.2887e-06
2.66555e-06
9.18737e-06
4.76533e-05
0.000103984
0.000159097
0.000209199
0.000253675
0.000292646
0.000326444
0.000355465
0.000373643
0.000387214
0.000400068
0.000413317
0.000426868
0.000440172
0.000452511
0.000462992
0.000470379
0.000472839
0.000467622
0.000455914
0.000431292
0.00039291
0.000342605
0.000285765
0.000229647
0.000180421
0.000141031
0.000110959
8.7495e-05
6.72683e-05
4.67205e-05
1.33648e-05
7.4061e-06
2.74752e-06
9.67996e-06
4.98611e-05
0.000108799
0.000166794
0.000219687
0.00026674
0.000308058
0.000343988
0.000374937
0.000398544
0.000412721
0.000424617
0.000436931
0.000449921
0.000462906
0.000474961
0.000485035
0.000491825
0.000493627
0.000488239
0.00047309
0.000445872
0.000405912
0.000355394
0.000299318
0.00024391
0.000194418
0.000153525
0.000121087
9.50443e-05
7.2654e-05
5.05917e-05
1.43647e-05
7.5102e-06
2.85571e-06
1.03014e-05
5.23325e-05
0.000113692
0.000174288
0.00022979
0.000279369
0.000323074
0.00036122
0.000394201
0.000422443
0.000437791
0.000449157
0.000460544
0.000472769
0.000485217
0.000496798
0.000506265
0.000512161
0.000512645
0.000505456
0.000488198
0.000459131
0.000418232
0.000367904
0.000312684
0.000257935
0.000208188
0.000165919
0.000131296
0.000102839
7.83895e-05
5.4792e-05
1.52762e-05
7.59916e-06
2.95249e-06
1.09018e-05
5.48198e-05
0.0001188
0.000182207
0.000240424
0.000292522
0.000338523
0.000378741
0.000413573
0.00044342
0.000463191
0.00047437
0.00048442
0.000495511
0.000507189
0.000518131
0.000526813
0.000531576
0.000530505
0.000521433
0.000502288
0.000471812
0.000430381
0.000380417
0.000326006
0.000271813
0.000221794
0.000178253
0.000141614
0.000110905
8.45088e-05
5.93584e-05
1.61626e-05
7.67587e-06
3.0602e-06
1.15898e-05
5.75093e-05
0.000124046
0.00019017
0.000251071
0.000305716
0.000354066
0.000396398
0.00043309
0.000464538
0.000487982
0.000499329
0.000508174
0.000517947
0.000528593
0.000538682
0.000546426
0.000549957
0.000547308
0.000536461
0.000515676
0.000484094
0.000442351
0.000392795
0.000339096
0.000285348
0.000235051
0.000190365
0.000151911
0.000119149
9.09333e-05
6.42274e-05
1.70235e-05
7.74007e-06
3.17481e-06
1.23374e-05
6.03978e-05
0.00012961
0.000198474
0.000261994
0.000319067
0.000369629
0.000413941
0.000452375
0.000485319
0.000511977
0.000523515
0.000531313
0.000539824
0.000549362
0.000558465
0.000565159
0.000567415
0.000563243
0.000550789
0.000528619
0.000496195
0.000454311
0.000405192
0.000352126
0.000298727
0.000248125
0.000202361
0.000162225
0.000127555
9.76642e-05
6.94677e-05
1.78929e-05
7.79306e-06
3.28842e-06
1.30891e-05
6.32699e-05
0.000135159
0.000206797
0.00027299
0.000332547
0.000385354
0.000431651
0.000471793
0.000506162
0.00053514
0.000546803
0.000553617
0.000560952
0.000569389
0.000577449
0.000583029
0.000583994
0.000578371
0.00056447
0.000541126
0.000508052
0.000466138
0.000417466
0.000364972
0.000311851
0.000260912
0.000214109
0.000172416
0.000136061
0.000104648
7.42413e-05
1.87537e-05
7.83356e-06
3.41929e-06
1.39204e-05
6.63234e-05
0.000140892
0.000215211
0.000283934
0.000345819
0.00040073
0.00044889
0.00049064
0.00052635
0.000556376
0.000568689
0.000574733
0.000581093
0.000588576
0.000595659
0.000600148
0.000599865
0.000592896
0.000577717
0.000553395
0.000519836
0.000477969
0.000429722
0.000377718
0.000324796
0.000273511
0.000225778
0.000182766
0.000144981
0.000111869
7.75436e-05
1.95035e-05
7.8598e-06
3.54301e-06
1.47307e-05
6.93334e-05
0.000146634
0.000223711
0.000295021
0.00035925
0.000416233
0.000466184
0.000509441
0.000546371
0.000577324
0.00058937
0.00059463
0.000600156
0.000606823
0.000613028
0.000616499
0.000615048
0.000606846
0.000590538
0.00056539
0.000531451
0.00048966
0.000441791
0.000390197
0.000337434
0.000285861
0.000237369
0.000193263
0.000154191
0.000119247
8.0605e-05
2.0147e-05
7.87167e-06
3.68452e-06
1.56103e-05
7.24526e-05
0.000152406
0.000232097
0.000305841
0.000372273
0.000431209
0.000482849
0.000527524
0.000565595
0.000597415
0.00060821
0.000612814
0.000617809
0.000623902
0.000629399
0.00063198
0.000629486
0.000620199
0.000602933
0.000577123
0.000542925
0.000501261
0.000453757
0.000402532
0.000349905
0.000298086
0.00024895
0.000203904
0.000163643
0.000126799
8.35548e-05
2.07312e-05
7.87164e-06
3.81746e-06
1.64491e-05
7.54731e-05
0.000158109
0.000240466
0.000316667
0.000385281
0.000446104
0.000499337
0.000545312
0.000584393
0.000616095
0.000625837
0.000629796
0.000634322
0.000639965
0.000644878
0.00064668
0.00064325
0.000632993
0.000614886
0.00058852
0.000554132
0.000512621
0.000465477
0.000414613
0.000362141
0.000310142
0.000260474
0.000214614
0.000173259
0.000134482
8.63597e-05
2.12515e-05
7.8622e-06
3.96422e-06
1.73353e-05
7.85404e-05
0.000163752
0.000248628
0.000327145
0.00039782
0.000460429
0.000515164
0.000562358
0.000602371
0.000632969
0.00064182
0.000645303
0.000649589
0.00065499
0.000659496
0.000660673
0.000656454
0.000645377
0.000626574
0.000599768
0.00056526
0.00052392
0.000477115
0.000426581
0.000374257
0.000322109
0.000271983
0.000225417
0.000183074
0.000142378
8.9162e-05
2.1764e-05
7.84563e-06
4.10294e-06
1.81648e-05
8.14527e-05
0.00016923
0.000256642
0.000337471
0.000410166
0.000474487
0.000530628
0.000578929
0.000619761
0.00064885
0.000656616
0.000659636
0.000663802
0.000669104
0.000673331
0.000674001
0.000669117
0.000657349
0.000637975
0.000610831
0.000576268
0.000535121
0.00048865
0.000438433
0.000386252
0.000333973
0.000283435
0.000236243
0.000193014
0.000150441
9.19165e-05
2.22631e-05
7.82471e-06
4.25056e-06
1.90165e-05
8.43543e-05
0.000174588
0.00026441
0.000347435
0.000422051
0.000487997
0.000545463
0.000594795
0.000636369
0.000663418
0.00067004
0.000672737
0.000676963
0.00068232
0.00068639
0.000686659
0.000681219
0.000668878
0.000649045
0.000621648
0.000587077
0.000546133
0.00049998
0.000450063
0.000398028
0.000345653
0.000294774
0.000247054
0.000203041
0.000158603
9.4526e-05
2.27167e-05
7.79522e-06
4.39301e-06
1.98346e-05
8.71657e-05
0.000179834
0.000272041
0.000357218
0.000433689
0.000501173
0.000559868
0.000610129
0.000652347
0.000676807
0.000682211
0.000684698
0.000689119
0.000694643
0.000698655
0.000698626
0.000692743
0.000679948
0.000659775
0.000632228
0.000597714
0.000556999
0.000511162
0.000461536
0.000409653
0.000357216
0.000306069
0.000257947
0.000213309
0.000167057
9.71139e-05
2.31652e-05
7.75795e-06
4.53878e-06
2.06436e-05
8.98912e-05
0.000184881
0.000279363
0.000366595
0.000444837
0.000513788
0.000573642
0.000624767
0.000667565
0.000688992
0.000693164
0.000695584
0.00070034
0.000706124
0.000710144
0.000709892
0.000703669
0.000690538
0.000670135
0.000642527
0.000608132
0.000567667
0.000522126
0.000472755
0.00042101
0.000368558
0.000317254
0.000268864
0.000223696
0.000175627
9.95787e-05
2.35806e-05
7.71466e-06
4.6819e-06
2.14461e-05
9.25846e-05
0.000189844
0.000286525
0.000375722
0.000455639
0.000525959
0.000586881
0.000638785
0.000682089
0.000700131
0.000703111
0.000705595
0.000710765
0.000716837
0.000720888
0.000720466
0.000713989
0.000700635
0.000680113
0.000652525
0.000618286
0.000578086
0.000532849
0.00048372
0.00043208
0.000379573
0.000328112
0.000279601
0.000234289
0.000184729
0.000102076
2.39931e-05
7.66656e-06
4.82438e-06
2.22553e-05
9.52509e-05
0.000194682
0.000293447
0.0003845
0.000465993
0.000537596
0.00059951
0.000652124
0.000695877
0.000710126
0.000712029
0.000714756
0.000720418
0.000726786
0.000730879
0.000730333
0.000723678
0.000710193
0.000689652
0.000662179
0.000628161
0.000588236
0.000543266
0.000494331
0.000442768
0.000390281
0.000338958
0.000290741
0.000244964
0.00019062
0.000104248
2.43634e-05
7.61475e-06
4.9628e-06
2.3018e-05
9.77449e-05
0.000199221
0.000299957
0.000392767
0.000475749
0.000548558
0.000611398
0.000664675
0.000708852
0.000719104
0.000720224
0.000723308
0.000729399
0.000735997
0.000740125
0.000739491
0.000732722
0.000719184
0.000698709
0.000671433
0.000637713
0.000598104
0.000553384
0.000504606
0.000453156
0.000400854
0.000349923
0.000302147
0.000255538
0.000195404
0.00010611
2.46764e-05
7.5585e-06
5.09773e-06
2.37592e-05
0.000100132
0.000203527
0.000306105
0.000400553
0.000484924
0.000558858
0.000622554
0.000676423
0.000718965
0.000727312
0.000728152
0.000731446
0.000737832
0.000744615
0.000748771
0.000748063
0.000741211
0.000727668
0.000707314
0.000680287
0.000646902
0.000607648
0.000563225
0.000514645
0.000463361
0.000411354
0.000360947
0.000313638
0.000266025
0.00019998
0.000107833
2.49588e-05
7.49853e-06
5.2283e-06
2.44473e-05
0.000102334
0.000207492
0.000311766
0.000407729
0.000493392
0.000568379
0.000632887
0.000687329
0.000727831
0.000735109
0.00073574
0.000739256
0.000745936
0.000752897
0.000757077
0.0007563
0.000749383
0.000735861
0.000715656
0.000688899
0.000655863
0.000616975
0.000572878
0.000524562
0.000473517
0.000421856
0.000372005
0.000325158
0.000276459
0.000204458
0.000109547
2.52505e-05
7.43706e-06
5.3536e-06
2.51087e-05
0.000104437
0.000211236
0.000317064
0.000414406
0.000501245
0.000577194
0.00064245
0.000697427
0.000736052
0.0007424
0.000742912
0.000746695
0.00075369
0.000760835
0.000765043
0.000764203
0.000757229
0.000743739
0.000723695
0.000697221
0.000664548
0.000626041
0.000582295
0.000534292
0.000483575
0.000432349
0.000383104
0.000336736
0.000286907
0.000208807
0.000111211
2.55307e-05
7.37271e-06
5.47461e-06
2.57442e-05
0.000106445
0.000214774
0.000322024
0.000420609
0.000508497
0.000585302
0.000651225
0.000706687
0.000743542
0.000749102
0.000749614
0.000753746
0.000761103
0.00076846
0.000772713
0.00077182
0.000764795
0.000751342
0.000731457
0.000705264
0.000672953
0.000634841
0.000591484
0.000543866
0.000493581
0.000442903
0.000394318
0.000348385
0.000297294
0.000212946
0.000112739
2.5766e-05
7.30265e-06
5.5903e-06
2.6403e-05
0.000108507
0.000218329
0.000326914
0.000426627
0.000515436
0.000592972
0.000659454
0.000715313
0.000750249
0.000755096
0.000755726
0.000760294
0.000768065
0.000775663
0.000779978
0.000779045
0.000771981
0.000758569
0.000738847
0.000712938
0.000681004
0.00064331
0.000600365
0.000553138
0.000503296
0.000453292
0.000405716
0.000360405
0.000306463
0.000217012
0.000114275
2.59983e-05
7.22715e-06
5.69952e-06
2.70471e-05
0.000110509
0.000221748
0.000331581
0.000432328
0.000521963
0.000600137
0.000667093
0.00072328
0.000756144
0.000760329
0.0007612
0.000766316
0.000774573
0.000782451
0.000786848
0.000785888
0.000778791
0.000765421
0.000745857
0.00072022
0.00068864
0.000651339
0.000608812
0.00056209
0.000513012
0.000464199
0.00041797
0.000372474
0.000312589
0.000220745
0.000115743
2.62389e-05
7.14951e-06
5.79963e-06
2.76443e-05
0.000112368
0.000224929
0.000335927
0.000437632
0.000528022
0.00060677
0.000674139
0.000730604
0.000761407
0.000764971
0.000766157
0.000771902
0.000780712
0.000788915
0.000793424
0.000792454
0.000785331
0.000771996
0.000752565
0.000727159
0.000695883
0.000658941
0.000616849
0.000570748
0.000522648
0.000475243
0.000430391
0.000384423
0.000318408
0.000224193
0.000117064
2.64539e-05
7.072e-06
5.89288e-06
2.8195e-05
0.00011408
0.000227849
0.000339905
0.000442478
0.000533547
0.000612804
0.000680536
0.00073724
0.000765928
0.000768936
0.00077054
0.000777009
0.000786441
0.000795016
0.000799672
0.000798721
0.000791591
0.000778294
0.000758977
0.000733763
0.000702746
0.000666131
0.000624488
0.000579076
0.000532064
0.000486169
0.000442723
0.000396194
0.00032392
0.000227407
0.000118253
2.66345e-05
6.99504e-06
5.97898e-06
2.86978e-05
0.000115656
0.000230544
0.000343576
0.000446941
0.000538619
0.000618321
0.000686359
0.000743253
0.00076963
0.000772132
0.000774276
0.000781575
0.000791699
0.000800694
0.000805536
0.000804643
0.000797537
0.000784294
0.000765087
0.000740043
0.000709257
0.000672947
0.000631747
0.000587039
0.00054114
0.000496783
0.000454773
0.000407706
0.000329169
0.000230484
0.000119411
2.68167e-05
6.92085e-06
6.06165e-06
2.91897e-05
0.000117192
0.000233143
0.00034708
0.000451159
0.000543368
0.000623439
0.000691713
0.000748735
0.00077243
0.000774481
0.000777325
0.000785572
0.000796453
0.000805907
0.000810977
0.000810191
0.000803158
0.000790003
0.000770921
0.000746045
0.000715478
0.000679467
0.00063871
0.000594703
0.000549886
0.000506997
0.000466364
0.000418736
0.000333993
0.000233292
0.00012046
2.69778e-05
6.84894e-06
6.13961e-06
2.96737e-05
0.000118708
0.000235693
0.00035049
0.000455226
0.0005479
0.000628271
0.000696711
0.000753794
0.000774437
0.000776081
0.000779769
0.000789061
0.000800732
0.000810659
0.000815984
0.000815347
0.000808432
0.0007954
0.000776463
0.000751765
0.00072142
0.000685702
0.000645373
0.000602066
0.000558419
0.000517174
0.000477542
0.000426345
0.000338284
0.000235769
0.000121348
2.70961e-05
6.77739e-06
6.21302e-06
3.01376e-05
0.00012016
0.000238129
0.000353735
0.000459075
0.000552163
0.000632783
0.00070134
0.000758438
0.00077564
0.000776961
0.000781652
0.000792057
0.000804515
0.000814905
0.000820499
0.000820047
0.000813294
0.000800428
0.000781668
0.000757161
0.00072703
0.000691598
0.000651754
0.000609343
0.000567165
0.000527605
0.000488101
0.000431577
0.00034205
0.000237953
0.00012214
2.72041e-05
6.70776e-06
6.28064e-06
3.05521e-05
0.000121477
0.000240361
0.00035672
0.000462621
0.000556083
0.000636917
0.000705558
0.000762645
0.000776048
0.000777207
0.000783048
0.000794567
0.000807768
0.000818604
0.000824486
0.000824258
0.000817714
0.000805056
0.000786505
0.000762205
0.000732307
0.000697215
0.000657973
0.000616618
0.000575996
0.000537975
0.000498245
0.000436393
0.000345429
0.000239868
0.000122809
2.72906e-05
6.64034e-06
6.34619e-06
3.09467e-05
0.000122729
0.000242477
0.000359538
0.000465948
0.000559732
0.000640722
0.000709387
0.000766192
0.000775615
0.000777044
0.000784017
0.000796502
0.000810357
0.000821618
0.000827801
0.000827829
0.000821535
0.000809129
0.00079082
0.000766758
0.000737134
0.000702458
0.000663938
0.000623772
0.000584775
0.00054823
0.000508082
0.000440802
0.000348406
0.00024144
0.00012326
2.73164e-05
6.572e-06
6.41008e-06
3.13378e-05
0.000123961
0.000244539
0.000362259
0.000469136
0.000563198
0.000644295
0.000712916
0.000765951
0.000774513
0.000776564
0.000784529
0.000797875
0.00081233
0.000823985
0.000830459
0.00083076
0.000824753
0.000812644
0.000794625
0.000770847
0.000741553
0.000707364
0.000669659
0.000630781
0.000593498
0.000558479
0.000517901
0.000445127
0.000351329
0.000243
0.000123734
2.73559e-05
6.50522e-06
6.47241e-06
3.16896e-05
0.000125067
0.000246411
0.000364751
0.00047207
0.000566398
0.000647593
0.000716156
0.00076511
0.000772843
0.000775598
0.000784585
0.000798762
0.000813766
0.00082577
0.000832517
0.000833095
0.000827404
0.000815633
0.000797953
0.000774511
0.000745599
0.000711956
0.000675128
0.000637599
0.000602074
0.000568616
0.00052763
0.000449369
0.00035425
0.000244621
0.000124291
2.7428e-05
6.44409e-06
6.53323e-06
3.19796e-05
0.000125985
0.000248002
0.000366906
0.000474642
0.000569231
0.00065053
0.000719046
0.000763802
0.000770738
0.000774226
0.000784203
0.000799137
0.000814602
0.000826882
0.000833852
0.000834692
0.000829326
0.000817928
0.000800638
0.000777592
0.000749121
0.000716071
0.000680144
0.000643993
0.000610326
0.000578448
0.000535733
0.000453269
0.000356882
0.000246008
0.000124687
2.74505e-05
6.38603e-06
6.59334e-06
3.22174e-05
0.000126729
0.000249304
0.000368688
0.000476796
0.000571634
0.000653047
0.000721537
0.000762168
0.000768374
0.000772578
0.000783471
0.000799059
0.000814875
0.000827332
0.000834449
0.000835499
0.000830438
0.000819421
0.000802548
0.000779935
0.000751939
0.000719533
0.00068467
0.000650244
0.000618683
0.000587493
0.000540041
0.000456638
0.000359137
0.00024712
0.000124904
2.74203e-05
6.32858e-06
6.6516e-06
3.23675e-05
0.00012721
0.0002502
0.000369971
0.000478408
0.00057349
0.000655042
0.000723551
0.000760415
0.000766025
0.000770904
0.000782598
0.000798714
0.000814773
0.000827317
0.000834508
0.000835715
0.00083092
0.000820265
0.000803808
0.000781642
0.000754164
0.00072249
0.000688799
0.000656116
0.00062647
0.000595743
0.000544096
0.000459822
0.00036131
0.000248235
0.00012517
2.74181e-05
6.27527e-06
6.7084e-06
3.2469e-05
0.000127515
0.000250803
0.000370865
0.000479566
0.000574866
0.000656566
0.000725128
0.000758724
0.000763877
0.000769361
0.000781718
0.000798228
0.000814417
0.00082696
0.000834152
0.000835448
0.000830864
0.000820526
0.000804464
0.000782752
0.00075583
0.000724938
0.000692431
0.000661394
0.00063346
0.000603102
0.000547748
0.000462683
0.000363259
0.000249225
0.000125386
2.74095e-05
6.22632e-06
6.76107e-06
3.24751e-05
0.000127518
0.000250914
0.000371145
0.000480051
0.000575562
0.000657447
0.000726134
0.00075736
0.000762237
0.000768199
0.000781033
0.000797772
0.000813963
0.000826397
0.000833492
0.000834784
0.000830318
0.000820219
0.000804497
0.000783217
0.000756852
0.000726737
0.000695346
0.000665794
0.000639367
0.000609373
0.000550944
0.000465157
0.000364903
0.000250003
0.000125483
2.73703e-05
6.17981e-06
6.81491e-06
3.24868e-05
0.000127505
0.00025091
0.000371185
0.000480191
0.000575846
0.000657892
0.000726724
0.000756434
0.00076127
0.000767659
0.000780844
0.00079769
0.000813777
0.000826006
0.000832901
0.000834071
0.000829602
0.000819627
0.000804149
0.000783232
0.000757374
0.000727967
0.000697561
0.000669273
0.000644122
0.000614505
0.000553724
0.000467294
0.00036629
0.000250606
0.000125483
2.73068e-05
6.13507e-06
6.86719e-06
3.24921e-05
0.00012746
0.000250816
0.000371053
0.000480073
0.000575804
0.000657971
0.000726942
0.000755373
0.000760408
0.000767344
0.000780915
0.00079787
0.000813845
0.000825846
0.000832498
0.00083348
0.00082892
0.000818973
0.000803652
0.000783027
0.000757609
0.000728823
0.000699252
0.000672
0.00064789
0.000618639
0.000556107
0.000469106
0.000367433
0.000251057
0.000125416
2.72254e-05
6.0908e-06
6.9176e-06
3.25073e-05
0.000127402
0.000250651
0.000370769
0.000479718
0.000575451
0.000657689
0.000726778
0.000753985
0.000759394
0.000767034
0.000781094
0.00079822
0.000814118
0.000825906
0.000832306
0.000833064
0.000828353
0.000818359
0.000803114
0.000782707
0.000757659
0.000729404
0.000700526
0.0006741
0.000650804
0.000621894
0.000558245
0.000470745
0.000368479
0.00025149
0.000125381
2.71565e-05
6.04756e-06
6.96542e-06
3.25218e-05
0.000127314
0.000250382
0.000370301
0.000479102
0.000574768
0.000657026
0.000726207
0.00075239
0.000758281
0.000766766
0.000781463
0.000798877
0.000814776
0.000826396
0.000832556
0.000833069
0.000828155
0.00081804
0.000802788
0.000782512
0.000757753
0.000729939
0.000701631
0.000675843
0.00065313
0.000624471
0.00056022
0.000472295
0.00036951
0.00025197
0.000125418
2.71111e-05
6.00643e-06
7.00928e-06
3.25009e-05
0.000127119
0.000249929
0.000369578
0.000478167
0.000573712
0.000655948
0.000725197
0.00075035
0.000756795
0.000766248
0.000781733
0.00079958
0.000815605
0.000827155
0.000833143
0.000833448
0.000828336
0.000818073
0.000802768
0.000782574
0.000758054
0.000730635
0.000702837
0.000677587
0.000655301
0.000626748
0.000562012
0.000473696
0.000370442
0.000252414
0.000125463
2.70668e-05
5.96544e-06
7.05126e-06
3.24813e-05
0.000126912
0.000249429
0.000368749
0.000477055
0.000572407
0.000654555
0.000723816
0.000747686
0.000754744
0.000765303
0.000781682
0.000800057
0.000816308
0.000827883
0.000833782
0.000833939
0.000828664
0.000818266
0.000802901
0.000782769
0.000758473
0.000731448
0.000704173
0.000679475
0.000657594
0.000629048
0.000563686
0.000474964
0.00037124
0.00025275
0.000125449
2.70014e-05
5.92186e-06
7.09202e-06
3.24553e-05
0.000126684
0.000248892
0.000367855
0.000475832
0.000570933
0.000652931
0.000722151
0.000744605
0.00075233
0.000764112
0.000781465
0.000800406
0.00081693
0.000828603
0.000834487
0.00083455
0.000829142
0.000818617
0.000803179
0.000783084
0.000758987
0.000732351
0.000705637
0.000681576
0.000660201
0.000631677
0.000565451
0.00047631
0.000372099
0.000253128
0.00012547
2.69445e-05
5.87597e-06
7.13232e-06
3.24653e-05
0.000126555
0.000248475
0.000367064
0.000474667
0.000569451
0.000651228
0.000720339
0.000741021
0.000749447
0.000762537
0.000780952
0.000800557
0.000817431
0.000829265
0.000835202
0.000835245
0.000829758
0.000819132
0.000803622
0.000783543
0.000759617
0.000733363
0.000707256
0.000683957
0.000663266
0.000634835
0.00056739
0.000477854
0.000373156
0.000253681
0.000125619
2.69243e-05
5.83006e-06
7.17023e-06
3.24319e-05
0.000126312
0.000247913
0.000366118
0.000473337
0.00056778
0.000649292
0.000718283
0.000736924
0.000746284
0.000760644
0.000780055
0.000800368
0.000817706
0.000829791
0.000835829
0.000835894
0.000830384
0.000819703
0.000804137
0.000784064
0.000760283
0.000734394
0.000708922
0.000686492
0.000666661
0.000638423
0.000569399
0.000479515
0.000374356
0.000254369
0.000125866
2.69323e-05
5.78602e-06
7.20982e-06
3.24049e-05
0.000126087
0.000247363
0.000365165
0.000471971
0.00056603
0.000647211
0.00071363
0.000732313
0.000742858
0.000758488
0.000778891
0.000799889
0.000817699
0.000830111
0.000836334
0.000836466
0.000830956
0.000820242
0.000804635
0.000784556
0.000760882
0.000735312
0.000710452
0.000688928
0.000670058
0.000642085
0.000571298
0.000481118
0.000375538
0.000255049
0.000126098
2.69357e-05
5.74371e-06
7.25154e-06
3.23708e-05
0.000125844
0.000246805
0.000364212
0.000470597
0.000564247
0.000645051
0.00070829
0.000726961
0.000738765
0.00075578
0.000777277
0.000799012
0.000817287
0.000830025
0.000836511
0.000836825
0.000831395
0.000820688
0.000805067
0.000784997
0.000761416
0.000736123
0.000711831
0.00069119
0.000673301
0.000645623
0.000572944
0.00048254
0.000376608
0.000255669
0.000126303
2.69359e-05
5.70306e-06
7.29728e-06
3.23338e-05
0.000125596
0.000246258
0.000363283
0.000469252
0.000562485
0.000642887
0.000702656
0.00072123
0.000734273
0.000752643
0.000775205
0.000797681
0.000816442
0.000829497
0.000836232
0.000836778
0.000831535
0.000820927
0.00080533
0.000785283
0.000761802
0.000736767
0.000712994
0.00069318
0.00067623
0.00064883
0.000574198
0.000483634
0.000377432
0.000256127
0.00012642
2.69179e-05
5.66275e-06
7.34662e-06
3.23153e-05
0.000125412
0.0002458
0.000362448
0.000467993
0.000560792
0.000640769
0.000696944
0.000715365
0.000729602
0.000749263
0.000772797
0.000795916
0.000815105
0.00082847
0.000835446
0.000836208
0.000831184
0.000820771
0.000805299
0.000785322
0.000761952
0.000737181
0.000713916
0.000694889
0.000678791
0.00065083
0.000575056
0.000484403
0.00037803
0.000256469
0.000126512
2.69045e-05
5.62289e-06
7.39942e-06
3.23048e-05
0.00012525
0.000245377
0.000361656
0.00046678
0.000559146
0.000638697
0.000691442
0.000709716
0.000725039
0.000745849
0.000770213
0.000793838
0.000813337
0.000826943
0.000834149
0.000835129
0.000830316
0.000820123
0.000804869
0.000785082
0.000761894
0.000737414
0.000714715
0.000696558
0.000680974
0.000651167
0.000575438
0.000484778
0.000378338
0.000256642
0.00012654
2.68844e-05
5.58349e-06
7.45254e-06
3.23477e-05
0.000125235
0.000245116
0.000361007
0.000465686
0.000557601
0.000636719
0.000686341
0.000704486
0.000720757
0.000742533
0.000767548
0.000791515
0.000811176
0.000824893
0.000832245
0.000833416
0.000828807
0.000818823
0.000803803
0.000784284
0.000761417
0.000737375
0.000715338
0.000698007
0.000682715
0.000651096
0.000575372
0.000484718
0.000378268
0.000256537
0.000126416
2.68279e-05
5.54227e-06
7.49938e-06
3.23253e-05
0.000125036
0.000244583
0.000360043
0.000464273
0.000555766
0.000634507
0.00068173
0.000699837
0.000716898
0.000739437
0.000764914
0.000789058
0.000808728
0.000822414
0.000829778
0.000831044
0.000826595
0.000816796
0.000801985
0.00078274
0.000760267
0.000736813
0.000715588
0.000699106
0.000684038
0.0006508
0.000575084
0.000484454
0.000378038
0.00025634
0.000126274
2.67753e-05
5.49955e-06
7.54224e-06
3.228e-05
0.000124765
0.000243897
0.000358853
0.000462587
0.000553649
0.000632048
0.000677917
0.00069621
0.000713945
0.00073707
0.00076285
0.000787023
0.000806553
0.000820045
0.000827247
0.000828431
0.000823995
0.000814281
0.000799603
0.000780566
0.000758454
0.000735596
0.000715213
0.000699601
0.000684818
0.000650301
0.000574644
0.000484087
0.000377752
0.000256134
0.000126147
2.67316e-05
5.45708e-06
7.58083e-06
3.22431e-05
0.000124533
0.000243216
0.000357597
0.000460762
0.000551338
0.000629373
0.000674373
0.000693137
0.000711678
0.000735445
0.000761541
0.000785719
0.000805039
0.000818224
0.000825113
0.000826035
0.000821418
0.000811622
0.000796958
0.000778035
0.000756196
0.000733852
0.000714228
0.00069943
0.000684984
0.000649439
0.000573875
0.000483431
0.000377228
0.000255754
0.000125913
2.6648e-05
5.41133e-06
7.61471e-06
3.21943e-05
0.000124281
0.000242478
0.000356227
0.000458755
0.00054878
0.000626402
0.00067048
0.000689946
0.000709589
0.000734255
0.000760851
0.000785144
0.000804302
0.000817162
0.000823658
0.000824181
0.000819198
0.000809106
0.000794252
0.000775276
0.000753557
0.000731556
0.000712509
0.000698393
0.000684331
0.000648172
0.000572724
0.000482401
0.000376339
0.000255043
0.00012544
2.64889e-05
5.36131e-06
7.64429e-06
3.21466e-05
0.000124049
0.000241738
0.000354803
0.000456626
0.00054602
0.000623148
0.000665912
0.000686205
0.000707294
0.000733207
0.00076058
0.000785197
0.000804346
0.000816986
0.000823133
0.000823227
0.000817776
0.000807212
0.000791929
0.000772624
0.000750728
0.000728741
0.000709932
0.000696253
0.000682638
0.000646435
0.000571162
0.000480983
0.000375058
0.000253933
0.000124629
2.62209e-05
5.30818e-06
7.67047e-06
3.2079e-05
0.000123779
0.000240944
0.0003533
0.000454377
0.00054308
0.000619638
0.000660301
0.00068148
0.000704363
0.000731855
0.000760258
0.000785412
0.000804767
0.000817406
0.0008234
0.00082321
0.000817357
0.000806301
0.000790476
0.000770624
0.000748222
0.000725825
0.000706779
0.00069315
0.000679954
0.000644276
0.000569291
0.000479357
0.00037364
0.000252732
0.000123765
2.59427e-05
5.25742e-06
7.69433e-06
3.2006e-05
0.000123503
0.000240121
0.000351729
0.000452016
0.000539981
0.000615909
0.000653444
0.000675605
0.000700626
0.000729923
0.000759463
0.000785246
0.000804947
0.000817779
0.000823852
0.000823609
0.000817547
0.00080612
0.000789781
0.000769303
0.000746192
0.000723035
0.000703257
0.000689142
0.00067612
0.000641665
0.000567089
0.00047754
0.00037216
0.000251556
0.000122946
2.56854e-05
5.21211e-06
7.71769e-06
3.19142e-05
0.000123171
0.000239204
0.000350024
0.00044948
0.00053667
0.000611953
0.000645383
0.000668778
0.000696258
0.000727447
0.000758106
0.000784525
0.000804646
0.000817817
0.000824174
0.000824128
0.00081812
0.000806556
0.000789868
0.00076883
0.000744959
0.000720851
0.000700001
0.000684933
0.000671672
0.000638599
0.0005645
0.000475464
0.000370584
0.00025043
0.000122242
2.54744e-05
5.17167e-06
7.74186e-06
3.17924e-05
0.000122754
0.000238152
0.000348126
0.000446678
0.000532984
0.00060474
0.000636198
0.000661719
0.000691565
0.000724426
0.000756093
0.000783109
0.000803657
0.00081723
0.000824009
0.000824374
0.000818693
0.000807291
0.000790535
0.00076916
0.000744658
0.000719616
0.000697566
0.000681239
0.000667242
0.00063501
0.000561353
0.000472883
0.000368623
0.000249077
0.000121455
2.52506e-05
5.13046e-06
7.76804e-06
3.16701e-05
0.000122323
0.000237051
0.000346136
0.000443742
0.00052911
0.000594685
0.000626235
0.000654106
0.000686304
0.000720795
0.00075338
0.000780883
0.000801769
0.000815711
0.000822956
0.000823862
0.000818726
0.000807781
0.000791301
0.000769939
0.00074512
0.000719381
0.000696235
0.000678521
0.00066329
0.000631039
0.000557734
0.000469836
0.000366299
0.000247528
0.000120627
2.5028e-05
5.08661e-06
7.79652e-06
3.15415e-05
0.000121861
0.00023589
0.000344049
0.000440677
0.000525084
0.000584034
0.000615704
0.00064608
0.000680712
0.000716788
0.000750168
0.000778012
0.000799106
0.000813325
0.00082099
0.00082246
0.000817985
0.000807719
0.000791846
0.000770916
0.000746251
0.000720288
0.000696441
0.000677474
0.000660542
0.000626882
0.000553778
0.000466406
0.000363658
0.000245817
0.000119797
2.48248e-05
5.04098e-06
7.82301e-06
3.13668e-05
0.000121252
0.000234492
0.000341662
0.000437285
0.00052074
0.000572884
0.000604846
0.000637872
0.000674932
0.00071247
0.000746482
0.000774517
0.000795695
0.000810078
0.000818065
0.000820038
0.000816231
0.000806764
0.000791752
0.000771656
0.000747695
0.000722193
0.000698385
0.000678674
0.000659693
0.000622628
0.000549487
0.000462489
0.000360505
0.000243705
0.000118766
2.45748e-05
4.98789e-06
7.84985e-06
3.1134e-05
0.000120435
0.000232749
0.000338834
0.000433409
0.000515943
0.000561204
0.000593833
0.000629671
0.000669046
0.000707817
0.00074226
0.000770351
0.000791508
0.000805941
0.000814115
0.000816447
0.000813197
0.000804495
0.00079046
0.00077154
0.000748906
0.000724751
0.000701962
0.000682217
0.000660985
0.000618538
0.000545069
0.00045819
0.000356814
0.000241062
0.000117384
2.42244e-05
4.92446e-06
7.87758e-06
3.08616e-05
0.000119459
0.000230679
0.000335499
0.00042887
0.000508996
0.000548968
0.000583342
0.000621953
0.000663199
0.000702863
0.000737594
0.00076569
0.000786766
0.000801142
0.000809346
0.000811844
0.000808951
0.000800867
0.000787794
0.000770254
0.000749436
0.000727395
0.000706556
0.000687587
0.000664247
0.000615031
0.000541002
0.000453977
0.000352966
0.000238117
0.000115735
2.3789e-05
4.85611e-06
7.90762e-06
3.05099e-05
0.000118212
0.0002282
0.000331637
0.000423638
0.000496329
0.000536271
0.000573105
0.000614103
0.000656941
0.000697415
0.000732419
0.000760511
0.000781486
0.000795755
0.000803895
0.000806414
0.000803689
0.00079603
0.000783785
0.000767632
0.000748856
0.000729407
0.000711211
0.000693778
0.000668802
0.000612336
0.000537649
0.000450277
0.000349366
0.000235168
0.000113958
2.33006e-05
4.79034e-06
7.94151e-06
3.01279e-05
0.000116784
0.000225388
0.00032734
0.000417918
0.00048318
0.000523124
0.000562487
0.000605924
0.000650329
0.000691555
0.000726804
0.000754902
0.000775799
0.00078997
0.00079801
0.00080045
0.000797731
0.000790272
0.000778593
0.00076358
0.000746708
0.000729966
0.000714938
0.000699971
0.00067414
0.000610532
0.000535234
0.000447419
0.00034639
0.000232557
0.000112273
2.28233e-05
4.73219e-06
7.97636e-06
2.96851e-05
0.000115173
0.000222313
0.000322718
0.000411845
0.000470312
0.00051027
0.000551922
0.000597589
0.000643455
0.000685398
0.000720896
0.000749037
0.000769907
0.000784019
0.000791965
0.000794275
0.000791422
0.000783921
0.000772481
0.000758295
0.000743205
0.000729373
0.000717735
0.000704139
0.000672674
0.000608915
0.000533305
0.000445144
0.000343907
0.000230214
0.000110627
2.23423e-05
4.67908e-06
8.01535e-06
2.92111e-05
0.000113466
0.000219091
0.0003179
0.000405583
0.000457652
0.00049817
0.000542175
0.000589723
0.000636645
0.000679094
0.000714822
0.000743062
0.000763968
0.000778069
0.000785949
0.000788125
0.000785076
0.000777374
0.000765868
0.000752018
0.000738033
0.000726333
0.000717506
0.000705582
0.000670811
0.000607188
0.000531511
0.00044313
0.000341658
0.000227954
0.000108912
2.18346e-05
4.62993e-06
8.0593e-06
2.87281e-05
0.000111657
0.000215601
0.000312633
0.000397852
0.000444467
0.000486569
0.000533238
0.000582517
0.000630145
0.000672761
0.000708542
0.000736888
0.000757913
0.000772084
0.000779964
0.000782061
0.000778846
0.000770895
0.000759099
0.000745059
0.000731255
0.000720472
0.000713457
0.000703521
0.000668303
0.000605132
0.000529671
0.000441259
0.000339595
0.000225771
0.000107121
2.1295e-05
4.58529e-06
8.10685e-06
2.82391e-05
0.000109811
0.000211952
0.00030696
0.000384702
0.000431229
0.000475608
0.000524471
0.00057527
0.000623719
0.000666601
0.000702339
0.000730587
0.00075161
0.000765872
0.000773836
0.000775939
0.00077263
0.000764465
0.000752284
0.000737658
0.000723155
0.000711894
0.000705255
0.000697223
0.000665031
0.000602594
0.000527641
0.000439447
0.000337738
0.000223791
0.000105414
2.07944e-05
4.5576e-06
8.15745e-06
2.77305e-05
0.000107886
0.00020816
0.000301085
0.000371474
0.000417934
0.000464565
0.000515585
0.00056781
0.000617037
0.00066029
0.000696143
0.000724339
0.000745268
0.000759505
0.00076753
0.000769718
0.000766439
0.000758177
0.000745671
0.000730333
0.000714594
0.000701726
0.000693994
0.000687319
0.00066109
0.000599587
0.000525377
0.000437645
0.000336074
0.000222051
0.000103842
2.03419e-05
4.54507e-06
8.21026e-06
2.71948e-05
0.000105845
0.000204155
0.000294936
0.000358107
0.000404666
0.000453611
0.000506741
0.000560256
0.000610079
0.000653556
0.000689526
0.000717826
0.000738811
0.000753034
0.000761047
0.00076329
0.000760111
0.000751893
0.000739219
0.000723307
0.000706321
0.00069134
0.000681205
0.000674635
0.000656513
0.000596008
0.000522731
0.000435746
0.000334637
0.000220788
0.000102752
2.00723e-05
4.55827e-06
8.26509e-06
2.66063e-05
0.000103595
0.000199809
0.000288413
0.000344513
0.000391523
0.000442887
0.000498026
0.000552664
0.000602946
0.00064655
0.000682548
0.000710909
0.000732016
0.000746376
0.000754492
0.000756817
0.00075374
0.000745636
0.000732968
0.000716724
0.000698807
0.000682116
0.00066966
0.000661348
0.000646444
0.000591939
0.000519785
0.000433771
0.000333376
0.000219903
0.000102038
1.99173e-05
4.57579e-06
8.32163e-06
2.59887e-05
0.000101149
0.00019502
0.000280472
0.000330801
0.000378973
0.000432689
0.000489499
0.000544989
0.000595608
0.000639305
0.000675311
0.000703672
0.000724828
0.000739318
0.000747624
0.000750144
0.000747242
0.000739309
0.000726764
0.000710427
0.000691923
0.000673876
0.000659295
0.000648869
0.000634346
0.000587447
0.000516432
0.00043153
0.00033213
0.000219384
0.000101856
1.99612e-05
4.60423e-06
8.37925e-06
2.53537e-05
9.85479e-05
0.000189699
0.000267058
0.000317151
0.000367343
0.000422899
0.000480946
0.000537161
0.000588144
0.000631976
0.000667995
0.000696327
0.000717471
0.000732011
0.00074046
0.000743214
0.000740602
0.00073296
0.000720652
0.000704392
0.000685624
0.000666744
0.000650662
0.000638568
0.000624111
0.000582901
0.000512875
0.000429004
0.000330602
0.000218668
0.000101597
1.99619e-05
4.60567e-06
8.43629e-06
2.47148e-05
9.59501e-05
0.000184373
0.000254175
0.00030379
0.000355689
0.000413019
0.000472334
0.000529278
0.000580588
0.000624506
0.000660493
0.000688759
0.000709857
0.000724403
0.000732936
0.000735876
0.00073356
0.000726288
0.000714352
0.000698367
0.000679623
0.00066032
0.000643244
0.00062986
0.000615177
0.000578057
0.000508935
0.000426101
0.000328835
0.000217985
0.000101608
2.00766e-05
4.60557e-06
8.49199e-06
2.40522e-05
9.32503e-05
0.000178874
0.000241501
0.000290713
0.000344251
0.000403251
0.00046374
0.000521354
0.000572967
0.00061696
0.000652902
0.000681086
0.000702117
0.000716649
0.000725244
0.000728337
0.000726282
0.000719385
0.000707895
0.000692353
0.000673942
0.00065473
0.000637397
0.000623508
0.000608685
0.000573319
0.000504926
0.000422943
0.000326631
0.000216739
0.000101118
1.99891e-05
4.56204e-06
8.50596e-06
2.33836e-05
9.05347e-05
0.000173366
0.000229182
0.000278088
0.000333164
0.000393679
0.000455201
0.000513384
0.000565237
0.000609267
0.000645139
0.000673214
0.000694153
0.000708645
0.000717273
0.000720485
0.000718644
0.000712066
0.000700995
0.000685931
0.000667968
0.000649061
0.000631767
0.000617602
0.00060252
0.000568091
0.000500416
0.000419314
0.00032406
0.000215328
0.00010069
1.99583e-05
4.52465e-06
8.50977e-06
2.2718e-05
8.77875e-05
0.000167941
0.00021754
0.000266333
0.00032272
0.000384381
0.000446619
0.00050518
0.000557184
0.000601216
0.000637003
0.000664967
0.000685822
0.000700297
0.000708993
0.000712363
0.00071077
0.000704528
0.000693879
0.000679324
0.000661948
0.000643667
0.000626974
0.000613252
0.000598171
0.000563087
0.000496036
0.00041565
0.000321208
0.000213367
9.96302e-05
1.96584e-05
4.44016e-06
8.51511e-06
2.20832e-05
8.49559e-05
0.000160167
0.000206802
0.000256039
0.000313227
0.000375436
0.000438003
0.000496744
0.000548798
0.000592762
0.000628406
0.000656214
0.000676958
0.000691408
0.000700181
0.000703728
0.000702403
0.000696514
0.000686293
0.000672236
0.000655431
0.000637759
0.000621597
0.000608152
0.000592907
0.000557247
0.000490929
0.000411423
0.000318028
0.000211372
9.87757e-05
1.94835e-05
4.38341e-06
8.52309e-06
2.14896e-05
8.22216e-05
0.000151279
0.000197061
0.000246645
0.000304164
0.000366587
0.000429277
0.000488037
0.000539988
0.00058375
0.000619151
0.000646747
0.00066737
0.000681823
0.000690729
0.000694526
0.000693554
0.0006881
0.000678382
0.000664904
0.000648788
0.000631961
0.000616774
0.000604184
0.000589041
0.000551639
0.000485969
0.000407175
0.000314547
0.000208735
9.71457e-05
1.8988e-05
4.27463e-06
8.53112e-06
2.09782e-05
7.98592e-05
0.000143433
0.000188247
0.000237957
0.0002957
0.000358247
0.000420896
0.000479425
0.000530984
0.000574268
0.000609202
0.000636426
0.000656831
0.000671237
0.000680264
0.000684329
0.000683749
0.000678791
0.000669641
0.000656786
0.000641334
0.000625187
0.000610614
0.000598387
0.000583063
0.000544847
0.000479997
0.000402189
0.000310721
0.000206216
9.59426e-05
1.87229e-05
4.21375e-06
8.53548e-06
2.04511e-05
7.75085e-05
0.000136209
0.000180132
0.000229876
0.00028767
0.000350099
0.000412423
0.000470429
0.000521329
0.000563919
0.000598231
0.00062499
0.00064513
0.000659486
0.000668664
0.000673057
0.000672956
0.000668603
0.000660156
0.000648086
0.00063352
0.000618388
0.000604944
0.000593745
0.000578654
0.000538498
0.00047433
0.000397258
0.00030657
0.00020294
9.38143e-05
1.80801e-05
4.08776e-06
8.53498e-06
1.99604e-05
7.53238e-05
0.000129676
0.000172702
0.000222314
0.000279998
0.00034215
0.000403947
0.000461177
0.000511143
0.000552788
0.000586281
0.000612434
0.000632218
0.00064646
0.000655745
0.000660436
0.000660808
0.000657088
0.000649396
0.000638162
0.000624458
0.000610138
0.000597339
0.000586459
0.00057126
0.000530831
0.000467603
0.000391665
0.000302314
0.000200186
9.25481e-05
1.78244e-05
4.03217e-06
8.52298e-06
1.93455e-05
7.2788e-05
0.0001232
0.000165416
0.000214851
0.000272308
0.000333989
0.000395013
0.000451217
0.000500046
0.000540614
0.000573225
0.000598763
0.000618207
0.000632364
0.000641782
0.000646797
0.00064767
0.000644623
0.000637752
0.00062747
0.000614849
0.000601749
0.000590282
0.000580658
0.000565997
0.000524036
0.00046154
0.000386367
0.000297811
0.000196571
9.0156e-05
1.71084e-05
3.89673e-06
8.4983e-06
1.868e-05
7.00907e-05
0.000116785
0.000158249
0.000207494
0.000264654
0.000325723
0.000385765
0.00044071
0.000488198
0.00052755
0.000559208
0.000584103
0.000603195
0.000617245
0.000626752
0.000632025
0.000633322
0.000630877
0.000624761
0.000615337
0.000603595
0.000591275
0.000580344
0.000570939
0.000556458
0.000515723
0.000454336
0.000380459
0.00029341
0.000193833
8.89816e-05
1.69039e-05
3.85463e-06
8.45492e-06
1.77435e-05
6.64835e-05
0.00010962
0.000150367
0.000199382
0.000256148
0.000316449
0.000375334
0.000428891
0.000475016
0.000513244
0.000544122
0.00056858
0.000587522
0.000601634
0.000611356
0.000616967
0.00061873
0.000616895
0.000611524
0.000602963
0.0005922
0.000580989
0.000571307
0.000563222
0.000549743
0.000508678
0.000448112
0.000375022
0.000288744
0.000190021
8.64087e-05
1.61315e-05
3.71238e-06
8.33269e-06
1.66837e-05
6.24134e-05
0.000101948
0.000141941
0.000190725
0.000247093
0.000306546
0.000364106
0.000416092
0.000460739
0.000497835
0.00052802
0.00055218
0.000571113
0.000585398
0.000595399
0.000601358
0.000603552
0.000602265
0.000597537
0.000589655
0.000579504
0.000568694
0.000559083
0.000550847
0.000537805
0.000499796
0.000440553
0.000368929
0.000284294
0.000187335
8.53244e-05
1.59751e-05
3.68402e-06
8.19326e-06
1.52662e-05
5.71279e-05
9.3124e-05
0.00013209
0.000180346
0.00023609
0.000294518
0.000350623
0.000401007
0.000444279
0.000480482
0.000510298
0.000534516
0.000553783
0.000568549
0.000579091
0.000585613
0.000588406
0.00058779
0.000583788
0.000576655
0.000567263
0.000557247
0.000548547
0.000541444
0.000529705
0.000492572
0.000434273
0.000363473
0.00027957
0.000183389
8.25904e-05
1.51502e-05
3.53116e-06
8.05222e-06
1.3693e-05
5.14994e-05
8.39944e-05
0.000121541
0.000168971
0.000223939
0.000281187
0.000335621
0.000384197
0.000426011
0.000461387
0.000491022
0.000515543
0.000535394
0.000550855
0.000562096
0.000569282
0.00057273
0.000572813
0.000569531
0.000563058
0.00055413
0.000544208
0.000535127
0.000527436
0.000516143
0.000483291
0.000426599
0.000357529
0.000275476
0.000181161
8.18868e-05
1.5112e-05
3.51777e-06
7.9191e-06
1.18915e-05
4.52016e-05
7.41765e-05
0.000109568
0.000155476
0.000209208
0.000264974
0.000317522
0.000364209
0.000404664
0.000439491
0.00046934
0.000494612
0.000515497
0.000532074
0.000544392
0.000552576
0.000556971
0.000558004
0.000555651
0.000550042
0.000541883
0.000532661
0.000524315
0.000517567
0.000507519
0.000475822
0.000420202
0.00035206
0.0002708
0.000177269
7.91678e-05
1.42735e-05
3.35632e-06
7.81521e-06
1.0696e-05
4.01939e-05
6.50205e-05
9.76608e-05
0.000141676
0.000193993
0.000248024
0.000298244
0.000342554
0.000381313
0.000415476
0.000445622
0.000471852
0.000494028
0.000511973
0.000525582
0.000534931
0.000540403
0.00054251
0.000541197
0.000536504
0.000528985
0.000519924
0.000511119
0.000503547
0.00049364
0.000466201
0.000412442
0.00034633
0.00026721
0.000175725
7.90471e-05
1.43962e-05
3.36472e-06
7.74193e-06
9.65229e-06
3.53161e-05
5.60692e-05
8.54465e-05
0.000126914
0.000177356
0.000229286
0.000276728
0.000318198
0.000354943
0.000388352
0.000418917
0.000446389
0.000470233
0.000489954
0.000505256
0.000516155
0.000523065
0.00052659
0.000526642
0.000523198
0.000516779
0.000508699
0.000500857
0.000494335
0.00048545
0.000458294
0.000405607
0.000340462
0.00026221
0.00017161
7.6203e-05
1.35162e-05
3.20073e-06
7.70729e-06
8.97649e-06
3.16839e-05
4.86408e-05
7.48648e-05
0.000113921
0.00016281
0.000212701
0.000256782
0.000294419
0.000328165
0.000360089
0.000390659
0.000419226
0.000444766
0.000466368
0.000483474
0.000496009
0.000504413
0.000509429
0.000510935
0.00050881
0.00050343
0.000495898
0.000487913
0.000480714
0.000471852
0.000448562
0.000397893
0.000334962
0.000259031
0.00017059
7.65334e-05
1.37694e-05
3.23406e-06
7.70324e-06
8.29368e-06
2.79042e-05
4.17847e-05
6.49353e-05
0.000101352
0.000148756
0.000196909
0.000237533
0.0002707
0.000300572
0.000330201
0.000360224
0.000389661
0.000416945
0.000440642
0.000459844
0.000474331
0.000484534
0.000491346
0.000494608
0.000494116
0.000490209
0.000484029
0.000477397
0.000471616
0.000463891
0.000440264
0.000390626
0.000328616
0.000253538
0.000166033
7.33979e-05
1.28196e-05
3.07096e-06
7.72187e-06
7.88094e-06
2.4517e-05
3.66271e-05
5.7425e-05
9.20497e-05
0.000139252
0.000186783
0.000224011
0.000251781
0.00027638
0.000302253
0.00033054
0.00036008
0.000388675
0.000414214
0.000435335
0.000451626
0.000463456
0.000471938
0.000476874
0.000477953
0.00047537
0.000470065
0.000463621
0.00045743
0.000449992
0.000430737
0.000383331
0.000323686
0.000250979
0.000165565
7.40956e-05
1.31819e-05
3.12693e-06
7.73961e-06
7.43248e-06
2.13545e-05
3.17969e-05
5.02284e-05
8.28499e-05
0.000129993
0.000177849
0.000212875
0.000235971
0.000254994
0.000275742
0.000300733
0.000329472
0.000359056
0.000386344
0.000409402
0.000427576
0.000441126
0.000451413
0.000458208
0.000461076
0.000460113
0.000456248
0.000451173
0.000446453
0.000440457
0.000421545
0.000375226
0.000316514
0.000244667
0.000160245
7.04185e-05
1.21142e-05
2.95798e-06
7.73703e-06
7.23707e-06
1.93728e-05
2.84619e-05
4.50056e-05
7.6646e-05
0.000125138
0.000174022
0.000207026
0.000226098
0.000240031
0.000255578
0.00027643
0.000302681
0.000331791
0.000359915
0.00038425
0.000403784
0.000418544
0.000430229
0.000438587
0.000443024
0.000443457
0.00044061
0.000435917
0.00043085
0.000424896
0.000410945
0.000368187
0.000312096
0.000242727
0.000160329
7.14668e-05
1.25791e-05
3.02575e-06
7.6983e-06
6.92034e-06
1.72794e-05
2.49985e-05
3.93027e-05
6.90663e-05
0.000117548
0.000166092
0.000197348
0.000214659
0.000226642
0.000239427
0.000256568
0.000278886
0.000305492
0.00033315
0.000358243
0.000379022
0.00039498
0.000408111
0.000418152
0.000424337
0.000426401
0.000424958
0.000421458
0.000417533
0.000412934
0.000400519
0.000358517
0.000303458
0.000235119
0.000153962
6.71222e-05
1.13656e-05
2.8389e-06
7.61928e-06
6.7906e-06
1.60702e-05
2.27191e-05
3.51549e-05
6.40083e-05
0.000113398
0.000154285
0.000176785
0.00019509
0.00021682
0.000232365
0.000246034
0.000263299
0.000285302
0.000310504
0.00033521
0.000356399
0.000372775
0.000386737
0.000398006
0.000405612
0.000409041
0.000408653
0.000405647
0.00040152
0.000396463
0.000385481
0.000351741
0.000299524
0.00023378
0.000154654
6.86251e-05
1.19606e-05
2.91515e-06
7.51835e-06
6.54468e-06
1.47235e-05
2.01617e-05
2.98374e-05
5.47473e-05
0.000101301
0.000131168
0.000152257
0.000169509
0.000191767
0.000217609
0.000239249
0.000252391
0.000268177
0.000288805
0.000311704
0.000332892
0.000349598
0.000364369
0.0003769
0.000386034
0.000390995
0.000391947
0.000390048
0.000386937
0.000383048
0.000373377
0.000340162
0.000289019
0.000224469
0.000146902
6.34081e-05
1.0543e-05
2.69955e-06
7.42035e-06
6.49417e-06
1.42971e-05
1.89522e-05
2.65196e-05
4.75312e-05
8.53299e-05
0.000112955
0.000133282
0.000149822
0.000171915
0.00019795
0.000226456
0.000249908
0.000261714
0.00027605
0.000294803
0.000314378
0.000330184
0.000344925
0.00035811
0.000368292
0.000374423
0.000376362
0.000374906
0.000371436
0.000366802
0.000358421
0.000334296
0.000286119
0.00022427
0.000148746
6.57871e-05
1.13667e-05
2.79789e-06
7.36068e-06
6.31831e-06
1.36704e-05
1.78717e-05
2.30725e-05
3.69227e-05
6.25963e-05
8.89485e-05
0.000110761
0.000127418
0.000148847
0.000174553
0.000203234
0.000233061
0.000256901
0.000266851
0.000279401
0.000295329
0.000309433
0.000323862
0.000337599
0.000348818
0.000356164
0.00035925
0.000358783
0.000356305
0.000352949
0.000345828
0.000320807
0.000273561
0.000212848
0.000139041
5.92337e-05
9.63563e-06
2.54057e-06
7.33929e-06
6.3394e-06
1.39441e-05
1.84962e-05
2.26695e-05
3.16584e-05
4.8862e-05
7.14481e-05
9.47656e-05
0.000112964
0.000133412
0.000158251
0.000186537
0.000216505
0.000246409
0.000268662
0.000276226
0.000286013
0.00029602
0.000308596
0.000321924
0.000333504
0.000341567
0.00034542
0.000345372
0.00034245
0.000337718
0.000330625
0.000315082
0.000272009
0.000214324
0.000142714
6.29895e-05
1.07821e-05
2.67811e-06
7.35791e-06
6.22418e-06
1.3887e-05
1.88228e-05
2.30666e-05
2.79203e-05
3.83665e-05
5.15238e-05
7.25752e-05
9.32441e-05
0.000111957
0.000135097
0.000162368
0.000192289
0.000222934
0.000252597
0.000274567
0.00027881
0.000281885
0.000290943
0.000303072
0.000314683
0.000323354
0.000328008
0.000328776
0.000326797
0.000323529
0.0003182
0.000301001
0.000257497
0.000200555
0.000130574
5.47587e-05
8.7079e-06
2.36822e-06
7.35734e-06
6.38795e-06
1.49562e-05
1.96995e-05
2.44659e-05
2.87652e-05
3.75887e-05
4.55643e-05
5.96208e-05
7.98238e-05
9.97196e-05
0.000121101
0.000146426
0.000175225
0.000205835
0.000236339
0.000265068
0.000284358
0.000280978
0.000283321
0.000291915
0.000302269
0.00031083
0.000315814
0.000316834
0.000314433
0.000309538
0.000302291
0.000289161
0.00025689
0.00020358
0.000136159
5.98962e-05
1.01074e-05
2.54063e-06
7.32838e-06
6.58107e-06
1.60386e-05
2.0493e-05
2.58038e-05
3.05556e-05
3.59523e-05
4.52722e-05
4.91676e-05
5.94702e-05
7.60496e-05
9.51112e-05
0.000117565
0.000144338
0.000174467
0.000205993
0.000236816
0.000265151
0.000279568
0.000275733
0.000277705
0.000284856
0.000292619
0.000297882
0.000299551
0.000298074
0.00029472
0.000289864
0.000278432
0.000241517
0.000188475
0.000122379
5.06327e-05
7.90564e-06
2.18597e-06
7.22916e-06
7.17762e-06
1.86074e-05
2.36742e-05
2.86592e-05
3.46379e-05
4.10095e-05
4.82704e-05
5.92232e-05
6.25149e-05
7.02771e-05
8.48163e-05
0.000103967
0.000126887
0.000153895
0.000184037
0.000215345
0.000245588
0.000272822
0.0002813
0.000276474
0.000277495
0.000282574
0.000287231
0.000288933
0.000287102
0.000282142
0.000274395
0.000262634
0.000240134
0.000190837
0.000127685
5.54823e-05
9.11773e-06
2.34622e-06
7.1103e-06
7.66065e-06
2.06968e-05
2.82304e-05
3.27141e-05
3.91906e-05
4.87468e-05
5.75267e-05
6.32119e-05
6.87388e-05
7.2104e-05
7.34789e-05
8.06458e-05
9.52242e-05
0.000116164
0.000142926
0.000173633
0.000205718
0.00023656
0.000263879
0.000274782
0.000269241
0.000268172
0.000270618
0.000272382
0.000271382
0.00026781
0.0002625
0.000253314
0.000227379
0.000178638
0.000116501
4.82004e-05
7.42858e-06
2.00789e-06
6.9332e-06
8.20883e-06
2.41596e-05
3.52335e-05
3.98284e-05
4.48891e-05
5.5973e-05
7.27608e-05
8.32603e-05
8.32741e-05
8.32074e-05
9.03152e-05
9.6131e-05
0.000102607
0.000115818
0.000134578
0.000158486
0.000186367
0.000215934
0.000244398
0.000269121
0.000276337
0.000268355
0.000264753
0.000264129
0.00026249
0.000258004
0.00025045
0.000238977
0.000218809
0.000175397
0.000116144
4.88149e-05
7.67784e-06
2.08703e-06
6.7118e-06
7.95668e-06
2.40721e-05
4.03133e-05
4.79911e-05
5.21662e-05
5.92103e-05
7.37852e-05
8.84488e-05
9.60703e-05
0.000100616
9.87755e-05
0.000101627
9.9882e-05
0.000101089
0.000108921
0.000123793
0.00014575
0.000173066
0.000202457
0.000230577
0.000254503
0.000261594
0.000254279
0.000249788
0.000247428
0.000244033
0.000238418
0.000230262
0.000214862
0.000172856
0.000115225
4.88809e-05
7.39408e-06
1.86117e-06
6.32221e-06
7.81454e-06
2.49025e-05
4.20769e-05
5.45973e-05
6.22749e-05
6.85878e-05
7.81838e-05
9.13066e-05
9.91495e-05
0.000106173
0.000111815
0.000114097
0.000120028
0.000124727
0.000132666
0.000144587
0.000160495
0.000180743
0.000203876
0.0002275
0.000248743
0.000264325
0.000253489
0.000244339
0.000239266
0.000234803
0.000228518
0.000218675
0.000200163
0.000158565
0.000102334
4.04158e-05
6.03034e-06
1.80085e-06
5.8904e-06
6.9299e-06
2.13221e-05
3.88039e-05
5.38289e-05
6.53253e-05
7.36757e-05
8.08358e-05
8.63094e-05
9.15779e-05
9.68408e-05
0.000101384
0.00010466
0.00010659
0.000108028
0.000110901
0.000117111
0.000127633
0.000143415
0.000164094
0.000187456
0.000210529
0.000230244
0.000228593
0.000223479
0.000219699
0.000215898
0.000210041
0.00020123
0.000188512
0.000164489
0.000112946
4.91454e-05
7.14619e-06
1.67472e-06
5.40996e-06
7.30012e-06
2.35778e-05
3.87547e-05
5.3175e-05
6.46327e-05
7.24535e-05
7.86741e-05
8.35465e-05
8.80512e-05
9.29194e-05
9.86047e-05
0.000105265
0.000112878
0.000121423
0.000131042
0.000142121
0.000155226
0.000170846
0.000188509
0.000207051
0.000224553
0.000232363
0.00022644
0.000220702
0.000217101
0.000213966
0.000209819
0.000203203
0.000188464
0.000147904
9.47575e-05
3.67716e-05
5.37684e-06
1.56833e-06
5.10968e-06
6.98861e-06
2.15736e-05
3.89672e-05
5.10209e-05
5.91069e-05
6.50609e-05
6.96387e-05
7.27895e-05
7.49924e-05
7.67167e-05
7.82731e-05
7.98426e-05
8.15392e-05
8.35314e-05
8.63547e-05
9.11222e-05
9.90122e-05
0.000110869
0.000127427
0.000147739
0.000169365
0.000188162
0.000189168
0.000187739
0.000186128
0.000183396
0.000178179
0.000169215
0.000155638
0.00013585
0.000101847
4.51258e-05
6.3068e-06
1.46461e-06
4.87235e-06
8.68012e-06
2.78678e-05
4.76721e-05
6.08969e-05
6.90945e-05
7.41109e-05
7.75874e-05
8.01315e-05
8.18959e-05
8.31222e-05
8.41864e-05
8.56632e-05
8.82324e-05
9.25568e-05
9.92141e-05
0.000108669
0.000121098
0.000136245
0.000153539
0.000172135
0.000190927
0.000204992
0.000207031
0.000206843
0.000205868
0.000203651
0.000200308
0.000195267
0.000184095
0.00015005
9.96018e-05
4.05832e-05
5.83927e-06
1.48975e-06
4.80602e-06
9.59829e-06
2.97723e-05
5.07909e-05
6.46768e-05
7.23476e-05
7.71813e-05
7.85277e-05
7.70486e-05
7.4819e-05
7.34548e-05
7.37527e-05
7.61333e-05
8.09894e-05
8.7726e-05
8.89381e-05
8.57199e-05
8.22995e-05
8.03552e-05
8.26629e-05
9.20112e-05
0.000109214
0.000131193
0.000153085
0.000161003
0.000159666
0.000155307
0.000147654
0.000136317
0.000120374
9.87565e-05
7.01238e-05
2.96445e-05
4.13204e-06
1.27433e-06
4.89186e-06
1.19467e-05
3.62414e-05
5.86781e-05
7.09968e-05
7.56935e-05
7.68176e-05
7.73879e-05
7.86594e-05
8.05979e-05
8.30264e-05
8.56605e-05
8.81942e-05
8.98489e-05
9.17694e-05
9.24533e-05
9.26764e-05
9.34506e-05
9.64803e-05
0.000103517
0.000115537
0.00012901
0.00014827
0.000171168
0.000193235
0.000210893
0.00022003
0.000218707
0.00020827
0.000190492
0.000165322
0.000122809
5.23853e-05
6.92021e-06
1.64702e-06
5.00957e-06
1.80947e-05
5.22264e-05
7.15557e-05
7.52896e-05
7.2823e-05
7.08824e-05
7.13894e-05
7.34968e-05
7.61075e-05
7.88571e-05
8.162e-05
8.44233e-05
8.3513e-05
8.31073e-05
8.52333e-05
9.04648e-05
9.92665e-05
0.000103959
0.000113297
0.000121293
0.000128544
0.000133738
0.000135967
0.000134835
0.000129385
0.000120382
0.000109376
9.86704e-05
9.09133e-05
8.63016e-05
7.69656e-05
4.30061e-05
5.77726e-06
1.51164e-06
5.0845e-06
2.41714e-05
5.71826e-05
6.7687e-05
6.96809e-05
6.84963e-05
6.83849e-05
6.92525e-05
7.0194e-05
7.07223e-05
7.06647e-05
7.00071e-05
6.91205e-05
6.904e-05
7.17689e-05
8.03059e-05
9.79212e-05
0.000126474
0.00016546
0.000213832
0.000270517
0.000329875
0.000382506
0.000420485
0.000440034
0.0003664
0.00028869
0.000230524
0.000184839
0.000145151
0.000107775
5.21525e-05
1.01874e-05
1.32299e-06
5.65487e-07
5.09339e-06
6.81226e-05
5.09146e-05
4.77079e-05
6.11693e-05
6.61935e-05
7.11305e-05
7.15235e-05
7.26333e-05
7.42345e-05
7.5846e-05
7.71923e-05
7.80788e-05
7.84535e-05
7.84529e-05
7.83839e-05
7.86257e-05
7.95107e-05
8.10611e-05
8.29412e-05
8.46653e-05
8.56867e-05
8.53986e-05
8.32944e-05
7.92947e-05
7.30596e-05
6.47297e-05
5.40044e-05
4.10114e-05
2.68624e-05
1.39431e-05
4.87365e-06
8.84679e-07
2.44804e-07
4.4124e-08
8.64367e-06
4.43859e-05
5.03419e-05
3.24137e-05
2.73965e-05
2.55994e-05
2.36033e-05
2.21053e-05
2.15482e-05
2.1693e-05
2.22989e-05
2.33502e-05
2.47566e-05
2.63443e-05
2.7988e-05
2.96253e-05
3.12365e-05
3.28263e-05
3.43807e-05
3.58392e-05
3.70876e-05
3.79884e-05
3.8457e-05
3.82237e-05
3.73801e-05
3.59905e-05
3.41497e-05
3.20091e-05
2.97637e-05
2.765e-05
2.60121e-05
2.5912e-05
2.88925e-05
1.86357e-05
6.6545e-07
1.23428e-08
1.39915e-06
2.31633e-06
2.76272e-06
2.68792e-06
2.38866e-06
2.24966e-06
2.99615e-06
3.14801e-06
3.06391e-06
4.62992e-06
9.23641e-06
1.17964e-05
1.18568e-05
1.18909e-05
1.18696e-05
1.18053e-05
1.17784e-05
1.18838e-05
1.21996e-05
1.27957e-05
1.37007e-05
1.49366e-05
1.6616e-05
1.83947e-05
1.9844e-05
2.08604e-05
2.15218e-05
2.18868e-05
2.19877e-05
2.18141e-05
2.12426e-05
1.99924e-05
4.44132e-06
1.04545e-07
6.416e-09
7.47967e-08
4.45663e-07
1.46962e-06
2.83293e-06
4.15786e-06
5.18335e-06
5.87287e-06
6.20541e-06
6.32617e-06
6.2712e-06
6.07152e-06
5.84081e-06
5.53731e-06
5.15985e-06
4.77355e-06
4.21973e-06
3.67806e-06
3.0018e-06
2.39473e-06
1.59878e-06
8.47683e-07
2.95884e-06
1.61545e-05
2.91372e-05
5.55221e-05
7.34258e-05
8.81319e-05
9.82184e-05
0.000102722
9.93425e-05
7.36231e-05
3.12066e-05
1.05634e-05
9.4554e-07
3.26631e-07
5.00075e-07
2.61373e-06
8.12306e-06
1.47419e-05
2.04727e-05
2.42917e-05
2.60599e-05
2.61646e-05
2.53007e-05
2.40398e-05
2.28956e-05
2.21081e-05
2.16427e-05
2.10927e-05
2.04768e-05
1.96874e-05
1.85242e-05
1.6896e-05
1.50419e-05
1.30173e-05
9.79061e-06
7.25229e-06
1.04327e-05
1.75408e-05
2.11553e-05
2.18804e-05
2.33214e-05
2.85301e-05
4.0459e-05
4.43897e-05
3.66849e-05
1.7776e-05
9.38312e-06
1.5243e-06
1.00337e-06
2.05028e-06
1.69937e-05
3.16888e-05
4.67657e-05
5.98048e-05
6.94217e-05
7.32977e-05
6.57019e-05
5.36329e-05
3.91698e-05
2.40012e-05
1.01476e-05
8.48125e-07
2.63752e-06
2.09258e-06
2.06199e-06
5.06138e-06
7.68948e-06
1.02508e-05
1.33524e-05
1.73866e-05
2.24034e-05
2.43252e-05
2.78828e-05
3.71668e-05
4.40279e-05
4.97391e-05
5.5978e-05
6.08115e-05
5.80515e-05
3.46073e-05
1.66464e-05
7.1294e-06
2.16868e-06
8.13977e-07
1.80998e-06
1.02123e-05
2.4843e-05
3.48734e-05
4.39753e-05
5.20583e-05
5.83405e-05
6.21099e-05
6.37237e-05
6.51645e-05
6.64654e-05
5.94123e-05
5.06626e-05
4.1463e-05
3.2494e-05
2.47379e-05
1.92935e-05
1.68823e-05
1.81787e-05
2.31503e-05
3.06827e-05
3.94723e-05
4.8826e-05
5.86001e-05
6.83608e-05
7.71392e-05
8.38331e-05
8.70446e-05
8.43956e-05
6.97584e-05
3.70543e-05
1.84173e-05
7.12296e-06
2.75041e-06
1.09064e-06
2.10135e-06
1.30484e-05
3.21997e-05
4.53622e-05
5.54691e-05
6.45031e-05
7.35334e-05
8.06724e-05
8.29948e-05
8.34809e-05
8.22086e-05
7.92501e-05
7.47826e-05
6.91569e-05
6.28793e-05
5.66354e-05
5.12723e-05
4.77123e-05
4.68073e-05
4.90036e-05
5.40632e-05
6.1294e-05
6.99476e-05
7.9143e-05
8.77233e-05
9.448e-05
9.79935e-05
9.6196e-05
8.63953e-05
6.33237e-05
3.55548e-05
1.97453e-05
7.34253e-06
3.24854e-06
1.20468e-06
3.28514e-06
2.06301e-05
4.02705e-05
5.39649e-05
6.47475e-05
7.37812e-05
8.21784e-05
9.06754e-05
9.70557e-05
9.80739e-05
9.76707e-05
9.60514e-05
9.33876e-05
8.98611e-05
8.57122e-05
8.12807e-05
7.70131e-05
7.34482e-05
7.11657e-05
7.06264e-05
7.20515e-05
7.53646e-05
8.01862e-05
8.57923e-05
9.11e-05
9.45739e-05
9.37281e-05
8.4895e-05
6.90166e-05
5.1105e-05
3.18353e-05
2.03518e-05
7.75961e-06
3.66113e-06
1.30964e-06
2.72158e-06
1.63662e-05
3.84431e-05
5.30587e-05
6.47091e-05
7.45301e-05
8.3437e-05
9.25286e-05
0.000100701
0.000102489
0.000102839
0.000102094
0.000100518
9.83185e-05
9.56674e-05
9.27425e-05
8.97431e-05
8.69514e-05
8.47333e-05
8.34343e-05
8.33409e-05
8.46007e-05
8.71125e-05
9.04074e-05
9.35432e-05
9.47375e-05
9.05245e-05
7.64306e-05
5.74822e-05
4.21169e-05
2.84288e-05
2.02326e-05
7.92815e-06
4.005e-06
1.41977e-06
3.89035e-06
2.3697e-05
4.94466e-05
6.62584e-05
7.90642e-05
8.96204e-05
9.91142e-05
0.000108549
0.000116237
0.000117397
0.000116859
0.000115031
0.000112311
0.00010906
0.000105575
0.000102081
9.87407e-05
9.57831e-05
9.34708e-05
9.20305e-05
9.16538e-05
9.23882e-05
9.40259e-05
9.60115e-05
9.71772e-05
9.50825e-05
8.52435e-05
6.69888e-05
5.02933e-05
3.55417e-05
2.62987e-05
2.00178e-05
7.84393e-06
4.32951e-06
1.52143e-06
3.68259e-06
2.1963e-05
4.73732e-05
6.46013e-05
7.8288e-05
8.9734e-05
9.98105e-05
0.000109694
0.000119843
0.000126048
0.000126923
0.00012613
0.000124022
0.000120858
0.00011704
0.000113033
0.000109139
0.00010581
0.000103333
0.000101791
0.000101212
0.000101463
0.000102217
0.000102788
0.000101742
9.62752e-05
8.17847e-05
6.11327e-05
4.65449e-05
3.22198e-05
2.54968e-05
2.00935e-05
7.84126e-06
4.61712e-06
1.55651e-06
4.22762e-06
2.52801e-05
5.5069e-05
7.61224e-05
9.11291e-05
0.000102907
0.000112829
0.000122254
0.000132254
0.000140593
0.000141766
0.000141226
0.000138858
0.000134945
0.000130188
0.000125208
0.000120428
0.00011639
0.000113558
0.000112067
0.000111387
0.000110984
0.000110381
0.000108622
0.000103899
9.33039e-05
7.53971e-05
5.68061e-05
4.51678e-05
3.13438e-05
2.59763e-05
2.05251e-05
7.81121e-06
4.89464e-06
1.69421e-06
4.54943e-06
2.65519e-05
5.66357e-05
7.70552e-05
9.34226e-05
0.000107049
0.000118433
0.000128503
0.000138665
0.000149295
0.000155377
0.000156096
0.000154554
0.00015086
0.000145805
0.00014015
0.000134475
0.000129422
0.000125447
0.000122995
0.000121775
0.000120597
0.000118513
0.00011436
0.00010615
9.11536e-05
7.14299e-05
5.51907e-05
4.27654e-05
3.16907e-05
2.72503e-05
2.13974e-05
7.95237e-06
5.14747e-06
1.70107e-06
4.71806e-06
2.76918e-05
6.07009e-05
8.61261e-05
0.000104297
0.000118619
0.000130371
0.000140452
0.000150187
0.000160949
0.000171424
0.000172952
0.000172558
0.000169773
0.000164999
0.000159087
0.000152725
0.000146718
0.000141606
0.000137811
0.000135353
0.000132752
0.000128618
0.000121617
0.00010979
9.096e-05
6.98466e-05
5.51098e-05
4.13609e-05
3.28699e-05
2.88838e-05
2.24058e-05
8.08228e-06
5.38797e-06
1.85486e-06
5.24461e-06
2.99079e-05
6.45056e-05
8.96901e-05
0.000109019
0.000125215
0.000138891
0.000150417
0.000160707
0.000171223
0.000182556
0.000190357
0.000191377
0.000190211
0.000186622
0.000181246
0.000174809
0.000168303
0.000162364
0.000157416
0.000153536
0.000149155
0.000142697
0.00013271
0.000117343
9.50263e-05
7.21037e-05
5.73457e-05
4.17932e-05
3.4567e-05
3.07043e-05
2.36081e-05
8.31144e-06
5.60869e-06
1.86634e-06
5.3251e-06
3.06023e-05
6.73098e-05
9.83866e-05
0.000119921
0.000136965
0.000151389
0.000163785
0.000174746
0.000185416
0.000197042
0.000208641
0.000212004
0.000212386
0.000210663
0.000206688
0.00020093
0.000194633
0.000188532
0.000183009
0.000177561
0.000170753
0.000161277
0.000147651
0.00012824
0.000102196
7.70318e-05
5.83995e-05
4.30979e-05
3.67125e-05
3.26292e-05
2.48343e-05
8.50473e-06
5.81713e-06
2.01659e-06
5.89738e-06
3.29577e-05
7.15825e-05
0.000104619
0.000127444
0.00014575
0.000161518
0.000175299
0.000187431
0.000198694
0.000210378
0.000223053
0.000233033
0.000234735
0.000234827
0.00023291
0.000228711
0.000223513
0.000218145
0.000212475
0.000205629
0.000196593
0.000184237
0.000167122
0.000143912
0.000114456
8.63185e-05
6.047e-05
4.54817e-05
3.93436e-05
3.47738e-05
2.61909e-05
8.75495e-06
6.01048e-06
2.0371e-06
5.98794e-06
3.37976e-05
7.4742e-05
0.000112335
0.000140901
0.000160772
0.000176938
0.000191178
0.000203978
0.000215782
0.000227512
0.000240192
0.000252947
0.000258981
0.000260131
0.000259664
0.000257334
0.000253712
0.000249112
0.000243042
0.000234925
0.00022396
0.000209027
0.000188844
0.000162493
0.000130496
9.40447e-05
6.39733e-05
4.89109e-05
4.25486e-05
3.71575e-05
2.76279e-05
8.98943e-06
6.19248e-06
2.16534e-06
6.53334e-06
3.59796e-05
7.88118e-05
0.000118403
0.000150984
0.000173291
0.000190842
0.000205949
0.000219511
0.000231971
0.000243938
0.000256389
0.000269953
0.00028263
0.000286009
0.000286822
0.000285881
0.000283363
0.000279202
0.000272989
0.000264155
0.000251874
0.000235084
0.000212708
0.000184202
0.00014619
0.000100208
6.92423e-05
5.3609e-05
4.63368e-05
3.98044e-05
2.92137e-05
9.27839e-06
6.36315e-06
2.18688e-06
6.63254e-06
3.6813e-05
8.17727e-05
0.000124423
0.000161555
0.000191829
0.000211327
0.000226446
0.000239859
0.00025237
0.000264351
0.000276434
0.00028943
0.000303007
0.000312713
0.000314712
0.000314769
0.000312938
0.000309065
0.000302708
0.000293261
0.000279899
0.000261644
0.000237617
0.000207565
0.000155215
0.000107172
7.58674e-05
5.93488e-05
5.07196e-05
4.27793e-05
3.0991e-05
9.59739e-06
6.5256e-06
2.29494e-06
7.15677e-06
3.88613e-05
8.55232e-05
0.000130021
0.000169319
0.000202955
0.000228403
0.000245912
0.00026015
0.000273018
0.000285241
0.000297287
0.000309787
0.000323173
0.000336064
0.000342421
0.000343596
0.000342574
0.000339143
0.000332845
0.000323071
0.000309042
0.000289895
0.000264922
0.000221753
0.000165191
0.000116507
8.43145e-05
6.63089e-05
5.5748e-05
4.60663e-05
3.29549e-05
9.97974e-06
6.67861e-06
2.32333e-06
7.33336e-06
3.99531e-05
8.85985e-05
0.00013572
0.000177879
0.000214467
0.000245566
0.000270417
0.000285729
0.000297886
0.000309456
0.000321122
0.000333139
0.000345844
0.000359073
0.000370199
0.000372388
0.000372157
0.000369223
0.000363097
0.000353156
0.000338639
0.000318743
0.000288646
0.000235213
0.000176717
0.00012777
9.44048e-05
7.42878e-05
6.13273e-05
4.97009e-05
3.51828e-05
1.04393e-05
6.82373e-06
2.42695e-06
7.9291e-06
4.23108e-05
9.28086e-05
0.000141767
0.000185904
0.000224691
0.000258219
0.000286773
0.000308664
0.000322751
0.000334357
0.000345657
0.000357275
0.000369412
0.000382095
0.000394152
0.000400976
0.000401515
0.000399086
0.000393152
0.000383045
0.00036799
0.000347201
0.000306029
0.000248759
0.000189867
0.000140657
0.000105696
8.29845e-05
6.73641e-05
5.36269e-05
3.76195e-05
1.09635e-05
6.95974e-06
2.48494e-06
8.30694e-06
4.41315e-05
9.68979e-05
0.000148398
0.000195066
0.000236302
0.000272207
0.000303088
0.000329327
0.000348875
0.00036116
0.000371743
0.000382665
0.000394226
0.000406259
0.000418212
0.000428005
0.000430246
0.000428114
0.00042216
0.000411666
0.000395813
0.000369405
0.000321739
0.000262955
0.000204255
0.000154632
0.000117828
9.23444e-05
7.39198e-05
5.79361e-05
4.03652e-05
1.16124e-05
7.08733e-06
2.59984e-06
8.97191e-06
4.67316e-05
0.000101713
0.00015539
0.000204216
0.000247621
0.000285711
0.000318777
0.000347174
0.000370911
0.000385378
0.000396622
0.000407491
0.00041875
0.000430234
0.000441462
0.000451467
0.000457883
0.000455947
0.000449668
0.00043847
0.000421518
0.000386192
0.000335542
0.000276824
0.000218804
0.000168864
0.000130301
0.000102131
8.08973e-05
6.26002e-05
4.34132e-05
1.23642e-05
7.20636e-06
2.69261e-06
9.51385e-06
4.90347e-05
0.000106548
0.000162887
0.000214237
0.000259979
0.000300237
0.000335333
0.00036564
0.000391532
0.000408646
0.000420588
0.000431573
0.00044283
0.000454171
0.000464919
0.000474182
0.000480672
0.000482267
0.000475518
0.000463385
0.000439339
0.000400281
0.00034892
0.000290857
0.000233507
0.000183203
0.00014295
0.0001122
8.82061e-05
6.75974e-05
4.6813e-05
1.32916e-05
7.31686e-06
2.81471e-06
1.01951e-05
5.16415e-05
0.000111581
0.000170411
0.000224177
0.000272215
0.000314634
0.000351749
0.000383923
0.000411516
0.000429905
0.000442504
0.000453878
0.000465391
0.000476863
0.000487539
0.000496421
0.000502229
0.000503266
0.000497314
0.000481736
0.000454074
0.00041345
0.000361945
0.000304653
0.000248015
0.00019745
0.000155679
0.000122521
9.58875e-05
7.30461e-05
5.06839e-05
1.42847e-05
7.41816e-06
2.92791e-06
1.08327e-05
5.41993e-05
0.000116788
0.00017836
0.000234691
0.000285059
0.000329577
0.000368584
0.000402463
0.000431583
0.000451714
0.00046444
0.000475646
0.00048712
0.000498629
0.000509233
0.000517769
0.000522838
0.000522651
0.000514958
0.00049729
0.000467733
0.000426075
0.000374659
0.00031816
0.000262183
0.00021141
0.000168315
0.000132983
0.000103893
7.89227e-05
5.49534e-05
1.52212e-05
7.50863e-06
3.04592e-06
1.15359e-05
5.69432e-05
0.000122193
0.000186506
0.000245443
0.000298197
0.000344856
0.000385756
0.000421293
0.000451848
0.000473813
0.000486371
0.000496987
0.000508053
0.000519355
0.000529738
0.000537803
0.000541989
0.000540447
0.000531016
0.000511532
0.000480561
0.000438315
0.00038719
0.00033144
0.000275989
0.000224965
0.000180665
0.000143392
0.000112089
8.51588e-05
5.95934e-05
1.61136e-05
7.58991e-06
3.16668e-06
1.22899e-05
5.98736e-05
0.000127936
0.000195116
0.00025672
0.000311871
0.00036064
0.000403374
0.000440482
0.000472367
0.00049651
0.000508791
0.000518476
0.000528746
0.000539503
0.00054941
0.00055682
0.000559996
0.000557055
0.00054598
0.000524933
0.000492889
0.000450339
0.000399624
0.000344577
0.000289544
0.000238211
0.000192765
0.000153725
0.000120433
9.17147e-05
6.45731e-05
1.69868e-05
7.66271e-06
3.2852e-06
1.30423e-05
6.27799e-05
0.00013367
0.000203793
0.000268185
0.000325849
0.000376816
0.000421427
0.0004601
0.000493255
0.000519203
0.000531097
0.000539769
0.000549096
0.000559105
0.000568322
0.000574905
0.000576974
0.000572641
0.000560053
0.000537678
0.000504826
0.000462173
0.000411952
0.000357599
0.000302946
0.000251288
0.000204721
0.000163976
0.000128807
9.84763e-05
6.98897e-05
1.78676e-05
7.72778e-06
3.41502e-06
1.38361e-05
6.57515e-05
0.000139441
0.000212466
0.000279616
0.000339786
0.00039296
0.000439457
0.000479697
0.000514103
0.000541326
0.000552755
0.000560472
0.00056889
0.000578113
0.00058655
0.000592205
0.000593116
0.000587428
0.000573465
0.000549967
0.000516511
0.000473885
0.000424188
0.000370495
0.00031619
0.000264222
0.000216593
0.000174253
0.000137391
0.00010556
7.46907e-05
1.87819e-05
7.78044e-06
3.54128e-06
1.45834e-05
6.85662e-05
0.000145032
0.000220984
0.000290929
0.000353638
0.000409037
0.000457423
0.000499209
0.000534823
0.000562568
0.000573359
0.000580165
0.000587733
0.00059619
0.000603835
0.00060855
0.00060832
0.000601358
0.000586165
0.00056173
0.000527834
0.000485321
0.000436136
0.000383036
0.000329036
0.000276817
0.000228323
0.00018469
0.000146392
0.00011284
7.80035e-05
1.95461e-05
7.81165e-06
3.68158e-06
1.53842e-05
7.14511e-05
0.000150615
0.000229379
0.000302017
0.000367188
0.000424759
0.000474998
0.0005183
0.000555086
0.000582359
0.000592359
0.000598385
0.000605253
0.000613037
0.000619932
0.000623738
0.000622428
0.000614302
0.000598038
0.000572844
0.000538663
0.000496357
0.000447708
0.000395183
0.000341492
0.000289119
0.000239981
0.00019534
0.000155791
0.000120381
8.10958e-05
2.02125e-05
7.82668e-06
3.82314e-06
1.61622e-05
7.42437e-05
0.000156063
0.000237594
0.000312869
0.000380438
0.000440116
0.000492143
0.000536898
0.000574793
0.000600982
0.00061006
0.000615372
0.000621642
0.000628836
0.000635055
0.00063803
0.00063573
0.00062655
0.000609337
0.000583484
0.000549067
0.000506947
0.000458762
0.00040673
0.000353316
0.000300858
0.000251265
0.000205887
0.000165321
0.000128051
8.38964e-05
2.07491e-05
7.83389e-06
3.97619e-06
1.69791e-05
7.70661e-05
0.000161443
0.000245609
0.000323392
0.000393246
0.000454938
0.000508676
0.000554823
0.000593774
0.000618493
0.000626578
0.000631275
0.000637082
0.000643799
0.000649424
0.000651649
0.000648478
0.000638396
0.000620392
0.000594019
0.000559456
0.000517555
0.00046981
0.000418213
0.000365006
0.000312407
0.000262349
0.000216285
0.00017479
0.000135703
8.65928e-05
2.12368e-05
7.83767e-06
4.12978e-06
1.77845e-05
7.98277e-05
0.0001667
0.000253415
0.000333599
0.000405625
0.000469219
0.000524568
0.000572022
0.000611967
0.000635439
0.000642498
0.000646544
0.000651928
0.000658246
0.000663347
0.000664879
0.000660894
0.000649986
0.000631286
0.000604472
0.000569801
0.000528125
0.000480823
0.00042968
0.000376717
0.000324009
0.000273496
0.000226748
0.000184352
0.00014348
8.93423e-05
2.17448e-05
7.83529e-06
4.28606e-06
1.86177e-05
8.26271e-05
0.000171914
0.000261055
0.000343507
0.000417576
0.000482954
0.000539811
0.000588486
0.00062936
0.000651961
0.000658016
0.00066138
0.000666357
0.000672347
0.000677036
0.000678002
0.000673316
0.000661672
0.000642337
0.000615109
0.000580319
0.0005388
0.000491843
0.000441081
0.000388349
0.00033557
0.000284652
0.00023725
0.000193961
0.000151279
9.2021e-05
2.22351e-05
7.82086e-06
4.44087e-06
1.94534e-05
8.54234e-05
0.000177076
0.000268553
0.000353154
0.000429134
0.000496167
0.000554413
0.000604208
0.000645929
0.000667885
0.000672943
0.000675606
0.000680183
0.000685878
0.000690216
0.000690715
0.000685478
0.000673274
0.000653455
0.000625911
0.000591031
0.00054965
0.000502982
0.000452534
0.000399997
0.000347176
0.000295931
0.000247964
0.000203838
0.000159299
9.46626e-05
2.27186e-05
7.78982e-06
4.59255e-06
2.03413e-05
8.83685e-05
0.00018237
0.000276094
0.000362722
0.000440478
0.00050903
0.000568538
0.000619341
0.00066182
0.00068326
0.000687329
0.000689252
0.000693391
0.000698773
0.000702774
0.000702855
0.000697153
0.000684515
0.000664372
0.000636657
0.000601766
0.000560519
0.000514089
0.000463894
0.000411524
0.000358695
0.00030723
0.000258855
0.000214038
0.000167623
9.72101e-05
2.31543e-05
7.7432e-06
4.73778e-06
2.12283e-05
9.1305e-05
0.000187595
0.00028348
0.000372035
0.000451458
0.000521418
0.000582084
0.000633804
0.000676966
0.0006981
0.000701196
0.000702358
0.000706045
0.00071112
0.000714804
0.000714514
0.000708425
0.000695464
0.00067513
0.000647388
0.000612616
0.000571569
0.000525341
0.000475297
0.000422989
0.000370118
0.00031852
0.000269915
0.000224583
0.000176329
9.97878e-05
2.35903e-05
7.68994e-06
4.87334e-06
2.21131e-05
9.42271e-05
0.000192747
0.000290716
0.000381113
0.000462112
0.000533387
0.000595121
0.000647678
0.00069146
0.000712784
0.000714926
0.000715233
0.000718391
0.000723115
0.000726462
0.000725795
0.000719332
0.000706083
0.000685617
0.000657922
0.000623345
0.00058257
0.000536592
0.000486686
0.000434364
0.000381346
0.000329552
0.000280825
0.000235357
0.000185613
0.000102446
2.40277e-05
7.63584e-06
4.99932e-06
2.29995e-05
9.71369e-05
0.000197807
0.000297759
0.000389892
0.000472366
0.000544863
0.000607585
0.000660912
0.000705268
0.000727172
0.000728499
0.000727971
0.000730599
0.000734974
0.000737993
0.000736954
0.00073012
0.000716591
0.00069601
0.000668392
0.000634048
0.000593577
0.000547864
0.000498076
0.000445684
0.000392504
0.000340679
0.000292165
0.000246264
0.000191942
0.000104942
2.4477e-05
7.58333e-06
5.11432e-06
2.3854e-05
9.99298e-05
0.000202645
0.00030448
0.000398259
0.000482125
0.000555771
0.000619416
0.000673459
0.000718346
0.000740654
0.000741317
0.000740161
0.000742422
0.000746556
0.000749304
0.000747922
0.000740731
0.000726931
0.000706245
0.000678715
0.000644616
0.00060445
0.000558987
0.000509313
0.000456908
0.000403719
0.000352074
0.000303847
0.000257143
0.000197264
0.000107256
2.49258e-05
7.53072e-06
5.22603e-06
2.46567e-05
0.00010254
0.000207157
0.000310732
0.00040603
0.000491183
0.000565894
0.000630397
0.000685111
0.000730497
0.000752595
0.000752762
0.000751358
0.000753579
0.000757679
0.000760265
0.000758586
0.000751051
0.000736974
0.000716168
0.000688708
0.000654836
0.000614969
0.00056977
0.000520255
0.00046793
0.000414881
0.000363578
0.000315663
0.000267923
0.00020221
0.00010929
2.53043e-05
7.47249e-06
5.33494e-06
2.54189e-05
0.000105031
0.000211455
0.000316657
0.000413348
0.000499662
0.000575315
0.000640568
0.000695859
0.000741669
0.000762411
0.000762195
0.000761048
0.000763692
0.000768066
0.000770673
0.000768804
0.000760988
0.000746669
0.000725751
0.000698348
0.000664685
0.000625114
0.000580214
0.000530943
0.00047882
0.000426037
0.000375166
0.000327605
0.000278689
0.000206842
0.000111143
2.56465e-05
7.40876e-06
5.44156e-06
2.61445e-05
0.000107397
0.000215535
0.000322262
0.000420237
0.000507594
0.000584073
0.000649957
0.000705716
0.000751851
0.000769819
0.000769226
0.000768813
0.000772335
0.000777293
0.000780113
0.000778191
0.000770204
0.000755728
0.000734757
0.000707444
0.000674006
0.000634749
0.000590193
0.000541258
0.000489487
0.000437155
0.000386881
0.000339743
0.000289556
0.000211226
0.000112835
2.59526e-05
7.33937e-06
5.54162e-06
2.6826e-05
0.000109625
0.000219391
0.000327565
0.00042674
0.000515047
0.000592249
0.000658663
0.000714788
0.000761154
0.00077557
0.000774537
0.000775073
0.000779683
0.000785366
0.00078851
0.000786643
0.000778597
0.000764067
0.000743124
0.000715958
0.000682783
0.000643884
0.000599746
0.000551276
0.00050003
0.000448325
0.000398783
0.000352139
0.000300599
0.000215497
0.000114446
2.62223e-05
7.26533e-06
5.63539e-06
2.75137e-05
0.000111847
0.000223172
0.000332698
0.000432969
0.000522124
0.00059995
0.000666799
0.000723205
0.00076973
0.000780506
0.000779082
0.000780585
0.000786236
0.000792607
0.00079609
0.000794338
0.000786306
0.000771792
0.000750934
0.000723954
0.000691068
0.000652535
0.000608814
0.000560812
0.000510171
0.000459384
0.000411096
0.000365048
0.000309747
0.000219704
0.000116091
2.65004e-05
7.18776e-06
5.72171e-06
2.81837e-05
0.000114004
0.000226804
0.000337587
0.000438863
0.00052878
0.000607152
0.000674363
0.000730986
0.000777634
0.000784644
0.000783142
0.000785625
0.000792196
0.000799188
0.000803015
0.000801418
0.000793457
0.000779015
0.000758283
0.000731501
0.000698879
0.000660668
0.000617351
0.000569939
0.000520266
0.000470966
0.000424296
0.000378025
0.000316005
0.00022351
0.000117607
2.67647e-05
7.10808e-06
5.80409e-06
2.8817e-05
0.000116031
0.000230199
0.000342137
0.00044433
0.000534934
0.000613785
0.000681292
0.000738056
0.000782243
0.000787648
0.000786635
0.000790069
0.000797524
0.000805137
0.000809321
0.000807909
0.000800066
0.000785751
0.000765189
0.000738623
0.000706255
0.00066835
0.000625461
0.000578751
0.000530259
0.000482679
0.000437686
0.000390908
0.000321864
0.000226962
0.000118919
2.69786e-05
7.02761e-06
5.88676e-06
2.94297e-05
0.000117969
0.000233415
0.000346408
0.000449424
0.00054063
0.000619885
0.000687626
0.000744475
0.000784853
0.000789492
0.000789254
0.000793846
0.00080228
0.000810535
0.000815074
0.000813855
0.000806156
0.000792002
0.000771639
0.000745305
0.000713198
0.000675603
0.000633164
0.000587214
0.000539989
0.000494203
0.0004509
0.000403523
0.000327288
0.000230092
0.000120047
2.71442e-05
6.94903e-06
5.97425e-06
3.00541e-05
0.000119908
0.000236574
0.000350532
0.00045427
0.000545981
0.000625551
0.000693442
0.000750299
0.000785715
0.000789689
0.000790665
0.000796763
0.000806352
0.000815301
0.0008202
0.000819177
0.000811636
0.000797666
0.000777526
0.000751444
0.000719613
0.000682351
0.000640392
0.000595226
0.000549256
0.000505221
0.000463601
0.000415643
0.000332195
0.000232848
0.000120969
2.7259e-05
6.87514e-06
6.06668e-06
3.0629e-05
0.000121683
0.000239478
0.000354318
0.000458699
0.000550841
0.000630658
0.000698633
0.000755433
0.000784554
0.000787968
0.000790677
0.000798702
0.000809652
0.000819358
0.000824625
0.000823806
0.000816446
0.00080269
0.000782801
0.000756996
0.000725465
0.000688552
0.000647079
0.000602723
0.000558156
0.0005161
0.000475636
0.000423386
0.000336454
0.000235202
0.00012169
2.73249e-05
6.80609e-06
6.16442e-06
3.11577e-05
0.000123309
0.000242154
0.000357797
0.000462745
0.000555242
0.000635228
0.000703213
0.000759887
0.000781171
0.000784227
0.000789267
0.000799636
0.000812124
0.00082263
0.00082828
0.000827693
0.000820557
0.00080706
0.000787461
0.000761961
0.000730748
0.000694214
0.000653325
0.000610017
0.000567153
0.000527058
0.00048681
0.000428597
0.000340136
0.000237243
0.000122322
2.73947e-05
6.74357e-06
6.26546e-06
3.15909e-05
0.000124657
0.000244459
0.000360849
0.000466308
0.000559095
0.000639175
0.000707095
0.000763601
0.000775367
0.00077865
0.000786641
0.000799547
0.000813544
0.000824823
0.000830897
0.000830629
0.000823809
0.000810645
0.000791388
0.000766231
0.000735384
0.000699321
0.000659182
0.000617108
0.000576014
0.000537672
0.000497266
0.000433365
0.000343424
0.000239035
0.000122874
2.74643e-05
6.68641e-06
6.36898e-06
3.19349e-05
0.000125753
0.000246471
0.0003636
0.000469547
0.000562562
0.000642621
0.00071029
0.000757506
0.000767798
0.000773201
0.000783739
0.000798596
0.000813839
0.000825868
0.00083244
0.000832588
0.000826175
0.000813418
0.000794555
0.000769781
0.000739352
0.00070386
0.000664615
0.000623922
0.000584653
0.000547953
0.000507202
0.000437794
0.000346411
0.000240607
0.000123323
2.75143e-05
6.63076e-06
6.4727e-06
3.22217e-05
0.00012669
0.000248313
0.000366211
0.000472672
0.000565923
0.000645947
0.000713323
0.000751197
0.000760009
0.000767234
0.000780095
0.000796739
0.000813114
0.00082584
0.000832928
0.000833562
0.00082765
0.000815395
0.000797004
0.000772676
0.000742729
0.000707886
0.000669632
0.000630405
0.000592988
0.000557878
0.000516718
0.000441982
0.000349215
0.000242071
0.000123735
2.75598e-05
6.57509e-06
6.57023e-06
3.2433e-05
0.000127404
0.000249877
0.000368569
0.000475603
0.000569153
0.000649193
0.000716311
0.000745766
0.000752995
0.000761571
0.000776239
0.000794239
0.000811449
0.000824718
0.000832283
0.000833444
0.000828123
0.000816479
0.000798674
0.000774899
0.000745536
0.000711438
0.000674259
0.000636552
0.000601003
0.000567491
0.000525904
0.000445851
0.000351738
0.000243324
0.000124025
2.75644e-05
6.51675e-06
6.65497e-06
3.25358e-05
0.000127782
0.000250953
0.000370412
0.000478084
0.000572048
0.000652239
0.000719237
0.000742341
0.000747959
0.000757122
0.000772783
0.000791499
0.000809117
0.000822682
0.000830604
0.00083226
0.000827552
0.00081658
0.000799446
0.000776317
0.000747614
0.000714313
0.000678278
0.000642279
0.000608872
0.000576529
0.000531115
0.000449313
0.000353941
0.000244302
0.000124111
2.74941e-05
6.45448e-06
6.71969e-06
3.251e-05
0.000127749
0.000251383
0.000371515
0.000479857
0.000574366
0.000654906
0.000722019
0.000742056
0.000746149
0.000754865
0.000770444
0.000789111
0.000806681
0.000820282
0.000828402
0.000830446
0.000826296
0.000815992
0.000799566
0.000777138
0.000749151
0.00071672
0.000681943
0.000647751
0.000616352
0.000584663
0.000535425
0.000452648
0.000356133
0.000245334
0.000124259
2.74415e-05
6.39237e-06
6.76158e-06
3.24318e-05
0.000127499
0.000251349
0.000371979
0.000480937
0.000576059
0.000657122
0.000724607
0.0007457
0.000748311
0.000755372
0.000769788
0.000787729
0.000804841
0.000818176
0.00082623
0.000828434
0.000824668
0.000814931
0.000799185
0.000777492
0.000750301
0.000718822
0.000685319
0.000652804
0.000623138
0.000591975
0.00053959
0.00045594
0.000358402
0.000246532
0.000124574
2.74397e-05
6.33431e-06
6.77926e-06
3.23303e-05
0.000127124
0.000250919
0.000371796
0.000481224
0.000576949
0.000658658
0.000726759
0.00075281
0.000754426
0.00075903
0.000771404
0.000788008
0.000804266
0.000817022
0.000824702
0.000826751
0.000823075
0.000813663
0.000798432
0.000777393
0.000750977
0.000720442
0.00068815
0.000657139
0.00062898
0.000598325
0.000543498
0.000459043
0.000360556
0.000247679
0.000124876
2.74329e-05
6.27971e-06
6.78822e-06
3.23213e-05
0.000127003
0.000250653
0.00037155
0.000481223
0.000577399
0.000659713
0.000728516
0.000761617
0.000763167
0.000765344
0.000775354
0.000790276
0.000805411
0.000817355
0.000824405
0.000826
0.000822088
0.000812692
0.000797717
0.00077714
0.000751361
0.000721643
0.000690383
0.000660627
0.000633751
0.000603679
0.000547191
0.000462
0.000362612
0.000248761
0.00012513
2.74109e-05
6.2269e-06
6.79684e-06
3.23785e-05
0.000127075
0.000250596
0.000371416
0.000481173
0.000577631
0.000660421
0.000729864
0.000769657
0.000772043
0.000772605
0.000780687
0.000794083
0.00080811
0.000819189
0.00082549
0.000826437
0.000822035
0.000812369
0.000797377
0.000777029
0.000751696
0.000722613
0.000692167
0.000663399
0.000637579
0.000608179
0.000550818
0.000464999
0.000364792
0.000250013
0.00012554
2.74406e-05
6.17887e-06
6.81143e-06
3.24566e-05
0.000127202
0.000250567
0.000371236
0.000480967
0.000577573
0.0006607
0.000730657
0.000775469
0.000779217
0.000779237
0.000786283
0.000798723
0.000811964
0.000822343
0.00082795
0.000828205
0.000823175
0.000813026
0.00079776
0.000777374
0.00075223
0.000723533
0.000693638
0.000665565
0.000640546
0.00061183
0.000554315
0.000467964
0.000367005
0.000251333
0.000126013
2.74925e-05
6.1364e-06
6.83564e-06
3.25573e-05
0.000127404
0.000250618
0.000371071
0.000480663
0.000577277
0.000660582
0.000730889
0.000778444
0.000783721
0.000784175
0.000791136
0.000803323
0.000816255
0.000826255
0.000831388
0.000831086
0.000825472
0.000814795
0.00079913
0.000778527
0.000753365
0.000724828
0.000695233
0.000667572
0.000643067
0.000614915
0.000557647
0.000470865
0.00036924
0.000252727
0.000126568
2.75717e-05
6.09789e-06
6.86981e-06
3.2683e-05
0.000127668
0.000250743
0.000370937
0.000480301
0.000576796
0.000660124
0.000730603
0.000778333
0.000785007
0.000786683
0.000794407
0.000806989
0.000820066
0.00083002
0.000834946
0.000834306
0.000828275
0.000817168
0.000801133
0.000780283
0.000755034
0.00072658
0.000697209
0.000669863
0.000645718
0.000617911
0.000560774
0.000473622
0.000371412
0.000254141
0.000127189
2.76773e-05
6.06033e-06
6.91425e-06
3.28121e-05
0.000127919
0.000250857
0.000370766
0.000479835
0.000576108
0.000659329
0.000729827
0.000775835
0.000783625
0.000787022
0.000796135
0.000809609
0.00082317
0.000833319
0.000838238
0.000837445
0.000831161
0.000819752
0.000803427
0.000782363
0.000757039
0.000728687
0.000699602
0.000672676
0.000648958
0.000621314
0.000563642
0.000476104
0.000373331
0.00025536
0.000127708
2.77567e-05
6.01764e-06
6.96575e-06
3.29776e-05
0.000128265
0.00025109
0.000370685
0.000479383
0.000575319
0.00065829
0.000728651
0.000771563
0.000780171
0.000785585
0.000796528
0.000811269
0.000825573
0.000836097
0.000841153
0.000840346
0.000833945
0.000822354
0.000805829
0.000784611
0.00075925
0.000731056
0.000702375
0.000676086
0.000653041
0.000625521
0.000566321
0.000478366
0.000375027
0.000256386
0.000128107
2.78027e-05
5.96689e-06
7.0165e-06
3.31306e-05
0.000128572
0.000251288
0.000370568
0.000478865
0.000574399
0.000657025
0.000727126
0.00076609
0.000775182
0.000782691
0.000795711
0.00081196
0.000827186
0.000838208
0.000843506
0.00084279
0.000836381
0.000824711
0.000808071
0.000786761
0.000761414
0.000733436
0.000705265
0.000679794
0.000657648
0.000630289
0.000568833
0.000480468
0.000376589
0.000257311
0.000128451
2.78349e-05
5.9122e-06
7.06791e-06
3.32381e-05
0.000128759
0.000251346
0.000370309
0.000478194
0.000573294
0.000655518
0.000725286
0.000760053
0.000769517
0.000779188
0.0007944
0.000812229
0.00082841
0.000839964
0.000845552
0.00084499
0.000838641
0.000826956
0.000810256
0.000788893
0.000763588
0.000735861
0.00070826
0.000683709
0.000662579
0.000635363
0.000571163
0.00048243
0.000378077
0.000258231
0.000128836
2.78859e-05
5.86048e-06
7.12396e-06
3.33993e-05
0.000129109
0.000251632
0.000370285
0.00047772
0.000572314
0.000654039
0.000723355
0.000752751
0.000762619
0.000774768
0.000792418
0.000811953
0.000829139
0.000841244
0.000847157
0.000846811
0.000840596
0.000828966
0.000812259
0.000790884
0.000765655
0.000738213
0.000711228
0.00068765
0.000667555
0.000640369
0.0005731
0.00048402
0.000379248
0.000258919
0.000129088
2.79046e-05
5.81388e-06
7.1867e-06
3.35402e-05
0.000129398
0.000251884
0.000370266
0.000477268
0.000571339
0.000652512
0.000721304
0.000743675
0.000754134
0.000769135
0.000789346
0.00081059
0.00082881
0.000841561
0.000847926
0.000847917
0.000841951
0.000830479
0.00081386
0.000792553
0.00076747
0.000740384
0.000714089
0.000691549
0.0006725
0.000645241
0.000574675
0.000485268
0.000380133
0.000259412
0.000129252
2.79065e-05
5.77115e-06
7.25811e-06
3.36353e-05
0.000129575
0.000252026
0.000370145
0.000476702
0.000570188
0.000650678
0.000713492
0.000732734
0.000745299
0.000763048
0.000785321
0.000807931
0.000827096
0.000840573
0.000847533
0.000848015
0.000842434
0.000831242
0.000814815
0.000793667
0.000768813
0.000742166
0.000716649
0.000695227
0.000677268
0.000649891
0.000575912
0.000486222
0.000380794
0.000259767
0.000129362
2.79061e-05
5.73194e-06
7.33871e-06
3.36376e-05
0.000129469
0.000251841
0.000369748
0.000475936
0.000568895
0.000648699
0.000702663
0.000720976
0.000735642
0.000755792
0.000779903
0.000803753
0.000823791
0.000837993
0.000845625
0.000846729
0.000841688
0.000830935
0.000814848
0.000793988
0.000769468
0.000743343
0.00071869
0.000698488
0.000681427
0.00065179
0.000576527
0.000486612
0.000380967
0.000259744
0.000129234
2.78393e-05
5.69246e-06
7.42393e-06
3.3595e-05
0.000129189
0.00025143
0.000369147
0.000475033
0.000567557
0.000646771
0.000693171
0.000710252
0.000726257
0.000748088
0.000773488
0.000798207
0.000818881
0.000833675
0.000841955
0.000843751
0.000839379
0.000829221
0.000813644
0.000793237
0.000769211
0.000743806
0.000720286
0.000701466
0.000684805
0.000651942
0.000576517
0.000486453
0.000380685
0.000259388
0.000128916
2.77282e-05
5.64976e-06
7.49879e-06
3.35654e-05
0.000128912
0.000250939
0.000368426
0.000474046
0.000566246
0.000645048
0.000687189
0.000702915
0.000719045
0.000741344
0.000767106
0.000792035
0.000812886
0.000827943
0.000836647
0.000839036
0.000835345
0.000825858
0.000810895
0.000791068
0.000767681
0.000743124
0.000720749
0.00070311
0.000686681
0.000651424
0.000575787
0.000485543
0.000379661
0.000258361
0.00012811
2.74628e-05
5.59684e-06
7.55363e-06
3.35458e-05
0.00012863
0.000250342
0.000367529
0.000472889
0.000564879
0.000643509
0.000686126
0.000700739
0.000715737
0.000737202
0.000762329
0.000786737
0.000807201
0.000822067
0.000830818
0.000833497
0.000830313
0.000821459
0.000807166
0.000788035
0.00076543
0.00074184
0.000720638
0.000704111
0.000687946
0.000650811
0.000574991
0.00048461
0.000378672
0.000257447
0.000127455
2.72493e-05
5.53798e-06
7.58762e-06
3.36379e-05
0.000128657
0.000249976
0.000366702
0.000471692
0.000563484
0.000642109
0.000689488
0.000703933
0.000717248
0.000736996
0.000760681
0.000783903
0.000803398
0.000817508
0.000825741
0.000828165
0.000825
0.000816426
0.00080261
0.000784096
0.000762263
0.000739641
0.000719586
0.000704172
0.000688488
0.000650138
0.0005742
0.000483715
0.000377731
0.000256564
0.000126804
2.70381e-05
5.47629e-06
7.60706e-06
3.38305e-05
0.00012904
0.000249983
0.000366109
0.00047055
0.000562005
0.000640594
0.000694043
0.000709531
0.000721875
0.000740293
0.000762732
0.000784735
0.000802958
0.000815823
0.000822972
0.000824562
0.000820838
0.000811996
0.000798209
0.000779983
0.000758654
0.000736735
0.000717553
0.000703055
0.000687977
0.000649234
0.000573273
0.000482745
0.000376742
0.000255637
0.000126101
2.67889e-05
5.40983e-06
7.62744e-06
3.39805e-05
0.000129395
0.000249994
0.000365478
0.000469248
0.000560193
0.000638557
0.000695865
0.000713263
0.000726175
0.000744571
0.000766693
0.000788107
0.00080545
0.000817179
0.000823036
0.000823331
0.000818498
0.000808844
0.000794564
0.000776172
0.00075498
0.000733475
0.000714962
0.000701317
0.000686988
0.000648222
0.000572363
0.000481912
0.000376002
0.000255038
0.000125704
2.66454e-05
5.34875e-06
7.65046e-06
3.41137e-05
0.000129768
0.000250048
0.000364841
0.000467809
0.000558032
0.000635897
0.000693827
0.00071334
0.000728329
0.00074822
0.000771135
0.000792705
0.000809707
0.00082072
0.00082559
0.000824725
0.000818615
0.00080766
0.000792221
0.000772945
0.000751185
0.000729402
0.000710896
0.000697613
0.000684133
0.00064666
0.000571015
0.000480685
0.000374857
0.000254007
0.000124926
2.63792e-05
5.28921e-06
7.6662e-06
3.41774e-05
0.000130007
0.000249977
0.000364091
0.000466215
0.000555584
0.00063272
0.000688637
0.000709731
0.000727483
0.000749944
0.000774718
0.000797344
0.000814691
0.000825515
0.000829848
0.000828229
0.000821202
0.000809195
0.000792596
0.000772071
0.000749038
0.000726051
0.000706518
0.000692641
0.00067965
0.000644577
0.000569337
0.0004793
0.00037367
0.000252986
0.000124165
2.61167e-05
5.23266e-06
7.67461e-06
3.42058e-05
0.000130168
0.000249827
0.000363287
0.000464577
0.000553055
0.000629342
0.00068128
0.000703375
0.000723979
0.000749294
0.000776253
0.000800341
0.000818586
0.000829883
0.000834323
0.000832463
0.000824918
0.000812203
0.000794748
0.000773234
0.000749059
0.000724703
0.000703609
0.000688358
0.000675061
0.000642001
0.000567245
0.000477663
0.000372416
0.000252043
0.000123528
2.59006e-05
5.18099e-06
7.68028e-06
3.41284e-05
0.000130062
0.000249341
0.00036215
0.000462646
0.000550269
0.000625704
0.000672098
0.000695027
0.000718683
0.000746939
0.000776023
0.000801515
0.000820747
0.000832825
0.000837885
0.00083642
0.000828952
0.000815945
0.000797873
0.000775523
0.000750361
0.000724854
0.000702417
0.000685752
0.000671484
0.000638918
0.000564571
0.000475497
0.000370782
0.000250915
0.000122868
2.56915e-05
5.13061e-06
7.68598e-06
3.39476e-05
0.000129667
0.000248482
0.000360617
0.000460331
0.000547123
0.000621721
0.000661016
0.000684846
0.00071187
0.000743109
0.000774141
0.000800852
0.000821022
0.000834004
0.000839968
0.000839316
0.000832443
0.000819707
0.000801526
0.000778686
0.000752717
0.000726214
0.000702696
0.000684864
0.000669305
0.000635522
0.000561444
0.000472851
0.00036875
0.000249538
0.000122116
2.54709e-05
5.07775e-06
7.69031e-06
3.37364e-05
0.000129139
0.0002474
0.000358806
0.000457719
0.000543693
0.000617566
0.000648973
0.00067428
0.00070462
0.000738278
0.000770668
0.000798215
0.000819149
0.000833036
0.000840062
0.00084053
0.000834682
0.000822722
0.000804964
0.000782171
0.000755927
0.000728937
0.000704758
0.000685919
0.000668547
0.000631792
0.000557765
0.00046953
0.000366046
0.000247626
0.000121062
2.51764e-05
5.02008e-06
7.69639e-06
3.34553e-05
0.000128376
0.000245967
0.000356586
0.000454664
0.000539744
0.000605465
0.000636351
0.000664407
0.000697427
0.000732819
0.000766101
0.000794122
0.000815521
0.000830108
0.000838134
0.000839838
0.000835306
0.000824562
0.000807772
0.000785634
0.000759787
0.000733035
0.000708898
0.000689462
0.000669822
0.000627965
0.000553782
0.00046576
0.000362847
0.000245307
0.000119808
2.48442e-05
4.95725e-06
7.70508e-06
3.30769e-05
0.000127276
0.00024404
0.0003538
0.000451048
0.000535298
0.000592399
0.000623248
0.000654151
0.000689795
0.000726694
0.000760539
0.000788687
0.000810221
0.000825213
0.000834015
0.000836855
0.000833733
0.000824527
0.000809248
0.000788488
0.000763867
0.000738202
0.000714865
0.000695289
0.000673053
0.000624144
0.000549641
0.000461704
0.000359285
0.000242634
0.000118319
2.44474e-05
4.88825e-06
7.71739e-06
3.26869e-05
0.000126044
0.000241831
0.000350622
0.000447007
0.000530477
0.00057918
0.00061038
0.000644235
0.000682302
0.000720366
0.000754438
0.000782408
0.000803764
0.000818807
0.000828011
0.00083167
0.000829796
0.000822227
0.000808876
0.000790201
0.000767672
0.000743935
0.000722031
0.000702591
0.00067747
0.000620346
0.000545399
0.000457448
0.000355448
0.00023965
0.000116562
2.39539e-05
4.81828e-06
7.73253e-06
3.2216e-05
0.000124508
0.000239113
0.000346787
0.000442247
0.000525025
0.000565471
0.000597739
0.000634718
0.000674935
0.000713842
0.000747941
0.000775601
0.000796598
0.000811405
0.000820624
0.000824674
0.000823675
0.000817537
0.000806174
0.000789973
0.00077027
0.000749487
0.000730095
0.000711135
0.00068098
0.000616952
0.000541496
0.000453444
0.000351778
0.000236741
0.000114781
2.3432e-05
4.75622e-06
7.75355e-06
3.17455e-05
0.000122929
0.000236223
0.00034256
0.000436792
0.000513272
0.000551889
0.000586623
0.000626019
0.000667695
0.000707181
0.000741264
0.000768578
0.000789096
0.000803427
0.000812291
0.00081625
0.000815601
0.000810463
0.000800952
0.000787583
0.000771631
0.000755015
0.000738756
0.000718754
0.000678598
0.000613931
0.00053805
0.000449899
0.000348526
0.000234172
0.000113215
2.29813e-05
4.71153e-06
7.78356e-06
3.13045e-05
0.000121431
0.000233423
0.000338365
0.000431277
0.000500334
0.000538938
0.000576061
0.000617709
0.000660771
0.000700808
0.000734871
0.000761847
0.000781868
0.000795621
0.000803899
0.000807384
0.000806579
0.000801896
0.000793789
0.000783033
0.000770888
0.000758676
0.000745837
0.000725319
0.000676852
0.000611604
0.000535269
0.00044692
0.000345705
0.000231899
0.000111828
2.26133e-05
4.68846e-06
7.82006e-06
3.08815e-05
0.000119931
0.000230554
0.00033401
0.000425517
0.00048715
0.000526065
0.000565857
0.000609829
0.000654178
0.000694649
0.000728663
0.000755358
0.000774964
0.000788189
0.000795832
0.000798642
0.000797293
0.000792493
0.000785102
0.000776296
0.000767513
0.000759667
0.000750722
0.00073065
0.000675574
0.000609883
0.00053309
0.000444432
0.000343214
0.000229809
0.000110546
2.23088e-05
4.68246e-06
7.8607e-06
3.04394e-05
0.000118309
0.000227459
0.000329356
0.000419425
0.000473891
0.00051328
0.000555805
0.000602128
0.000647778
0.000688685
0.000722662
0.000749139
0.000768447
0.000781271
0.000788365
0.00079047
0.00078835
0.000782955
0.000775574
0.000767952
0.000761949
0.000758099
0.000752127
0.000729178
0.000674123
0.000608279
0.00053114
0.000442128
0.000340761
0.000227609
0.000109105
2.19626e-05
4.6758e-06
7.90534e-06
2.9995e-05
0.000116619
0.000224167
0.000324394
0.000413025
0.000460776
0.000501036
0.000546157
0.00059447
0.00064122
0.000682625
0.000716761
0.000743194
0.000762334
0.000774899
0.0007816
0.000783126
0.000780229
0.000773951
0.000765838
0.000758123
0.000753273
0.000752094
0.000749352
0.000726939
0.000672383
0.000606682
0.000529367
0.000440002
0.000338349
0.000225265
0.000107438
2.15398e-05
4.65895e-06
7.95398e-06
2.9538e-05
0.000114838
0.000220585
0.000318838
0.000401756
0.000447595
0.000489998
0.000537217
0.000586821
0.000634274
0.0006761
0.000710528
0.000737144
0.000756338
0.000768805
0.000775267
0.000776402
0.0007729
0.000765731
0.000756411
0.00074733
0.000741514
0.000740845
0.000741229
0.000723964
0.000670278
0.000605058
0.00052778
0.000438077
0.00033594
0.000222613
0.0001053
2.09507e-05
4.6307e-06
8.00686e-06
2.90394e-05
0.000112908
0.00021676
0.000312924
0.000388373
0.00043419
0.000478834
0.000528128
0.000579037
0.000627116
0.000669194
0.000703775
0.000730589
0.000749995
0.000762589
0.000769034
0.000769973
0.00076606
0.000758162
0.000747603
0.000736594
0.000728233
0.00072535
0.000726772
0.000719397
0.000667626
0.000603283
0.000526394
0.000436544
0.000333863
0.000220006
0.000102941
2.0295e-05
4.61663e-06
8.06565e-06
2.84948e-05
0.000110801
0.000212637
0.000306621
0.000374677
0.000420534
0.000467444
0.000518807
0.000570997
0.000619681
0.000661963
0.000696598
0.000723481
0.000743038
0.000755847
0.000762474
0.000763454
0.000759382
0.000751012
0.000739426
0.000726503
0.000715174
0.000708758
0.000707972
0.000703597
0.000664554
0.000601578
0.000525537
0.000435885
0.000332755
0.000218114
0.000100829
1.96963e-05
4.62692e-06
8.12788e-06
2.78914e-05
0.000108495
0.000208213
0.000299956
0.000360896
0.000406911
0.00045605
0.000509374
0.000562717
0.00061191
0.000654367
0.000689066
0.000715997
0.000735638
0.0007486
0.000755429
0.000756596
0.000752594
0.000744051
0.000731816
0.000717373
0.000703202
0.000692622
0.000688017
0.000685162
0.000661116
0.000599803
0.000525035
0.00043608
0.000332935
0.000217654
9.97869e-05
1.94284e-05
4.677e-06
8.19142e-06
2.72517e-05
0.000106028
0.000203534
0.000293043
0.000347331
0.000393744
0.000445014
0.000500048
0.000554299
0.000603838
0.000646393
0.000681138
0.000708143
0.000727896
0.000740997
0.000748007
0.000749404
0.000745627
0.000737176
0.000724673
0.000709296
0.000693136
0.000679229
0.000670571
0.000666599
0.000654874
0.000597467
0.000524353
0.000436629
0.000334035
0.000218489
9.98628e-05
1.94779e-05
4.73914e-06
8.25279e-06
2.65773e-05
0.000103371
0.000198453
0.000284351
0.00033411
0.000381606
0.000434731
0.000490969
0.000545768
0.000595486
0.000638071
0.000672811
0.000699833
0.000719653
0.000732882
0.000740073
0.000741702
0.000738215
0.000730044
0.000717626
0.000701847
0.00068445
0.000668229
0.000656368
0.000649656
0.000639253
0.000594
0.000522767
0.000436702
0.000335297
0.000220157
0.000101005
1.98831e-05
4.81127e-06
8.31047e-06
2.59099e-05
0.000100675
0.000193104
0.000271997
0.000321442
0.000370518
0.00042508
0.000482245
0.000537538
0.000587454
0.000630055
0.000664725
0.000691657
0.000711419
0.000724654
0.000731934
0.000733733
0.00073048
0.000722594
0.00071043
0.000694654
0.000676679
0.00065898
0.000644764
0.000635738
0.000625921
0.000589687
0.000520113
0.000435695
0.000335702
0.000221381
0.000102103
2.02777e-05
4.84689e-06
8.36239e-06
2.52372e-05
9.79722e-05
0.000187695
0.0002598
0.000308986
0.000359718
0.000415891
0.000474141
0.000530016
0.000580161
0.000622786
0.00065737
0.000684166
0.00070378
0.000716887
0.000724088
0.00072588
0.000722706
0.000714977
0.000703001
0.000687339
0.000669147
0.000650535
0.000634504
0.000623345
0.00061346
0.000584255
0.000516066
0.000433201
0.000334796
0.000221776
0.000102984
2.06732e-05
4.86609e-06
8.4109e-06
2.45564e-05
9.52182e-05
0.000182137
0.000247522
0.000296476
0.000348914
0.000406786
0.00046624
0.000522826
0.000573328
0.000616091
0.000650686
0.000677425
0.000696946
0.000709944
0.000717041
0.000718754
0.000715553
0.000707863
0.00069598
0.000680394
0.000662128
0.000643049
0.000625894
0.000613172
0.000602961
0.000578518
0.000511387
0.000429762
0.000332723
0.000220984
0.000102984
2.07585e-05
4.82482e-06
8.45946e-06
2.38983e-05
9.25392e-05
0.000176631
0.000235245
0.000283919
0.000337999
0.000397555
0.000458231
0.000515571
0.000566495
0.000609478
0.000644184
0.000670978
0.000690523
0.000703527
0.000710611
0.000712297
0.000709067
0.000701372
0.000689517
0.000673971
0.000655668
0.000636307
0.000618384
0.00060429
0.000593047
0.000572171
0.000505941
0.000425526
0.000329935
0.000219722
0.000102861
2.08378e-05
4.77996e-06
8.49592e-06
2.32368e-05
8.98631e-05
0.000171229
0.000223389
0.000271747
0.000327192
0.000388105
0.000449755
0.000507728
0.000559056
0.000602306
0.000637207
0.00066417
0.000683887
0.000697071
0.000704337
0.000706185
0.000703089
0.0006955
0.000683736
0.000668274
0.000650031
0.000630622
0.000612413
0.000597723
0.000585743
0.000564849
0.000500733
0.000421273
0.000326789
0.000217787
0.000102006
2.05978e-05
4.68145e-06
8.50147e-06
2.26444e-05
8.73482e-05
0.000166075
0.00021248
0.000260704
0.000317118
0.000378807
0.000440944
0.000499245
0.000550817
0.000594255
0.000629317
0.000656453
0.000676395
0.000689869
0.000697473
0.000699673
0.000696905
0.000689594
0.000678051
0.000662763
0.000644649
0.000625288
0.000606929
0.000591727
0.000578864
0.000557376
0.000495038
0.000416633
0.000323416
0.000215839
0.000101345
2.04692e-05
4.60657e-06
8.50743e-06
2.20365e-05
8.45726e-05
0.000156874
0.000202611
0.000251302
0.00030791
0.000369576
0.000431685
0.000490012
0.000541633
0.000585115
0.000620233
0.000647493
0.000667674
0.000681524
0.000689623
0.000692393
0.00069021
0.000683441
0.000672359
0.000657444
0.000639645
0.000620585
0.000602534
0.000587588
0.000574766
0.00055287
0.000489664
0.000412059
0.00031978
0.000213256
9.98785e-05
1.99835e-05
4.47376e-06
8.51606e-06
2.15543e-05
8.23301e-05
0.000149234
0.000193825
0.000242413
0.000299012
0.000360606
0.000422551
0.000480625
0.00053193
0.000575094
0.000609967
0.000637125
0.000657402
0.000671565
0.000680181
0.000683622
0.000682198
0.000676201
0.000665829
0.000651519
0.00063421
0.000615528
0.000597721
0.000582809
0.000569639
0.000546308
0.000483198
0.000406613
0.000315611
0.000210571
9.86653e-05
1.96739e-05
4.38624e-06
8.52062e-06
2.10342e-05
8.00488e-05
0.000142083
0.000185808
0.000234368
0.000290842
0.000352085
0.000413497
0.000470923
0.000521544
0.000564066
0.000598424
0.000625268
0.000645482
0.00065986
0.000668965
0.00067314
0.000672635
0.000667666
0.000658333
0.000644997
0.000628579
0.000610784
0.000593991
0.000580086
0.000566757
0.000539345
0.000476854
0.000401026
0.000310912
0.000206916
9.6355e-05
1.89384e-05
4.23178e-06
8.52261e-06
2.05914e-05
7.8077e-05
0.000135948
0.000178776
0.000227105
0.000283282
0.000344006
0.000404652
0.000461111
0.000510666
0.000552159
0.000585644
0.000611857
0.000631728
0.000646073
0.00065546
0.000660221
0.000660586
0.000656721
0.000648639
0.000636601
0.000621461
0.000604893
0.000589203
0.000575925
0.00056183
0.000531028
0.0004693
0.000394575
0.000305897
0.000203602
9.47808e-05
1.85647e-05
4.14694e-06
8.51395e-06
2.00277e-05
7.58018e-05
0.000129974
0.000172089
0.000220236
0.000276067
0.000336116
0.000395749
0.000450951
0.000499163
0.000539387
0.000571796
0.000597189
0.000616521
0.000630615
0.000640038
0.000645136
0.000646153
0.000643262
0.00063645
0.000625953
0.00061263
0.000598176
0.000584797
0.000573477
0.000559383
0.000523676
0.000462432
0.000388405
0.000300638
0.000199499
9.2206e-05
1.77799e-05
3.98873e-06
8.48878e-06
1.9467e-05
7.35581e-05
0.00012426
0.000165819
0.000213924
0.00026951
0.00032889
0.000387411
0.000441194
0.0004879
0.000526726
0.000557966
0.000582452
0.000601123
0.000614768
0.000623937
0.00062898
0.000630187
0.000627785
0.000621786
0.000612431
0.000600554
0.000587763
0.000576055
0.000565984
0.000552063
0.000514956
0.000454524
0.000381609
0.000295332
0.000196032
9.06399e-05
1.7465e-05
3.92845e-06
8.38427e-06
1.86867e-05
7.05976e-05
0.00011784
0.000158978
0.000207188
0.000262631
0.00032137
0.000378759
0.000431122
0.000476395
0.000513992
0.000544301
0.000568143
0.000586392
0.000599761
0.000608748
0.000613691
0.000614908
0.000612689
0.00060709
0.0005984
0.000587521
0.000576136
0.000566253
0.000558207
0.000545702
0.000507668
0.000447879
0.000375578
0.00028998
0.000191596
8.7683e-05
1.65806e-05
3.7713e-06
8.25549e-06
1.77727e-05
6.71365e-05
0.000110732
0.000151472
0.000199877
0.000255247
0.000313333
0.000369506
0.000420369
0.00046421
0.000500701
0.000530309
0.000553805
0.000571943
0.00058532
0.000594345
0.000599313
0.000600561
0.000598427
0.000592985
0.000584506
0.000573833
0.000562552
0.000552611
0.00054454
0.000532924
0.000498618
0.000440126
0.000369198
0.000285133
0.000188463
8.62515e-05
1.63139e-05
3.73137e-06
8.10827e-06
1.64881e-05
6.23537e-05
0.00010221
0.000142385
0.00019079
0.000245886
0.000303116
0.000357915
0.00040723
0.000449755
0.000485412
0.000514716
0.000538331
0.000556853
0.00057073
0.000580259
0.000585677
0.000587316
0.000585543
0.000580418
0.00057219
0.000561681
0.000550511
0.00054079
0.000533381
0.000523263
0.000491222
0.000433769
0.000363682
0.000280299
0.00018433
8.33103e-05
1.54052e-05
3.57139e-06
7.95629e-06
1.50328e-05
5.69365e-05
9.29107e-05
0.000132266
0.000180498
0.000235182
0.000291352
0.000344501
0.000392019
0.000433101
0.000467954
0.000497117
0.000521107
0.000540319
0.000555015
0.000565363
0.000571526
0.00057382
0.000572636
0.000568006
0.000560109
0.000549625
0.000537963
0.000527103
0.000518327
0.000508379
0.000481721
0.000426
0.00035774
0.000276248
0.000182127
8.25786e-05
1.53403e-05
3.55753e-06
7.80951e-06
1.31749e-05
5.02599e-05
8.24263e-05
0.000120351
0.000167841
0.000221729
0.000276543
0.000327801
0.0003734
0.000413084
0.000447341
0.000476684
0.000501434
0.000521747
0.000537688
0.000549287
0.000556634
0.000560028
0.000559866
0.000556133
0.000548942
0.000538914
0.000527432
0.000516581
0.000507968
0.000498851
0.000473958
0.000419411
0.000352203
0.000271602
0.000178299
7.989e-05
1.44955e-05
3.39562e-06
7.68904e-06
1.14167e-05
4.39274e-05
7.20649e-05
0.000107841
0.000154153
0.000207108
0.000260394
0.000309412
0.000352693
0.000390698
0.000424259
0.000453838
0.000479498
0.000501107
0.000518495
0.000531542
0.000540265
0.000544959
0.000546043
0.00054344
0.000537163
0.000527698
0.00051621
0.000504494
0.000494212
0.000484222
0.00046373
0.000411019
0.000345945
0.000267653
0.000176576
7.97236e-05
1.46147e-05
3.40357e-06
7.60738e-06
1.00601e-05
3.80372e-05
6.16271e-05
9.42959e-05
0.000138658
0.000190343
0.000241923
0.000288433
0.000329081
0.000365195
0.00039802
0.000427959
0.000454773
0.000477988
0.000497159
0.000511998
0.000522464
0.000528856
0.000531644
0.000530677
0.000525872
0.000517633
0.000507081
0.000496044
0.000486276
0.000476544
0.000455445
0.000403696
0.000339618
0.000262346
0.000172357
7.69157e-05
1.37453e-05
3.23215e-06
7.56963e-06
9.19009e-06
3.35191e-05
5.26719e-05
8.1929e-05
0.000124111
0.000174671
0.000224583
0.000268098
0.000305282
0.000338683
0.000370165
0.000400114
0.000427939
0.000452741
0.000473718
0.000490364
0.000502572
0.000510671
0.000515242
0.000516081
0.000512987
0.00050622
0.0004967
0.00048597
0.000475549
0.000464767
0.00044526
0.000395192
0.000333216
0.000258373
0.000170842
7.70946e-05
1.39791e-05
3.25494e-06
7.56717e-06
8.37252e-06
2.91086e-05
4.45264e-05
7.0203e-05
0.000109641
0.000158962
0.000207446
0.000247869
0.00028101
0.00031093
0.000340389
0.000369907
0.000398575
0.000425004
0.000447937
0.000466575
0.000480709
0.000490687
0.000497248
0.00050016
0.000499154
0.000494463
0.000487077
0.000478639
0.000470468
0.000460536
0.000437132
0.000387683
0.000326351
0.000252295
0.000165847
7.37805e-05
1.29774e-05
3.07224e-06
7.59135e-06
7.91072e-06
2.53739e-05
3.84965e-05
6.12371e-05
9.85119e-05
0.000147577
0.000195498
0.0002327
0.000260764
0.000285805
0.00031189
0.000339931
0.000368783
0.000396471
0.000421129
0.000441555
0.000457383
0.000468937
0.000477195
0.000481921
0.000482765
0.000479863
0.000474072
0.000466873
0.000459476
0.000450012
0.000427769
0.000380113
0.000320779
0.000248915
0.000164651
7.40946e-05
1.32575e-05
3.11998e-06
7.61769e-06
7.44495e-06
2.20049e-05
3.31558e-05
5.30752e-05
8.79469e-05
0.000136858
0.000185121
0.000220061
0.000243371
0.000262961
0.000284329
0.000309539
0.000337842
0.000366552
0.00039291
0.000415181
0.00043278
0.00044595
0.000455933
0.000462489
0.000465195
0.000464176
0.000460409
0.000455585
0.000450874
0.000443357
0.000419333
0.000372417
0.00031363
0.000242271
0.000158792
6.99622e-05
1.20531e-05
2.94084e-06
7.62316e-06
7.28404e-06
2.00521e-05
2.96494e-05
4.73465e-05
8.08639e-05
0.00013097
0.000180393
0.000213457
0.000232614
0.000246811
0.000262677
0.000283732
0.000310002
0.000338713
0.000366119
0.000389711
0.000408599
0.000422856
0.000434085
0.000442054
0.000446217
0.000446529
0.000443726
0.000439199
0.000434225
0.000427642
0.000410305
0.000365765
0.000309318
0.000240162
0.00015855
7.07475e-05
1.24722e-05
3.02719e-06
7.58521e-06
7.02188e-06
1.815e-05
2.62106e-05
4.13928e-05
7.26988e-05
0.000122756
0.000172229
0.000203899
0.000221322
0.000233151
0.000245681
0.000262834
0.000285417
0.000312182
0.000339542
0.000363992
0.000384076
0.000399434
0.000411971
0.000421447
0.000427168
0.000428939
0.000427424
0.000424083
0.000420471
0.000415803
0.000400643
0.000357241
0.000301629
0.000233115
0.000152269
6.61895e-05
1.11644e-05
2.83763e-06
7.4968e-06
6.97182e-06
1.72706e-05
2.41575e-05
3.72377e-05
6.72495e-05
0.000118051
0.000160503
0.00018426
0.00020343
0.000225255
0.000238343
0.000251664
0.00026941
0.000291975
0.000317266
0.000341536
0.000362094
0.00037785
0.000391124
0.000401677
0.000408621
0.000411515
0.000410754
0.0004075
0.00040312
0.000397587
0.000385723
0.000350882
0.000298243
0.000232381
0.000153532
6.8077e-05
1.18715e-05
2.94299e-06
7.37437e-06
6.82751e-06
1.6414e-05
2.20444e-05
3.20407e-05
5.76251e-05
0.000105272
0.00013564
0.000158115
0.000176346
0.000199036
0.000225227
0.000246592
0.000259482
0.000275449
0.000296391
0.000319177
0.000339798
0.000355909
0.000369979
0.000381723
0.000390062
0.000394314
0.000394709
0.000392434
0.000389105
0.000385033
0.000374905
0.000340483
0.000288855
0.000223938
0.000146228
6.29097e-05
1.0407e-05
2.71134e-06
7.24073e-06
6.94354e-06
1.67991e-05
2.17457e-05
2.92857e-05
5.01737e-05
8.73139e-05
0.000115912
0.000137734
0.000155114
0.000177733
0.00020432
0.000233358
0.000259205
0.000270839
0.000284924
0.000303413
0.000322488
0.000337783
0.000351822
0.000364148
0.000373415
0.000378664
0.0003798
0.000377611
0.000373408
0.000367989
0.00035889
0.000334605
0.000286154
0.000224171
0.000148683
6.58266e-05
1.14039e-05
2.84124e-06
7.12937e-06
6.97467e-06
1.73069e-05
2.18551e-05
2.6901e-05
4.05674e-05
6.46558e-05
9.13209e-05
0.000114325
0.00013192
0.000153676
0.000179912
0.00020924
0.000239761
0.000269112
0.000278703
0.000290227
0.000305307
0.000318796
0.000332539
0.000345428
0.000355688
0.000362052
0.000364223
0.000362983
0.00035993
0.000356202
0.000348658
0.000322293
0.000274649
0.000213547
0.000139394
5.93442e-05
9.62373e-06
2.56034e-06
7.037e-06
7.35603e-06
1.9296e-05
2.39852e-05
2.8123e-05
3.71602e-05
5.2771e-05
7.44206e-05
9.83822e-05
0.000117413
0.000137745
0.000162883
0.000191709
0.000222373
0.000253041
0.000282214
0.000290661
0.000298556
0.000307312
0.000319005
0.000331435
0.000341987
0.000348923
0.000351622
0.000350454
0.000346463
0.00034071
0.00033267
0.000316377
0.000273004
0.000215213
0.000143535
6.36171e-05
1.0969e-05
2.73921e-06
6.96979e-06
7.76769e-06
2.19093e-05
2.6786e-05
3.05983e-05
3.58634e-05
4.49679e-05
5.71135e-05
7.80669e-05
9.92029e-05
0.000117288
0.000140252
0.000167682
0.000198026
0.000229242
0.000259532
0.000287471
0.000295639
0.000296593
0.000303699
0.000314628
0.000325224
0.00033279
0.000336273
0.000335956
0.00033317
0.000329435
0.000323384
0.000303215
0.000259241
0.000201864
0.000131458
5.52472e-05
8.78808e-06
2.39714e-06
6.87625e-06
8.91884e-06
2.67022e-05
3.22341e-05
3.61217e-05
4.04273e-05
5.02068e-05
5.46778e-05
6.85655e-05
8.88459e-05
0.000108491
0.000128981
0.000153998
0.000182791
0.000213553
0.000244272
0.00027323
0.000299085
0.000299673
0.000299394
0.000305765
0.000314732
0.000322075
0.000325715
0.000325305
0.000321518
0.000315369
0.000306977
0.00029263
0.000258482
0.00020499
0.00013742
6.08488e-05
1.03943e-05
2.61512e-06
6.75716e-06
1.06065e-05
3.30704e-05
3.94533e-05
4.37039e-05
4.73521e-05
5.35675e-05
5.7509e-05
6.12533e-05
7.29475e-05
8.99905e-05
0.000108241
0.000129811
0.000156081
0.000185868
0.000217034
0.00024745
0.000275375
0.000299452
0.000295488
0.000294486
0.000299505
0.000305875
0.000309928
0.000310434
0.000308047
0.000304224
0.000298823
0.000283676
0.000243029
0.000189234
0.00012268
5.08113e-05
7.9477e-06
2.21182e-06
6.57602e-06
1.37588e-05
4.14375e-05
4.94617e-05
5.48135e-05
5.97997e-05
6.56111e-05
7.47463e-05
7.32064e-05
7.62477e-05
8.66646e-05
0.000103013
0.000121844
0.000144414
0.000171169
0.000200814
0.000231183
0.000260121
0.000285871
0.000301029
0.000295518
0.00029413
0.000297303
0.0003005
0.000300782
0.000297484
0.000291176
0.000282283
0.000268853
0.000241693
0.000192104
0.00012873
5.62755e-05
9.39373e-06
2.41838e-06
6.37126e-06
1.5946e-05
5.01783e-05
5.894e-05
6.46481e-05
7.29088e-05
8.16e-05
8.7576e-05
8.65056e-05
8.24645e-05
8.15072e-05
8.69974e-05
9.93882e-05
0.000116565
0.000139072
0.000166453
0.000196694
0.000227199
0.000255652
0.000280061
0.000292408
0.000286525
0.000284057
0.000285148
0.000285837
0.000284176
0.000280521
0.000275208
0.000263495
0.000226841
0.00017674
0.000114201
4.67724e-05
7.19432e-06
2.00556e-06
6.098e-06
1.80855e-05
5.73581e-05
6.7874e-05
7.26225e-05
8.22951e-05
9.83873e-05
0.000108921
0.00010551
0.000101619
9.88176e-05
9.97055e-05
0.000106862
0.000119999
0.000137357
0.000159525
0.000185683
0.000213907
0.000241761
0.000266903
0.000287191
0.000289193
0.000281835
0.0002785
0.000277283
0.000274575
0.000268854
0.000259969
0.000246706
0.000222433
0.000175928
0.000116512
4.91645e-05
7.88429e-06
2.14494e-06
5.787e-06
1.72259e-05
5.92534e-05
7.30087e-05
7.62913e-05
8.20181e-05
9.68685e-05
0.00011166
0.000109527
0.000106153
0.000102484
9.94172e-05
9.92397e-05
0.000104314
0.000114959
0.000131009
0.000152976
0.000179122
0.000206868
0.000233556
0.000256802
0.000274476
0.000271941
0.000265702
0.000262606
0.000260523
0.000257267
0.000252019
0.000241564
0.000211782
0.000165985
0.00010783
4.42907e-05
6.68369e-06
1.81454e-06
5.33083e-06
1.66666e-05
5.90265e-05
7.59325e-05
7.90609e-05
8.05112e-05
8.7966e-05
0.000103492
0.000111556
0.000110703
0.000110778
0.000112462
0.000116529
0.000123704
0.000134274
0.000148485
0.000166828
0.000188335
0.00021146
0.00023418
0.000254307
0.000269899
0.000267377
0.00025987
0.000255119
0.00025158
0.000246806
0.000239414
0.000227314
0.000203379
0.000159342
0.000103134
4.0917e-05
6.18959e-06
1.85152e-06
4.88198e-06
1.24816e-05
4.74223e-05
7.65273e-05
8.55493e-05
8.45431e-05
8.32261e-05
8.69566e-05
9.69515e-05
0.000104314
0.000102593
0.000101608
0.000102209
0.000105201
0.000111244
0.000120926
0.000135193
0.000154014
0.000175954
0.000198859
0.000220451
0.000238503
0.000242594
0.000238803
0.000235549
0.000232847
0.000228908
0.000222795
0.000213694
0.000195173
0.000154625
0.000101815
4.2538e-05
6.33734e-06
1.64331e-06
4.41922e-06
1.21794e-05
4.44965e-05
7.35122e-05
9.05881e-05
9.86698e-05
9.83889e-05
9.45524e-05
9.37666e-05
9.82615e-05
0.00010723
0.00011073
0.000114893
0.000121315
0.000130344
0.000142049
0.000156462
0.000173416
0.000192181
0.000211435
0.000229377
0.000242771
0.000238658
0.000234395
0.000232363
0.000230695
0.000227801
0.000222691
0.000212751
0.00018868
0.000146954
9.31084e-05
3.44517e-05
4.78566e-06
1.593e-06
4.14863e-06
1.01585e-05
3.64268e-05
6.13245e-05
7.74141e-05
8.68228e-05
9.19661e-05
9.47298e-05
9.61928e-05
9.67544e-05
9.6496e-05
9.54477e-05
9.37715e-05
9.20238e-05
9.1323e-05
9.32025e-05
9.90894e-05
0.000110228
0.000127331
0.000148731
0.000171539
0.000192908
0.000204643
0.000204431
0.000202761
0.000200855
0.000197376
0.00019149
0.000183196
0.000170963
0.000145548
9.96656e-05
4.44472e-05
6.78541e-06
1.59697e-06
3.94137e-06
1.21527e-05
4.19347e-05
6.41634e-05
7.51757e-05
8.03412e-05
8.31561e-05
8.55119e-05
8.81337e-05
9.08302e-05
9.34649e-05
9.61342e-05
9.92629e-05
0.000103509
0.000109647
0.000118389
0.000130031
0.000144144
0.000160036
0.00017725
0.000195111
0.000212303
0.000226609
0.000228359
0.000225
0.000222497
0.000219713
0.000214694
0.000203815
0.000176392
0.000136168
8.38541e-05
2.84247e-05
3.64873e-06
1.43241e-06
4.06495e-06
1.11207e-05
3.87339e-05
6.25618e-05
6.94885e-05
7.086e-05
7.36182e-05
7.68694e-05
7.84831e-05
7.82918e-05
7.78207e-05
7.97172e-05
8.50416e-05
9.29822e-05
9.25665e-05
9.07679e-05
8.84622e-05
8.71497e-05
8.8996e-05
9.6058e-05
0.000109154
0.000127681
0.000148486
0.00016793
0.000174813
0.000171857
0.000168735
0.000166042
0.000162496
0.000155221
0.000139579
0.000107344
5.06258e-05
7.45762e-06
1.66545e-06
4.1792e-06
1.41427e-05
4.79638e-05
7.39234e-05
8.40589e-05
8.55909e-05
8.39638e-05
8.4585e-05
8.76882e-05
9.14125e-05
9.70186e-05
0.000103423
0.000105714
0.000108386
0.000113832
0.000122945
0.000134273
0.000140724
0.000148874
0.000159605
0.000173366
0.000189246
0.000204945
0.000217212
0.00022375
0.000223285
0.000215162
0.00019918
0.000175189
0.000143311
0.000104584
6.25779e-05
2.49392e-05
4.32969e-06
1.48216e-06
4.11644e-06
1.82999e-05
5.68523e-05
7.73045e-05
8.32003e-05
8.48421e-05
8.7092e-05
9.20193e-05
9.99214e-05
0.000110673
0.000123337
0.000136796
0.000149915
0.000161806
0.000171864
0.000179726
0.000185196
0.000188131
0.000188575
0.000186455
0.000181287
0.000173434
0.000165218
0.000160992
0.000164875
0.000175954
0.000189393
0.000203074
0.000214472
0.000207274
0.000151322
9.93474e-05
4.60104e-05
4.60606e-06
1.54427e-06
3.71114e-06
2.44459e-05
6.14052e-05
7.34086e-05
7.11201e-05
6.48535e-05
6.49413e-05
7.3104e-05
9.00088e-05
0.000114218
0.000130656
0.000147932
0.00016596
0.000184469
0.000203173
0.000221726
0.000239628
0.000256205
0.0002705
0.000281052
0.000285587
0.000282935
0.000272307
0.000254334
0.000230865
0.000203858
0.000174529
0.000143376
0.000110502
7.69473e-05
4.52154e-05
2.0354e-05
5.54233e-06
7.45159e-07
2.75689e-07
3.46436e-06
4.13589e-05
4.98303e-05
4.9104e-05
4.64932e-05
4.3545e-05
4.14045e-05
4.13868e-05
4.48772e-05
4.89968e-05
5.00166e-05
5.22361e-05
5.50068e-05
5.79742e-05
6.07961e-05
6.32367e-05
6.50809e-05
6.61657e-05
6.63614e-05
6.55467e-05
6.35691e-05
6.07327e-05
5.68892e-05
5.21539e-05
4.66714e-05
4.05206e-05
3.38427e-05
2.67751e-05
1.95982e-05
1.27836e-05
6.93653e-06
2.72793e-06
5.5799e-07
1.44982e-07
6.93862e-08
8.03396e-06
3.49237e-05
6.20671e-05
6.60965e-05
6.01948e-05
5.13728e-05
4.55521e-05
4.23382e-05
3.98931e-05
3.77568e-05
3.60541e-05
3.50522e-05
3.49436e-05
3.55547e-05
3.65886e-05
3.78491e-05
3.92243e-05
4.06327e-05
4.19847e-05
4.31394e-05
4.40718e-05
4.46867e-05
4.51241e-05
4.5469e-05
4.56582e-05
4.57402e-05
4.57916e-05
4.58648e-05
4.60479e-05
4.66499e-05
4.87364e-05
5.383e-05
5.49303e-05
2.03813e-05
1.81131e-06
1.27427e-07
5.77865e-06
8.16419e-06
8.16123e-06
1.06969e-05
1.09318e-05
1.11044e-05
1.12273e-05
1.13092e-05
1.13312e-05
1.1302e-05
1.12421e-05
1.12803e-05
1.15003e-05
1.18978e-05
1.24102e-05
1.29655e-05
1.34819e-05
1.38839e-05
1.41265e-05
1.42061e-05
1.41639e-05
1.40683e-05
1.40355e-05
1.41855e-05
1.46074e-05
1.54258e-05
1.66224e-05
1.78974e-05
1.90134e-05
1.99653e-05
2.07964e-05
2.14012e-05
5.48058e-06
6.20764e-08
1.50306e-08
8.93487e-08
5.4529e-07
1.50423e-06
2.67878e-06
3.81627e-06
4.75416e-06
5.42568e-06
5.83958e-06
6.04741e-06
6.08988e-06
6.06172e-06
5.90665e-06
5.70701e-06
5.41024e-06
5.07528e-06
4.73757e-06
4.22519e-06
3.92722e-06
3.30815e-06
2.91069e-06
2.65493e-06
1.49787e-06
2.00331e-06
1.84649e-06
5.1485e-07
5.52241e-06
1.5565e-05
2.93371e-05
4.34947e-05
5.46366e-05
5.27374e-05
2.20218e-05
9.065e-06
9.07056e-07
4.35514e-07
7.06663e-07
4.33806e-06
1.12828e-05
1.87669e-05
2.53814e-05
3.02299e-05
3.29534e-05
3.39076e-05
3.3828e-05
3.34016e-05
3.30999e-05
3.28726e-05
3.25223e-05
3.17886e-05
3.07253e-05
2.91603e-05
2.70617e-05
2.44641e-05
2.14367e-05
1.82194e-05
1.48753e-05
1.1757e-05
9.41891e-06
8.60395e-06
1.15045e-05
1.54863e-05
2.01814e-05
2.75671e-05
3.22533e-05
3.50932e-05
2.891e-05
1.36784e-05
8.06809e-06
1.4101e-06
1.05834e-06
3.80416e-06
2.37705e-05
4.05235e-05
5.89084e-05
7.61644e-05
8.4961e-05
7.81156e-05
6.46886e-05
4.80431e-05
3.07863e-05
1.49808e-05
3.78446e-06
1.26076e-06
4.9283e-06
7.37561e-06
9.87463e-06
1.11276e-05
1.14784e-05
1.13227e-05
1.10644e-05
1.10886e-05
1.17943e-05
1.34986e-05
1.64158e-05
2.0351e-05
2.48518e-05
3.00981e-05
3.58753e-05
3.97186e-05
3.58451e-05
2.45686e-05
1.2789e-05
5.92976e-06
2.15123e-06
7.31424e-07
1.96905e-06
1.16961e-05
2.43555e-05
3.45851e-05
4.4337e-05
5.38572e-05
6.17803e-05
6.63573e-05
6.79159e-05
6.62622e-05
5.8392e-05
4.85867e-05
3.80811e-05
2.80037e-05
1.88234e-05
1.13634e-05
6.18352e-06
3.58893e-06
3.47337e-06
5.34114e-06
8.57234e-06
1.27574e-05
1.77595e-05
2.3479e-05
2.97229e-05
3.63277e-05
4.32882e-05
4.98914e-05
5.12841e-05
4.1307e-05
2.47214e-05
1.36734e-05
6.44319e-06
2.66712e-06
1.00435e-06
2.04162e-06
1.29989e-05
3.19393e-05
4.34362e-05
5.18112e-05
5.95557e-05
6.82054e-05
7.5415e-05
7.66085e-05
7.60444e-05
7.38447e-05
7.0141e-05
6.51429e-05
5.91407e-05
5.24706e-05
4.55683e-05
3.89408e-05
3.3145e-05
2.87731e-05
2.6369e-05
2.62548e-05
2.83806e-05
3.23869e-05
3.78099e-05
4.42477e-05
5.1317e-05
5.84794e-05
6.38265e-05
6.08848e-05
4.61398e-05
2.47328e-05
1.42275e-05
6.16919e-06
3.17899e-06
1.20107e-06
3.56691e-06
2.2415e-05
4.14381e-05
5.44591e-05
6.42824e-05
7.22314e-05
8.0014e-05
8.84652e-05
9.27664e-05
9.18356e-05
8.96404e-05
8.65337e-05
8.27475e-05
7.84209e-05
7.36508e-05
6.85567e-05
6.33199e-05
5.81967e-05
5.35404e-05
4.97615e-05
4.72837e-05
4.64528e-05
4.74403e-05
5.02639e-05
5.49457e-05
6.13474e-05
6.83413e-05
7.17064e-05
6.38076e-05
4.8174e-05
2.4748e-05
1.50528e-05
6.39554e-06
3.59507e-06
1.28257e-06
2.51055e-06
1.54486e-05
3.79666e-05
5.24847e-05
6.3432e-05
7.20381e-05
7.95317e-05
8.76389e-05
9.6654e-05
9.88594e-05
9.7816e-05
9.571e-05
9.29152e-05
8.96816e-05
8.61527e-05
8.23996e-05
7.84704e-05
7.44346e-05
7.04525e-05
6.67483e-05
6.36107e-05
6.13828e-05
6.04788e-05
6.14355e-05
6.48179e-05
7.05951e-05
7.66048e-05
7.58022e-05
6.29891e-05
4.44725e-05
2.45214e-05
1.59403e-05
6.6208e-06
3.96618e-06
1.41267e-06
3.76866e-06
2.3159e-05
5.01898e-05
6.70395e-05
7.91188e-05
8.81909e-05
9.55249e-05
0.000102814
0.000110642
0.000112969
0.000111163
0.00010811
0.000104345
0.000100287
9.62053e-05
9.22271e-05
8.83703e-05
8.46266e-05
8.10377e-05
7.77001e-05
7.48057e-05
7.26646e-05
7.17073e-05
7.23818e-05
7.48346e-05
7.80759e-05
7.81318e-05
6.98559e-05
5.71457e-05
3.86534e-05
2.42338e-05
1.68279e-05
6.76931e-06
4.32052e-06
1.5292e-06
3.40966e-06
2.06805e-05
4.71142e-05
6.505e-05
7.88963e-05
8.97373e-05
9.83801e-05
0.000106136
0.000114645
0.000123485
0.000123453
0.000120994
0.000116906
0.000112032
0.000107019
0.000102248
9.78238e-05
9.37647e-05
9.00577e-05
8.67349e-05
8.3938e-05
8.18878e-05
8.07927e-05
8.0677e-05
8.10401e-05
8.00976e-05
7.36743e-05
6.09999e-05
4.99853e-05
3.36161e-05
2.41377e-05
1.77986e-05
7.03057e-06
4.62889e-06
1.55176e-06
3.90986e-06
2.35693e-05
5.3392e-05
7.71823e-05
9.30254e-05
0.000104152
0.000112338
0.000119131
0.000126252
0.000134222
0.00013747
0.00013549
0.000131228
0.000125524
0.000119321
0.000113248
0.000107653
0.000102801
9.89e-05
9.57023e-05
9.29495e-05
9.06664e-05
8.88622e-05
8.72546e-05
8.48737e-05
7.94484e-05
6.77978e-05
5.29879e-05
4.31496e-05
2.98904e-05
2.43553e-05
1.88402e-05
7.28333e-06
4.90792e-06
1.72409e-06
4.29902e-06
2.50424e-05
5.5033e-05
7.63435e-05
9.40448e-05
0.000108605
0.000119832
0.000128347
0.000135752
0.000143859
0.000151689
0.000150983
0.000147681
0.000142095
0.000135264
0.00012806
0.000121104
0.000114889
0.000109717
0.000105805
0.000103161
0.000100926
9.85381e-05
9.55821e-05
9.0854e-05
8.18171e-05
6.60169e-05
4.87771e-05
3.73232e-05
2.78554e-05
2.48885e-05
1.99348e-05
7.60387e-06
5.15418e-06
1.74332e-06
4.47937e-06
2.61324e-05
5.85492e-05
8.38725e-05
0.00010355
0.000119482
0.000131943
0.000141374
0.000149024
0.000156686
0.000164853
0.00016782
0.000166035
0.000161625
0.000155051
0.00014737
0.000139401
0.000131863
0.000125244
0.000119884
0.000116115
0.000113654
0.000110985
0.00010693
0.000100017
8.75425e-05
6.75782e-05
4.74216e-05
3.48116e-05
2.74374e-05
2.58704e-05
2.10971e-05
7.91987e-06
5.37832e-06
1.92277e-06
4.97855e-06
2.79334e-05
6.12375e-05
8.49059e-05
0.000104852
0.00012279
0.000138245
0.000150681
0.000160459
0.000169053
0.000178076
0.000185722
0.000185205
0.000182587
0.000177397
0.000170205
0.000161963
0.000153605
0.000145774
0.000138955
0.000133535
0.000129895
0.000126503
0.000121307
0.000112359
9.68621e-05
7.27196e-05
4.8862e-05
3.45309e-05
2.80568e-05
2.70533e-05
2.22497e-05
8.25314e-06
5.58576e-06
1.95576e-06
5.06349e-06
2.86231e-05
6.41564e-05
9.32436e-05
0.000114138
0.000131903
0.000147728
0.000161405
0.000172809
0.000182686
0.000192507
0.000202377
0.000205874
0.000204737
0.000201479
0.000195765
0.000188116
0.000179739
0.000171399
0.000163632
0.000156918
0.000151689
0.000146487
0.000139068
0.000127133
0.000107797
7.91793e-05
5.20971e-05
3.55315e-05
2.95437e-05
2.8511e-05
2.33818e-05
8.54809e-06
5.77529e-06
2.08901e-06
5.48894e-06
3.02838e-05
6.74941e-05
9.99503e-05
0.000122019
0.000140182
0.000156469
0.000171132
0.000183945
0.000195085
0.000205609
0.000216841
0.000227194
0.000227568
0.000226096
0.000222526
0.000216489
0.00020915
0.000201389
0.000193664
0.00018648
0.000179745
0.000171972
0.00016127
0.000145258
0.000121129
8.77274e-05
5.76662e-05
3.75943e-05
3.15335e-05
3.01676e-05
2.45345e-05
8.82626e-06
5.95053e-06
2.10993e-06
5.64465e-06
3.14594e-05
7.1163e-05
0.000107849
0.000136972
0.00015616
0.000171821
0.000186051
0.000199066
0.000210808
0.000221827
0.000233331
0.000245327
0.000251679
0.000251735
0.00024999
0.000246111
0.00024071
0.000234509
0.000227807
0.000220612
0.000212265
0.00020167
0.000187158
0.000166372
0.000136908
9.86469e-05
6.56717e-05
4.08147e-05
3.40973e-05
3.21051e-05
2.57803e-05
9.10421e-06
6.11472e-06
2.19748e-06
6.04391e-06
3.32044e-05
7.47437e-05
0.000113738
0.000147193
0.000171039
0.000188159
0.00020269
0.000215889
0.000228003
0.000239331
0.000250792
0.000263416
0.000275572
0.000277434
0.000277308
0.000275388
0.000272101
0.000267662
0.000261919
0.000254596
0.000245079
0.000232265
0.000214446
0.000189433
0.000155394
0.000113131
7.11272e-05
4.51266e-05
3.73257e-05
3.43101e-05
2.70881e-05
9.39078e-06
6.26817e-06
2.22176e-06
6.21798e-06
3.42575e-05
7.77376e-05
0.000119456
0.000155962
0.000186716
0.000208575
0.000223468
0.00023625
0.000248248
0.000259748
0.000271323
0.000283925
0.000296954
0.000303632
0.000305074
0.000304638
0.000302611
0.00029908
0.000293777
0.000286277
0.000275825
0.000261203
0.000240701
0.000212368
0.000174962
0.000130049
7.84615e-05
5.06749e-05
4.13863e-05
3.69982e-05
2.86098e-05
9.71541e-06
6.41623e-06
2.29433e-06
6.59248e-06
3.57659e-05
8.06526e-05
0.000124222
0.000163058
0.000196504
0.00022463
0.000244393
0.00025787
0.000269562
0.000280822
0.000292241
0.00030464
0.000318262
0.000329195
0.000332135
0.000333078
0.000332158
0.000329347
0.00032431
0.000316535
0.000305195
0.000289063
0.000266563
0.000236108
0.000197026
0.000141863
8.71163e-05
5.76851e-05
4.6353e-05
4.01662e-05
3.03645e-05
1.00993e-05
6.55844e-06
2.337e-06
6.8839e-06
3.71469e-05
8.35866e-05
0.000129067
0.000170134
0.000206093
0.000236926
0.000262885
0.000282679
0.000294658
0.000304825
0.000315317
0.00032697
0.000340216
0.000353448
0.00035916
0.000361304
0.000361349
0.000359153
0.000354309
0.000346231
0.000334055
0.000316606
0.000292511
0.000260571
0.000220627
0.000153125
9.70442e-05
6.60355e-05
5.22139e-05
4.37845e-05
3.2369e-05
1.05548e-05
6.69418e-06
2.43456e-06
7.47986e-06
3.96801e-05
8.80813e-05
0.000135302
0.000178089
0.000215897
0.000248774
0.000276958
0.000300782
0.000319584
0.000330698
0.000340117
0.000350298
0.000362163
0.000375344
0.000385655
0.000388955
0.000389974
0.000388475
0.000383984
0.000375855
0.000363212
0.00034497
0.000319983
0.000287424
0.000233892
0.000163989
0.000108247
7.56126e-05
5.89432e-05
4.79114e-05
3.4724e-05
1.11296e-05
6.8216e-06
2.52515e-06
8.04265e-06
4.22657e-05
9.31651e-05
0.000142745
0.000187681
0.000227503
0.000262343
0.000292488
0.000318282
0.000340097
0.000356492
0.000366815
0.000376123
0.000386419
0.000398161
0.000410057
0.000416655
0.000418523
0.000417686
0.000413621
0.000405634
0.000392828
0.000374153
0.000348553
0.000312564
0.000246771
0.000176343
0.000120986
8.62673e-05
6.63358e-05
5.24584e-05
3.73511e-05
1.18052e-05
6.93634e-06
2.65637e-06
8.65999e-06
4.49348e-05
9.85164e-05
0.000150648
0.000197841
0.000239672
0.000276362
0.000308274
0.000335791
0.000359288
0.00037699
0.000389576
0.000400285
0.00041066
0.000421318
0.000432314
0.000442286
0.000446398
0.000446023
0.000442197
0.000434174
0.000421019
0.000401673
0.000375118
0.000325545
0.000257411
0.000189008
0.000134346
9.75417e-05
7.43092e-05
5.75019e-05
4.04082e-05
1.26713e-05
7.04287e-06
2.75492e-06
9.01138e-06
4.66256e-05
0.000102758
0.00015785
0.000207878
0.000252241
0.000291144
0.000324996
0.000354231
0.000378849
0.000396214
0.000410174
0.000422583
0.00043416
0.00044509
0.000455387
0.000464842
0.000472155
0.000473276
0.000469251
0.000460751
0.000446819
0.000426392
0.000391961
0.000335569
0.00026792
0.000201891
0.000147774
0.000109006
8.26301e-05
6.29353e-05
4.38445e-05
1.35513e-05
7.14119e-06
2.85185e-06
9.3479e-06
4.80548e-05
0.000106267
0.000163952
0.000216656
0.000263561
0.000304783
0.00034071
0.000371795
0.000398494
0.000416272
0.000430312
0.000443274
0.000455706
0.000467409
0.000477955
0.000486891
0.000493693
0.000497262
0.000494613
0.000485255
0.000470172
0.00044529
0.000402251
0.000344396
0.000278716
0.000214909
0.000161172
0.000120629
9.13497e-05
6.88659e-05
4.77199e-05
1.44267e-05
7.22546e-06
2.90758e-06
9.7235e-06
4.9734e-05
0.000109998
0.00017022
0.000225601
0.000275112
0.00031875
0.000356855
0.000389868
0.000418248
0.000441878
0.000455196
0.000466243
0.00047751
0.000488913
0.00049958
0.000508585
0.00051504
0.000517942
0.000515914
0.000506944
0.00048828
0.000456938
0.000411377
0.000353598
0.00028966
0.000227663
0.000174285
0.000132262
0.000100391
7.52634e-05
5.19956e-05
1.53154e-05
7.2901e-06
2.98283e-06
1.03574e-05
5.22979e-05
0.000114774
0.000177322
0.000235068
0.000286913
0.00033279
0.000372981
0.000407891
0.000437955
0.000463596
0.000483014
0.000492656
0.000501072
0.000510475
0.000520198
0.000528814
0.000534926
0.000537155
0.000533851
0.000522842
0.000501528
0.000467641
0.000420656
0.000363089
0.000300524
0.000239872
0.00018674
0.000143551
0.000109547
8.20795e-05
5.66899e-05
1.61818e-05
7.34775e-06
3.05925e-06
1.11176e-05
5.53963e-05
0.00012048
0.00018563
0.000245884
0.000300094
0.000348159
0.000390336
0.000427015
0.00045862
0.000485566
0.000508228
0.000521127
0.000527266
0.000533555
0.000541024
0.000548288
0.000553429
0.000554557
0.000549708
0.000536671
0.000513162
0.000477544
0.000429922
0.000372955
0.000311658
0.000251983
0.00019881
0.000154465
0.000118599
8.91104e-05
6.17038e-05
1.7054e-05
7.41229e-06
3.17106e-06
1.19714e-05
5.86292e-05
0.000126303
0.000193986
0.000256696
0.000313255
0.000363521
0.000407708
0.000446171
0.000479308
0.000507516
0.000531156
0.000547355
0.000553097
0.000557188
0.000562289
0.000567656
0.000571276
0.000570904
0.000564313
0.000549304
0.000523921
0.000487052
0.000439223
0.000383063
0.000322993
0.000264106
0.00021069
0.000165092
0.000127464
9.62386e-05
6.70725e-05
1.80075e-05
7.47639e-06
3.29117e-06
1.28439e-05
6.18992e-05
0.000132292
0.00020264
0.000267894
0.000326846
0.000379327
0.00042552
0.000465746
0.000500374
0.000529777
0.000554302
0.000571239
0.00057667
0.000579642
0.000583201
0.00058691
0.000588863
0.000586767
0.000578333
0.000561451
0.00053445
0.000496611
0.000448741
0.000393401
0.000334518
0.000276442
0.000222867
0.000176049
0.000136581
0.000103481
7.24215e-05
1.89336e-05
7.51945e-06
3.43713e-06
1.37895e-05
6.53031e-05
0.000138411
0.00021131
0.000278947
0.00034014
0.000394719
0.000442842
0.000484793
0.000520897
0.000551488
0.000576876
0.000591598
0.000596449
0.000599187
0.000602175
0.000604827
0.000605332
0.000601532
0.000591295
0.000572717
0.000544405
0.000505909
0.000458157
0.000403585
0.000345733
0.000288398
0.000234755
0.00018688
0.000145728
0.000111016
7.83644e-05
1.98689e-05
7.52096e-06
3.58611e-06
1.47396e-05
6.8726e-05
0.000144674
0.000220233
0.00029027
0.000353631
0.000410173
0.000460066
0.000503582
0.000541021
0.000572682
0.000598839
0.000608708
0.000612684
0.000615731
0.000618741
0.000620731
0.000619974
0.000614541
0.000602566
0.000582446
0.000553094
0.000514276
0.000466921
0.000413224
0.000356335
0.000299679
0.000246176
0.000197807
0.000155583
0.000119088
8.22182e-05
2.06104e-05
7.49573e-06
3.74341e-06
1.56476e-05
7.19211e-05
0.000150596
0.000228753
0.000301129
0.000366567
0.000424953
0.000476477
0.000521414
0.000560048
0.000592644
0.000614607
0.000623178
0.000627462
0.000630968
0.00063402
0.000635487
0.000633678
0.000626806
0.000613237
0.000591671
0.000561332
0.000522188
0.000475166
0.000422216
0.000366131
0.000310047
0.000256791
0.000208357
0.000165634
0.000127463
8.52628e-05
2.11916e-05
7.48254e-06
3.89043e-06
1.65046e-05
7.49476e-05
0.000156317
0.000237105
0.000311841
0.000379332
0.000439481
0.000492507
0.00053871
0.000578382
0.00061178
0.000630251
0.000637446
0.000641754
0.000645756
0.000649093
0.000650277
0.00064758
0.00063941
0.000624413
0.000601567
0.000570346
0.000530875
0.000484052
0.000431605
0.000376002
0.000320144
0.00026684
0.000218218
0.000175115
0.000135513
8.81464e-05
2.17179e-05
7.49497e-06
4.0338e-06
1.72981e-05
7.77459e-05
0.000161669
0.000245
0.000322037
0.000391524
0.000453366
0.000507806
0.000555168
0.000595772
0.000629886
0.000646197
0.000652108
0.000656284
0.000660731
0.000664442
0.000665528
0.000662151
0.000652809
0.000636402
0.000612259
0.000580144
0.000540328
0.00049368
0.000441708
0.000386531
0.000330747
0.000277097
0.000227884
0.000184051
0.000142923
9.07658e-05
2.21817e-05
7.50971e-06
4.16395e-06
1.80655e-05
8.05069e-05
0.000166994
0.000252891
0.000332242
0.000403708
0.000467184
0.000522939
0.000571332
0.00061272
0.000647405
0.000661861
0.000666596
0.000670618
0.000675386
0.000679362
0.000680375
0.000676507
0.000666292
0.000648757
0.000623446
0.00059042
0.000550191
0.000503672
0.000452204
0.000397581
0.000342032
0.000288083
0.000238097
0.000193166
0.000150165
9.32503e-05
2.26202e-05
7.50355e-06
4.29179e-06
1.88135e-05
8.3205e-05
0.000172185
0.000260586
0.000342211
0.000415624
0.000480697
0.000537709
0.000587055
0.00062913
0.000664279
0.000676216
0.000679907
0.000683942
0.000689086
0.000693337
0.000694274
0.000689924
0.000678938
0.000660518
0.00063435
0.00060062
0.000560007
0.000513556
0.000462565
0.0004086
0.000353549
0.000299626
0.000249072
0.000202991
0.00015779
9.56667e-05
2.30324e-05
7.46839e-06
4.4145e-06
1.95313e-05
8.58116e-05
0.000177264
0.000268187
0.000352115
0.00042749
0.000494144
0.000552361
0.000602564
0.00064519
0.000679537
0.000688536
0.000691685
0.000696014
0.00070166
0.000706273
0.00070725
0.00070258
0.000690983
0.000671812
0.000644943
0.000610676
0.000569739
0.000523247
0.000472555
0.000419161
0.000364739
0.000311217
0.000260588
0.000213712
0.000166194
9.7978e-05
2.33652e-05
7.41028e-06
4.54627e-06
2.02116e-05
8.8213e-05
0.000182
0.000275374
0.000361593
0.000438951
0.000507209
0.00056663
0.000617647
0.000660723
0.000690126
0.0006975
0.000700797
0.0007059
0.000712339
0.000717501
0.000718713
0.000713988
0.000702122
0.000682552
0.000655239
0.000620597
0.000579419
0.00053284
0.000482253
0.000429196
0.000375321
0.000322417
0.000272217
0.0002251
0.000175396
0.000100182
2.36265e-05
7.34704e-06
4.68702e-06
2.08807e-05
9.04679e-05
0.000186464
0.000282202
0.000370665
0.000449995
0.000519863
0.000580493
0.000632306
0.000675774
0.000698261
0.000703663
0.000707306
0.000713372
0.000720679
0.000726435
0.000727996
0.000723452
0.00071166
0.000692096
0.000664745
0.000630033
0.000588779
0.000542147
0.000491557
0.000438596
0.000384976
0.000332539
0.000283028
0.000236506
0.000185438
0.000102522
2.39166e-05
7.29925e-06
4.84339e-06
2.16649e-05
9.29754e-05
0.000191093
0.000288989
0.000379481
0.000460611
0.000531981
0.000593765
0.000646355
0.000690211
0.000706205
0.000709269
0.000712751
0.000719305
0.000727087
0.000733177
0.000735002
0.000730734
0.000719264
0.000700055
0.000673056
0.000638643
0.000597587
0.000551012
0.00050035
0.000447305
0.00039382
0.00034201
0.000293547
0.000247024
0.000190208
0.000104218
2.41311e-05
7.27147e-06
5.00261e-06
2.25323e-05
9.57265e-05
0.000195962
0.000295884
0.000388209
0.000470942
0.000543659
0.000606504
0.000659845
0.000704124
0.000716458
0.000717228
0.000719579
0.000725535
0.000732924
0.000738762
0.000740513
0.000736388
0.000725282
0.000706621
0.000680272
0.000646507
0.000605981
0.000559717
0.000509101
0.000455912
0.000402365
0.0003509
0.00030311
0.000256213
0.000194206
0.000105505
2.42846e-05
7.25639e-06
5.15277e-06
2.3396e-05
9.8454e-05
0.000200698
0.000302496
0.000396501
0.000480703
0.000554668
0.000618529
0.000672637
0.000717416
0.000729376
0.000728312
0.000728832
0.000733388
0.000739736
0.000744782
0.000745983
0.000741608
0.000730601
0.000712371
0.000686705
0.000653737
0.000613963
0.000568274
0.000517982
0.000464888
0.000411329
0.000359937
0.000312287
0.000264601
0.000197968
0.000106775
2.44825e-05
7.24289e-06
5.28814e-06
2.42048e-05
0.000100974
0.000205041
0.000308552
0.000404098
0.000489654
0.000564785
0.000629619
0.000684499
0.000729838
0.000742556
0.000740555
0.00073965
0.00074288
0.000748091
0.000752146
0.00075252
0.000747573
0.000736343
0.000718274
0.000693103
0.000660841
0.000621825
0.000576797
0.000526987
0.000474205
0.000420859
0.000369612
0.000321854
0.000272934
0.000201758
0.000108132
2.47119e-05
7.21313e-06
5.41191e-06
2.49353e-05
0.000103222
0.000208889
0.000313906
0.000410817
0.00049759
0.000573791
0.000639547
0.000695194
0.000741132
0.00075449
0.000752142
0.000750505
0.000752907
0.000757259
0.000760435
0.000759969
0.000754346
0.000742732
0.000724649
0.000699822
0.000668169
0.000629881
0.000585555
0.000536333
0.00048402
0.000431092
0.000380243
0.000332569
0.000282269
0.000205891
0.000109746
2.49983e-05
7.15743e-06
5.52658e-06
2.56788e-05
0.000105484
0.000212618
0.000318933
0.000416984
0.000504763
0.00058186
0.000648412
0.000704755
0.000751282
0.000765566
0.000763126
0.000761069
0.000762962
0.00076672
0.000769181
0.000767927
0.000761573
0.000749444
0.000731175
0.000706525
0.000675356
0.000637742
0.000594153
0.000545648
0.00049402
0.00044177
0.000391543
0.000344055
0.000292178
0.000209828
0.000111134
2.51897e-05
7.07632e-06
5.63313e-06
2.63993e-05
0.000107671
0.000216159
0.000323622
0.000422645
0.000511261
0.000589091
0.000656298
0.00071323
0.000760283
0.000775586
0.000773209
0.000770983
0.000772673
0.00077613
0.000778112
0.000776213
0.000769165
0.000756457
0.000737867
0.000713233
0.000682405
0.000645376
0.000602491
0.000554709
0.000503803
0.000452368
0.000403162
0.000356487
0.000302909
0.000213981
0.000112605
2.53772e-05
6.9833e-06
5.73727e-06
2.71418e-05
0.000109899
0.000219689
0.00032819
0.000428045
0.000517343
0.000595753
0.000663472
0.000720869
0.000768351
0.000784726
0.000782469
0.000780206
0.000781883
0.000785252
0.000786949
0.000784548
0.000776875
0.000763573
0.000744572
0.000719809
0.000689158
0.000652561
0.000610292
0.000563293
0.00051344
0.000463461
0.000415809
0.000368995
0.000309114
0.000217686
0.000113929
2.5534e-05
6.88838e-06
5.83704e-06
2.79127e-05
0.00011221
0.000223274
0.000332719
0.000433274
0.000523107
0.00060195
0.000670044
0.00072779
0.000775615
0.00079284
0.000790878
0.000788832
0.000790735
0.00079422
0.000795802
0.000793029
0.000784802
0.000770908
0.000751425
0.000726398
0.000695756
0.000659438
0.000617702
0.00057152
0.00052287
0.000474517
0.000428435
0.000381252
0.000315061
0.000221238
0.000115252
2.57131e-05
6.79944e-06
5.93279e-06
2.86414e-05
0.000114422
0.000226739
0.000337094
0.000438282
0.000528552
0.000607707
0.000676048
0.000734021
0.000782078
0.000799306
0.00079778
0.000796413
0.000798974
0.000802886
0.000804565
0.000801569
0.000792889
0.00077844
0.000758437
0.000733039
0.000702252
0.000666057
0.000624743
0.000579338
0.0005319
0.000485164
0.000440574
0.000392923
0.000320578
0.000224528
0.000116489
2.58917e-05
6.71883e-06
6.02407e-06
2.93972e-05
0.00011673
0.000230353
0.000341621
0.000443386
0.00053399
0.000613324
0.000681767
0.000739821
0.000787976
0.000804047
0.000803099
0.000802947
0.000806633
0.000811269
0.000813227
0.000810135
0.000801094
0.00078614
0.000765607
0.000739767
0.00070872
0.00067252
0.000631523
0.000586828
0.000540555
0.000495381
0.000452205
0.000404026
0.000325643
0.00022752
0.000117607
2.60592e-05
6.64312e-06
6.10287e-06
3.00639e-05
0.00011884
0.000233768
0.000345975
0.000448318
0.000539212
0.000618644
0.000687079
0.000745092
0.000793228
0.000806106
0.000805937
0.000807836
0.000813324
0.000819085
0.000821555
0.000818532
0.000809258
0.000793881
0.000772844
0.00074653
0.000715146
0.000678852
0.000638098
0.00059407
0.000548936
0.000505292
0.000463508
0.000414788
0.00033037
0.000230298
0.000118658
2.62271e-05
6.56956e-06
6.16452e-06
3.0673e-05
0.000120813
0.000237056
0.000350248
0.000453186
0.000544337
0.000623781
0.000692079
0.000749897
0.00079707
0.000805682
0.000806836
0.000811313
0.000818967
0.00082616
0.000829428
0.000826726
0.000817424
0.000801771
0.000780306
0.000753521
0.000721747
0.000685272
0.000644666
0.000601237
0.000557291
0.000515359
0.000474698
0.00042266
0.000334798
0.00023296
0.000119713
2.64044e-05
6.49838e-06
6.20642e-06
3.1237e-05
0.00012269
0.000240228
0.000354418
0.000457973
0.000549382
0.000628798
0.000696873
0.000754357
0.000796372
0.000803898
0.000806526
0.000813342
0.000823208
0.000832084
0.00083646
0.000834386
0.000825336
0.000809639
0.000787902
0.000760704
0.000728501
0.000691748
0.00065124
0.000608552
0.000566138
0.000526076
0.000485642
0.000427977
0.000338724
0.000235332
0.000120662
2.65598e-05
6.43011e-06
6.23374e-06
3.18238e-05
0.000124641
0.000243472
0.000358668
0.000462863
0.000554554
0.000633944
0.000701762
0.000758845
0.000796373
0.000802257
0.000805645
0.000814321
0.000826187
0.000836752
0.000842402
0.000841223
0.000832737
0.000817289
0.0007955
0.000768003
0.000735383
0.000698317
0.000657896
0.00061599
0.000575129
0.000536802
0.000496316
0.000433088
0.000342495
0.000237648
0.000121636
2.67404e-05
6.37023e-06
6.2564e-06
3.24025e-05
0.000126601
0.000246731
0.000362958
0.000467852
0.000559892
0.000639315
0.000706908
0.000763583
0.000797215
0.00080132
0.000804961
0.000814922
0.000828327
0.000840324
0.000847218
0.000847103
0.000839477
0.000824619
0.000803087
0.000775521
0.000742617
0.000705289
0.000664955
0.000623781
0.000584341
0.000547511
0.000506696
0.000437878
0.000346021
0.000239832
0.000122576
2.69208e-05
6.31825e-06
6.28976e-06
3.30156e-05
0.000128647
0.000250119
0.000367428
0.000473089
0.000565563
0.000645096
0.000712515
0.00076879
0.000797906
0.000800459
0.000804398
0.00081535
0.000829828
0.000842832
0.000850725
0.000851652
0.000845062
0.000831101
0.000810192
0.000782903
0.000749994
0.00071259
0.000672435
0.000631999
0.000593895
0.000558383
0.000516989
0.000442363
0.000349277
0.000241829
0.000123434
2.70876e-05
6.27176e-06
6.34598e-06
3.35613e-05
0.000130486
0.000253243
0.000371632
0.000478115
0.000571115
0.000650865
0.000718204
0.000774133
0.000796127
0.000797905
0.000803221
0.000815593
0.000831011
0.000844654
0.000853193
0.000854955
0.000849379
0.000836472
0.000816472
0.000789817
0.000757255
0.00072006
0.000680251
0.00064059
0.000603788
0.000569571
0.000527489
0.000446734
0.000352459
0.000243811
0.000124319
2.72843e-05
6.23224e-06
6.42372e-06
3.39455e-05
0.000131828
0.000255661
0.000375013
0.000482281
0.000575832
0.000655862
0.000723201
0.000778871
0.000789114
0.000791257
0.000799831
0.000814633
0.0008312
0.000845315
0.000854252
0.00085665
0.000852003
0.000840208
0.000821326
0.000795626
0.000763785
0.000727182
0.000688154
0.000649848
0.000614826
0.00058084
0.000532105
0.000450425
0.000355144
0.000245448
0.000125
2.74315e-05
6.19782e-06
6.51702e-06
3.41145e-05
0.000132493
0.000257096
0.000377194
0.000485084
0.000579054
0.000659231
0.000726389
0.000767604
0.000775989
0.000782139
0.000794578
0.000811695
0.000829316
0.000843858
0.000853122
0.000856051
0.000852236
0.00084152
0.000823828
0.000799292
0.000768544
0.000733095
0.000695554
0.000659218
0.000626048
0.00059155
0.000535859
0.000453157
0.000356896
0.00024627
0.000125114
2.74248e-05
6.16352e-06
6.61249e-06
3.41267e-05
0.000132655
0.000257797
0.000378471
0.000486848
0.00058114
0.000661401
0.000728344
0.000755809
0.000762444
0.000771535
0.000787256
0.000806547
0.000825238
0.000840238
0.000849822
0.00085323
0.000850164
0.000840451
0.000823938
0.000800676
0.000771294
0.000737415
0.000701824
0.00066779
0.000636532
0.000601387
0.000538861
0.000455055
0.000357804
0.000246345
0.000124719
2.72819e-05
6.12644e-06
6.69261e-06
3.40203e-05
0.000132396
0.000257835
0.000378969
0.000487805
0.00058245
0.000662882
0.00072975
0.000749542
0.000753729
0.000763222
0.000780042
0.000800162
0.000819271
0.000834491
0.000844341
0.000848213
0.000845866
0.000837121
0.000821785
0.000799881
0.00077206
0.000740033
0.000706677
0.000675153
0.000645931
0.000610293
0.000541274
0.000456322
0.000358075
0.000245867
0.000123968
2.70463e-05
6.08721e-06
6.75806e-06
3.39581e-05
0.000132166
0.000257711
0.000379155
0.000488418
0.000583507
0.000664307
0.000731389
0.000750821
0.000752746
0.000760076
0.000775346
0.000794431
0.00081285
0.00082765
0.00083736
0.000841402
0.000839551
0.000831615
0.000817372
0.000796823
0.000770628
0.000740542
0.000709486
0.000680511
0.000653455
0.000617465
0.000543294
0.000457191
0.000357927
0.000244987
0.000122921
2.67219e-05
6.04556e-06
6.81718e-06
3.39987e-05
0.00013215
0.000257648
0.000379174
0.000488705
0.000584219
0.000665527
0.00073311
0.000757346
0.000758171
0.000762539
0.000775042
0.000792025
0.000808868
0.000822452
0.000831267
0.000834778
0.000832807
0.000825179
0.000811652
0.000792193
0.000767433
0.000739137
0.000710279
0.000683777
0.000658384
0.000620075
0.000545071
0.000457957
0.000357712
0.000244039
0.000121806
2.63678e-05
6.0043e-06
6.87523e-06
3.41069e-05
0.000132255
0.000257567
0.000378956
0.00048854
0.00058433
0.000666104
0.000734282
0.000763742
0.00076521
0.000767992
0.000778385
0.0007934
0.000808522
0.000820573
0.000828028
0.000830419
0.000827667
0.000819681
0.000806255
0.000787347
0.000763542
0.000736548
0.000709279
0.000684545
0.000660679
0.000622498
0.000546783
0.00045875
0.000357556
0.000243135
0.000120694
2.60038e-05
5.96627e-06
6.93842e-06
3.4204e-05
0.000132275
0.000257342
0.0003785
0.000487999
0.000583906
0.000666
0.000734669
0.000766947
0.000769919
0.000772806
0.000782511
0.000796494
0.00081044
0.000821237
0.000827411
0.000828579
0.000824782
0.000816045
0.000802243
0.000783365
0.00075996
0.00073362
0.000707105
0.000683197
0.000660621
0.000624815
0.000548527
0.000459648
0.000357519
0.000242314
0.000119607
2.56323e-05
5.93035e-06
7.00395e-06
3.43281e-05
0.000132341
0.000257124
0.000377956
0.000487232
0.000583097
0.000665353
0.00073437
0.000767683
0.00077222
0.000776136
0.000786191
0.000799993
0.000813386
0.000823369
0.000828562
0.000828686
0.000823899
0.000814345
0.000799991
0.000780867
0.000757493
0.00073135
0.000705017
0.000681187
0.000659122
0.000626802
0.000550549
0.000460965
0.000357944
0.000241905
0.000118786
2.53208e-05
5.89627e-06
7.06245e-06
3.44495e-05
0.00013242
0.0002569
0.000377326
0.00048625
0.000581918
0.000664178
0.000733406
0.000766967
0.000772827
0.000778159
0.000789224
0.000803504
0.000816885
0.000826472
0.000831004
0.000830322
0.000824703
0.00081441
0.000799501
0.000780058
0.000756581
0.000730441
0.000704058
0.000680032
0.000657849
0.000626323
0.000553154
0.000463063
0.000359253
0.000242344
0.000118581
2.51731e-05
5.86471e-06
7.10883e-06
3.44996e-05
0.000132339
0.000256482
0.00037647
0.000484973
0.000580332
0.000662466
0.000731777
0.000765451
0.000772371
0.000779176
0.000791575
0.000806742
0.000820501
0.000830028
0.000834186
0.000832935
0.00082667
0.000815759
0.000800357
0.000780611
0.00075702
0.000730871
0.000704431
0.000680178
0.00065774
0.00062669
0.000556174
0.000465694
0.000361188
0.000243415
0.000118844
2.51441e-05
5.8335e-06
7.14946e-06
3.45705e-05
0.000132347
0.000256172
0.000375693
0.000483701
0.000578643
0.000660516
0.000729776
0.000764028
0.000771793
0.000779887
0.000793655
0.000809919
0.000824304
0.000833981
0.000837938
0.00083627
0.000829482
0.00081804
0.000802194
0.000782166
0.000758487
0.000732397
0.000706035
0.000681738
0.000659158
0.000628336
0.000559491
0.00046865
0.000363489
0.000244854
0.000119391
2.51859e-05
5.80196e-06
7.19245e-06
3.48066e-05
0.000132853
0.000256554
0.000375651
0.000483095
0.00057747
0.000658886
0.000727881
0.000761947
0.000770678
0.000780393
0.000795781
0.000813263
0.000828376
0.000838368
0.00084231
0.000840371
0.000833141
0.00082119
0.000804874
0.000784517
0.000760722
0.00073474
0.000708629
0.000684584
0.000662136
0.000631431
0.000563173
0.000471996
0.000366202
0.000246693
0.000120253
2.53235e-05
5.77431e-06
7.23887e-06
3.50649e-05
0.000133498
0.000257266
0.00037608
0.00048301
0.000576767
0.000657583
0.000726099
0.000757001
0.000767036
0.000779513
0.000797437
0.000816658
0.000832761
0.000843229
0.000847306
0.000845259
0.000837733
0.000825352
0.000808561
0.000787802
0.000763805
0.000737905
0.00071216
0.000688645
0.000666645
0.000635953
0.000566986
0.000475496
0.000369102
0.000248738
0.000121297
2.55142e-05
5.74919e-06
7.28857e-06
3.52437e-05
0.000133968
0.000257886
0.000376567
0.000483098
0.000576275
0.000656438
0.000724339
0.000748745
0.000760061
0.000776149
0.000797317
0.000818819
0.000836395
0.000847758
0.000852321
0.000850457
0.000842868
0.000830219
0.00081303
0.000791866
0.000767612
0.00074177
0.000716511
0.000693874
0.000672818
0.000642276
0.000571061
0.000479388
0.000372524
0.000251365
0.000122852
2.58914e-05
5.73397e-06
7.34094e-06
3.55217e-05
0.000134778
0.000259048
0.000377701
0.000483848
0.000576371
0.000655722
0.000720531
0.000739194
0.000752302
0.000771682
0.000795626
0.00081915
0.000838222
0.000850754
0.000856234
0.000855012
0.00084775
0.000835117
0.0008177
0.000796182
0.00077163
0.000745754
0.000720902
0.000699144
0.000679119
0.000648608
0.000574259
0.000482473
0.000375241
0.000253396
0.000123965
2.61391e-05
5.71758e-06
7.39612e-06
3.58275e-05
0.000135768
0.000260576
0.000379372
0.000485272
0.000577213
0.000655721
0.000712736
0.00073004
0.000744913
0.000766731
0.00079277
0.000817872
0.00083818
0.000851814
0.000858343
0.000858077
0.000851578
0.000839427
0.000822184
0.000800608
0.000775947
0.000750192
0.000726027
0.000705644
0.000686759
0.000653688
0.000576824
0.000485064
0.000377685
0.000255404
0.000125234
2.64776e-05
5.70228e-06
7.46722e-06
3.60687e-05
0.00013667
0.000262146
0.000381248
0.000487051
0.000578529
0.000656259
0.000703568
0.000720341
0.000737725
0.000762042
0.000789753
0.000815858
0.000836904
0.000851297
0.000858696
0.000859361
0.000853726
0.000842245
0.000825405
0.000803999
0.000779465
0.000754149
0.000731061
0.000712101
0.000693152
0.000654555
0.000577765
0.000486096
0.0003787
0.000256195
0.000125648
2.65985e-05
5.6845e-06
7.55357e-06
3.62679e-05
0.000137383
0.000263415
0.000382802
0.00048855
0.000579614
0.000656578
0.000689861
0.000706652
0.000727942
0.000755568
0.000785173
0.00081222
0.00083386
0.000848893
0.000857127
0.000858784
0.000854156
0.000843568
0.000827454
0.000806645
0.000782738
0.000758328
0.000736536
0.000718769
0.000699051
0.000654325
0.000577458
0.000485869
0.000378586
0.000256126
0.000125571
2.65941e-05
5.65905e-06
7.64127e-06
3.60623e-05
0.000136816
0.000262895
0.000382387
0.000488091
0.000578836
0.000652367
0.000675038
0.000691614
0.000715287
0.000744884
0.000775691
0.00080357
0.00082602
0.000842026
0.000851424
0.000854365
0.00085106
0.000841764
0.000826866
0.000807248
0.000784716
0.000762126
0.000742601
0.000726757
0.000706204
0.000653734
0.000576616
0.00048506
0.000378019
0.00025589
0.000125613
2.66813e-05
5.63525e-06
7.71246e-06
3.58714e-05
0.000136099
0.000261808
0.000381137
0.000486806
0.000577512
0.000650368
0.000670826
0.000685067
0.000706695
0.000734666
0.000764329
0.000791652
0.000814212
0.000830911
0.000841398
0.000845661
0.000843807
0.000835997
0.000822569
0.000804466
0.00078362
0.000763032
0.000745813
0.000731875
0.000710833
0.00065238
0.000574876
0.000483136
0.000376115
0.00025421
0.00012446
2.64241e-05
5.60853e-06
7.75313e-06
3.57048e-05
0.000135448
0.000260493
0.000379347
0.000484898
0.000575815
0.000652388
0.000673371
0.000685827
0.000704884
0.000729975
0.000756719
0.000781462
0.00080219
0.000818037
0.000828681
0.000833933
0.000833553
0.000827393
0.000815678
0.000799389
0.000780537
0.000762149
0.000747221
0.000735114
0.000713826
0.000650356
0.000572484
0.000480562
0.000373567
0.000251941
0.000122864
2.60015e-05
5.5617e-06
7.7916e-06
3.54219e-05
0.000134431
0.000258523
0.0003765
0.00048153
0.000572409
0.00064932
0.000674849
0.000688138
0.000706435
0.000729719
0.000753735
0.00077511
0.000792336
0.000805136
0.000813701
0.000818166
0.000818328
0.000813794
0.000804332
0.000790509
0.000774269
0.000758791
0.000746944
0.000736973
0.000713581
0.000648122
0.000569951
0.000477904
0.000371014
0.000249758
0.000121395
2.56324e-05
5.51364e-06
7.82257e-06
3.54743e-05
0.000134331
0.000257436
0.000374054
0.000477832
0.000567887
0.000644601
0.000674678
0.000690775
0.00071078
0.000734748
0.000758146
0.000777413
0.000791178
0.000799646
0.000803684
0.000804157
0.000801533
0.00079583
0.000786854
0.000774872
0.000761289
0.000748857
0.000740246
0.000733169
0.000710748
0.000645172
0.000566725
0.000474428
0.000367478
0.000246505
0.000119032
2.50024e-05
5.46346e-06
7.82434e-06
3.51313e-05
0.000133385
0.000255551
0.000370994
0.000473535
0.00056249
0.00063846
0.000668991
0.000687875
0.000711305
0.000738358
0.000763971
0.000784178
0.000797313
0.00080359
0.000804151
0.000800303
0.00079312
0.00078333
0.000771421
0.000758038
0.000744472
0.000733025
0.000726168
0.000722428
0.000706997
0.000641844
0.000563471
0.000471074
0.000364079
0.000243368
0.000116772
2.44033e-05
5.42111e-06
7.82586e-06
3.48971e-05
0.000132699
0.000254063
0.000368449
0.000469825
0.00055764
0.000632692
0.000661068
0.000682116
0.000708383
0.000738077
0.000766135
0.000788531
0.000803292
0.000810139
0.000809797
0.000803467
0.000792554
0.00077843
0.000762222
0.000745046
0.000728471
0.000714922
0.000706983
0.000704008
0.000693397
0.000637755
0.000560077
0.000467909
0.000360957
0.000240429
0.000114572
2.38044e-05
5.39407e-06
7.83484e-06
3.47964e-05
0.000132442
0.000253116
0.000366445
0.000466601
0.000553136
0.000622361
0.000650677
0.000674533
0.00070361
0.000735621
0.000765738
0.000790239
0.000807194
0.000816035
0.000816987
0.000810737
0.000798349
0.000781181
0.000760714
0.000738666
0.000717133
0.000698745
0.000686365
0.000680834
0.000673747
0.000633536
0.000557349
0.000465975
0.000359333
0.000238926
0.000113345
2.3447e-05
5.39191e-06
7.84185e-06
3.43234e-05
0.000131273
0.000251313
0.000363862
0.00046308
0.00054852
0.000609724
0.000638102
0.000664746
0.000696477
0.000730316
0.000761774
0.000787739
0.000806697
0.000818085
0.000821738
0.000817695
0.00080633
0.000788515
0.00076562
0.000739569
0.000712797
0.000688205
0.000668988
0.000657542
0.00065108
0.000628753
0.00055463
0.000464617
0.000358647
0.0002384
0.000112786
2.32585e-05
5.40286e-06
7.85649e-06
3.42417e-05
0.00013103
0.00025052
0.000362253
0.000460541
0.000544971
0.000598747
0.000627374
0.000656634
0.000690573
0.000725558
0.000757453
0.000783802
0.000803686
0.000816883
0.000823205
0.000822286
0.000813772
0.000797685
0.000774709
0.000746457
0.000715465
0.000685003
0.000658756
0.000639949
0.00062835
0.000611919
0.000551252
0.000463629
0.000359139
0.000239373
0.00011339
2.33679e-05
5.41556e-06
7.87198e-06
3.37524e-05
0.00012979
0.0002486
0.000359613
0.000457181
0.000540879
0.00058591
0.000615413
0.000648071
0.000684575
0.000720672
0.000752718
0.000778951
0.000799012
0.00081311
0.000821339
0.000823355
0.00081843
0.000805821
0.000785229
0.000757376
0.000724305
0.000689305
0.000656479
0.000629852
0.000611059
0.000593085
0.000546783
0.000462023
0.000359833
0.000241228
0.00011491
2.37159e-05
5.41519e-06
7.88644e-06
3.33412e-05
0.000128476
0.000246274
0.000356331
0.000453095
0.000535916
0.000573329
0.000604607
0.000640462
0.00067898
0.000715783
0.000747733
0.000773552
0.000793265
0.000807418
0.000816472
0.000820417
0.000818627
0.000810027
0.000793512
0.00076867
0.000736473
0.000699588
0.000662101
0.000628586
0.000602111
0.000579479
0.000540118
0.000457856
0.000358486
0.000242124
0.000116445
2.4146e-05
5.38116e-06
7.89033e-06
3.26598e-05
0.000126424
0.000242928
0.000351878
0.000447733
0.000522681
0.000560384
0.000594568
0.000633093
0.000673306
0.000710847
0.000742801
0.000768156
0.00078721
0.000800798
0.00080971
0.000814327
0.000814407
0.000809049
0.000796859
0.000776555
0.000747833
0.000712187
0.000673118
0.000635349
0.000602671
0.00057347
0.000531497
0.00045054
0.000353672
0.000240231
0.000116581
2.43272e-05
5.311e-06
7.89887e-06
3.20053e-05
0.000124242
0.000239205
0.000346835
0.00044165
0.000509649
0.000547314
0.00058379
0.000624677
0.000666555
0.000704937
0.000737063
0.000762098
0.000780482
0.000793215
0.000801339
0.000805605
0.000806218
0.000802729
0.000793991
0.000778461
0.000754938
0.000723571
0.000686583
0.000647896
0.000611024
0.000574457
0.000523143
0.000442143
0.000346875
0.000236296
0.000115605
2.43261e-05
5.23654e-06
7.89896e-06
3.12147e-05
0.00012162
0.00023484
0.000341042
0.000434799
0.000496894
0.000534829
0.000573416
0.000616238
0.000659451
0.000698658
0.000731157
0.000756133
0.000774058
0.000785975
0.000793044
0.000796289
0.000796362
0.000793392
0.000786794
0.000775289
0.000757297
0.000731832
0.000699566
0.000663076
0.00062489
0.000581872
0.000516692
0.000434544
0.000339744
0.00023122
0.000113509
2.40331e-05
5.16445e-06
7.91062e-06
3.04939e-05
0.000119097
0.000230475
0.000335071
0.000427593
0.000484343
0.0005227
0.000563364
0.000608037
0.000652428
0.000692295
0.000725207
0.00075042
0.000768279
0.00077971
0.000785854
0.000787857
0.000786706
0.000783121
0.000777292
0.000768667
0.000755922
0.000737414
0.000712072
0.000679848
0.000639717
0.000584515
0.000510747
0.000426953
0.000331873
0.000224665
0.000109736
2.3129e-05
5.06345e-06
7.92973e-06
2.97992e-05
0.000116591
0.00022603
0.000328878
0.000420049
0.000471567
0.000510819
0.000553768
0.00060029
0.000645836
0.000686361
0.000719677
0.000745205
0.000763296
0.000774691
0.000780325
0.000781298
0.000778735
0.000773785
0.000767458
0.000760338
0.000752117
0.000741093
0.000723864
0.000695168
0.000647355
0.000580258
0.00050395
0.000418204
0.000322372
0.000216114
0.000104095
2.15733e-05
4.91573e-06
7.9666e-06
2.918e-05
0.000114204
0.000221587
0.000322456
0.000411531
0.000457896
0.00049869
0.000544186
0.000592507
0.000639102
0.000680321
0.000714198
0.000740191
0.00075863
0.000770229
0.000775819
0.000776282
0.000772613
0.000766097
0.000758293
0.000750902
0.000745081
0.000739951
0.00073036
0.000704902
0.000646003
0.000576904
0.000498086
0.000409942
0.000312661
0.000206778
9.758e-05
1.97411e-05
4.7581e-06
8.01766e-06
2.85926e-05
0.000111889
0.000217149
0.000315756
0.000397225
0.000443727
0.000486915
0.000534559
0.000584352
0.000631922
0.000673842
0.000708321
0.000734888
0.000753822
0.000765797
0.000771591
0.000771966
0.000767756
0.000760056
0.000750383
0.000740872
0.000733948
0.000730706
0.000726833
0.000705857
0.000647115
0.000576997
0.000496065
0.000405167
0.00030538
0.000198499
9.11562e-05
1.79186e-05
4.63368e-06
8.0809e-06
2.80214e-05
0.000109629
0.000212809
0.000309127
0.000383036
0.000429365
0.000474749
0.000524526
0.000575773
0.000624223
0.000666751
0.000701787
0.000728936
0.000748501
0.000761071
0.000767292
0.000767868
0.000763559
0.00075527
0.000744194
0.000732235
0.000722054
0.000716055
0.000713102
0.000701616
0.000650587
0.000580932
0.000499046
0.000405857
0.000303046
0.000193689
8.63816e-05
1.65374e-05
4.58959e-06
8.14588e-06
2.74334e-05
0.000107338
0.000208463
0.00030252
0.000369463
0.000415497
0.000462812
0.00051452
0.000567082
0.000616286
0.000659267
0.000694704
0.000722361
0.000742557
0.000755807
0.000762693
0.000763812
0.000759807
0.000751466
0.000739712
0.000726005
0.00071263
0.000702395
0.000696552
0.000689051
0.000655772
0.000588036
0.000506691
0.000412377
0.00030687
0.00019407
8.45896e-05
1.58901e-05
4.61682e-06
8.2093e-06
2.68438e-05
0.000105043
0.000204105
0.000295931
0.000356526
0.0004024
0.000451494
0.000504892
0.000558521
0.000608266
0.000651516
0.000687168
0.00071512
0.000735757
0.000749619
0.000757227
0.000759075
0.000755704
0.000747755
0.000735968
0.00072152
0.0007063
0.000692879
0.000683466
0.000676559
0.000659341
0.000595877
0.000516472
0.000422616
0.000315677
0.000199664
8.64467e-05
1.61547e-05
4.70032e-06
8.27291e-06
2.62937e-05
0.000102824
0.000199772
0.000289376
0.000343836
0.000389953
0.000440894
0.000495786
0.000550209
0.000600251
0.000643574
0.00067926
0.000707305
0.00072815
0.000742366
0.000750495
0.000753011
0.000750392
0.000743162
0.000731853
0.000717435
0.000701625
0.000686941
0.000675947
0.000668437
0.000654417
0.000602706
0.000526154
0.000434075
0.000327153
0.000208881
9.13634e-05
1.71801e-05
4.79035e-06
8.34056e-06
2.57783e-05
0.000100603
0.000195259
0.000281546
0.000331065
0.000378149
0.000430929
0.000487029
0.000541992
0.000592184
0.000635477
0.000671061
0.000698995
0.000719769
0.000734003
0.000742281
0.000745105
0.00074296
0.000736325
0.000725602
0.000711594
0.000695903
0.000681082
0.000669992
0.000663141
0.000651849
0.000606759
0.000533214
0.000443694
0.000338118
0.000219088
9.80147e-05
1.8821e-05
4.88939e-06
8.4096e-06
2.52103e-05
9.81443e-05
0.000190157
0.000268985
0.000318191
0.000366972
0.000421283
0.000478395
0.00053394
0.000584408
0.000627764
0.00066327
0.000691037
0.000711602
0.000725627
0.000733731
0.000736448
0.000734294
0.000727759
0.000717211
0.000703363
0.00068774
0.000672963
0.000662234
0.00065666
0.000648129
0.000607019
0.00053614
0.000449192
0.000345479
0.00022675
0.000103552
2.03166e-05
4.9405e-06
8.47805e-06
2.46298e-05
9.56399e-05
0.000184929
0.000256543
0.000305367
0.000355823
0.000411823
0.000470129
0.00052638
0.0005772
0.000620682
0.000656173
0.000683836
0.000704242
0.000718076
0.000725971
0.000728471
0.000726097
0.000719342
0.000708546
0.000694357
0.000678214
0.000662723
0.000651325
0.00064583
0.000639329
0.000603044
0.000534488
0.000449999
0.000348479
0.000231001
0.00010725
2.14902e-05
4.97303e-06
8.50515e-06
2.4005e-05
9.29693e-05
0.0001794
0.000243919
0.000292343
0.000344459
0.000402222
0.000461881
0.000519031
0.000570378
0.000614108
0.000649643
0.00067721
0.000697434
0.000711046
0.000718714
0.000721
0.000718432
0.000711487
0.000700452
0.00068586
0.000668978
0.000652278
0.00063933
0.000632701
0.000627249
0.000596323
0.000529632
0.000447229
0.000347759
0.000231829
0.000108545
2.19993e-05
4.94653e-06
8.50647e-06
2.3415e-05
9.04216e-05
0.000174001
0.000231543
0.000279389
0.000332961
0.00039241
0.000453486
0.000511702
0.000563789
0.000607971
0.000643709
0.000671266
0.000691306
0.000704607
0.000711892
0.000713774
0.000710829
0.000703563
0.000692244
0.000677306
0.00065979
0.000641815
0.000626722
0.00061764
0.000611876
0.000587499
0.000522344
0.000441836
0.000344518
0.000230659
0.000108734
2.22901e-05
4.92782e-06
8.50735e-06
2.27996e-05
8.78185e-05
0.000168649
0.000219808
0.00026692
0.000321423
0.00038201
0.000444138
0.000503313
0.000556262
0.000601171
0.000637464
0.000665387
0.000685602
0.000698886
0.000705974
0.000707511
0.000704124
0.000696381
0.000684597
0.000669198
0.000651099
0.000632132
0.000615252
0.000603679
0.000596846
0.000578438
0.000514435
0.000435431
0.000339921
0.000227972
0.000107652
2.21289e-05
4.85081e-06
8.50998e-06
2.22081e-05
8.52493e-05
0.00016351
0.000209094
0.000255608
0.000310519
0.000371471
0.00043394
0.000493586
0.000547151
0.000592748
0.000629726
0.000658294
0.000679085
0.000692837
0.000700226
0.000701847
0.000698311
0.000690216
0.000677941
0.000661965
0.000643179
0.000623248
0.0006048
0.000590786
0.000581349
0.000565285
0.000505255
0.000427756
0.000334151
0.000224426
0.000106185
2.18879e-05
4.78594e-06
8.51595e-06
2.16503e-05
8.26032e-05
0.000155697
0.000199652
0.000246114
0.000300742
0.000361195
0.000423257
0.00048276
0.000536453
0.000582383
0.000619853
0.000649055
0.000670622
0.000685255
0.000693538
0.000695938
0.000692947
0.00068509
0.000672753
0.000656471
0.000637191
0.00061655
0.000597026
0.000581371
0.000569878
0.000552769
0.000496607
0.000420206
0.000328023
0.00022007
0.000103803
2.12429e-05
4.64827e-06
8.52709e-06
2.12289e-05
8.05254e-05
0.000148642
0.000191458
0.000237538
0.000291704
0.000351541
0.000412912
0.000471747
0.000524886
0.000570448
0.000607799
0.000637191
0.000659301
0.000674834
0.000684307
0.000688041
0.000686326
0.000679499
0.000667822
0.000651803
0.000632429
0.000611368
0.000591017
0.000573928
0.000560337
0.000541459
0.00048751
0.000412272
0.000321726
0.000215882
0.000101847
2.07859e-05
4.54762e-06
8.53881e-06
2.08041e-05
7.85803e-05
0.000142324
0.000184238
0.000230016
0.000283695
0.000342785
0.0004032
0.000460945
0.00051296
0.000557488
0.000594027
0.000622958
0.000645069
0.000661139
0.0006717
0.000676998
0.000677148
0.000672228
0.000662232
0.000647475
0.000628875
0.000608139
0.000587712
0.000570093
0.000555348
0.000534669
0.000479157
0.00040463
0.000315192
0.000210906
9.88898e-05
1.98859e-05
4.36933e-06
8.55106e-06
2.04728e-05
7.70693e-05
0.000137027
0.000178165
0.000223607
0.00027675
0.000335023
0.000394341
0.000450741
0.000501234
0.000544191
0.000579258
0.000606969
0.000628257
0.000644035
0.000654952
0.000661333
0.000663282
0.000660744
0.000653431
0.000641294
0.000624913
0.000605752
0.000586118
0.000568388
0.000552408
0.000529142
0.000470734
0.000397116
0.000309188
0.000206929
9.70718e-05
1.94263e-05
4.26513e-06
8.55304e-06
1.99985e-05
7.52204e-05
0.00013185
0.000172479
0.000217713
0.000270337
0.000327724
0.000385837
0.000440786
0.000489676
0.000530974
0.000564416
0.000590609
0.000610557
0.00062526
0.000635493
0.000641744
0.000644298
0.000643245
0.000638313
0.00062934
0.000616688
0.000601559
0.000585925
0.000571366
0.000555482
0.000524388
0.000463799
0.000390551
0.000303469
0.000202541
9.4463e-05
1.85931e-05
4.09289e-06
8.54219e-06
1.94752e-05
7.32648e-05
0.00012673
0.000167188
0.000212555
0.000264903
0.00032148
0.000378324
0.000431723
0.000478985
0.000518735
0.000550784
0.000575744
0.000594574
0.000608232
0.000617481
0.000622865
0.000624817
0.000623642
0.000619291
0.000611809
0.000601706
0.000590168
0.000578809
0.000568115
0.000553233
0.000516473
0.000456289
0.000383764
0.00029789
0.000198703
9.26426e-05
1.81676e-05
4.02574e-06
8.50808e-06
1.86673e-05
7.03607e-05
0.000120664
0.000161207
0.000207014
0.00025932
0.000315183
0.000370732
0.000422517
0.000468148
0.000506471
0.000537393
0.000561509
0.000579705
0.000592849
0.00060163
0.000606552
0.000608063
0.000606543
0.000602047
0.000594807
0.000585625
0.000576042
0.000567872
0.000561161
0.000549137
0.000510101
0.000450393
0.000378214
0.000292736
0.000194267
8.96414e-05
1.72317e-05
3.87234e-06
8.41587e-06
1.76901e-05
6.68221e-05
0.000113565
0.000154392
0.000201066
0.000253759
0.000309202
0.000363582
0.000413763
0.000457748
0.000494667
0.000524527
0.000547875
0.000565489
0.000578144
0.000586472
0.000590969
0.000592119
0.000590352
0.000585718
0.000578417
0.000569221
0.000559697
0.000551821
0.000546045
0.000536357
0.000501984
0.000443618
0.000372668
0.000288423
0.000191317
8.81786e-05
1.69255e-05
3.83919e-06
8.27049e-06
1.63173e-05
6.18583e-05
0.000104737
0.000145738
0.000193337
0.000246572
0.000301762
0.000355127
0.000403891
0.000446507
0.00048243
0.000511753
0.00053491
0.000552479
0.000565045
0.000573138
0.000577246
0.000577933
0.000575743
0.000570777
0.00056321
0.00055373
0.000543861
0.000535794
0.000530698
0.000523771
0.00049495
0.000437864
0.000367776
0.000284038
0.000187341
8.51817e-05
1.59862e-05
3.68968e-06
8.12145e-06
1.47212e-05
5.60983e-05
9.48338e-05
0.000135687
0.000184132
0.000238006
0.000293044
0.000345408
0.00039271
0.000433948
0.000468987
0.000498068
0.000521529
0.000539702
0.000552887
0.000561377
0.000565532
0.000565922
0.000563196
0.000557555
0.000549229
0.000538832
0.000527621
0.000517501
0.000510163
0.000503867
0.000485039
0.000430023
0.0003619
0.000279972
0.000184886
8.40698e-05
1.58057e-05
3.67407e-06
7.97421e-06
1.26997e-05
4.903e-05
8.3699e-05
0.000123662
0.000172348
0.000226572
0.00028135
0.000332672
0.000378519
0.000418458
0.000452777
0.000481886
0.000506066
0.000525452
0.000540076
0.000549952
0.000555203
0.000556262
0.000553741
0.000547854
0.000538877
0.000527468
0.00051489
0.000503062
0.000493963
0.000487134
0.000473071
0.000422154
0.000355503
0.000274721
0.00018056
8.09679e-05
1.48512e-05
3.50865e-06
7.84451e-06
1.09027e-05
4.2454e-05
7.27356e-05
0.00011088
0.000159177
0.000213497
0.00026784
0.000317865
0.000361981
0.000400404
0.000433871
0.000462931
0.000487808
0.000508483
0.000524801
0.000536565
0.000543674
0.000546353
0.000545053
0.000539831
0.000530869
0.00051877
0.000504727
0.000490545
0.000478196
0.000467981
0.00045348
0.000412104
0.00034801
0.000269867
0.000178187
8.03658e-05
1.4851e-05
3.49368e-06
7.74113e-06
9.60336e-06
3.64529e-05
6.17875e-05
9.69465e-05
0.000143845
0.000197656
0.000251162
0.000299538
0.000341666
0.000378481
0.000411137
0.000440241
0.000465881
0.000487868
0.000505917
0.000519743
0.000529167
0.000534291
0.000535389
0.000532233
0.000524733
0.000513313
0.00049911
0.00048399
0.000470108
0.000458171
0.000442707
0.000402987
0.000340136
0.000263403
0.000173265
7.72233e-05
1.38894e-05
3.29652e-06
7.66812e-06
8.77541e-06
3.18732e-05
5.24157e-05
8.41185e-05
0.0001292
0.000182392
0.000234826
0.000280938
0.000320304
0.000354865
0.000386292
0.000415191
0.00044139
0.000464421
0.000483809
0.000499205
0.000510476
0.000517795
0.000521467
0.000521055
0.000516121
0.000506702
0.000493573
0.000478314
0.000462928
0.000448378
0.000430702
0.000393512
0.000332758
0.000258667
0.000171375
7.73771e-05
1.41178e-05
3.29639e-06
7.62346e-06
8.03057e-06
2.75526e-05
4.391e-05
7.17651e-05
0.000114304
0.000166557
0.000217799
0.000261285
0.000297338
0.000329154
0.000359061
0.000387664
0.000414464
0.000438597
0.00045928
0.000476021
0.00048873
0.000497736
0.000503591
0.0005059
0.000504116
0.000498042
0.00048815
0.000475706
0.00046239
0.000448633
0.000429272
0.000385981
0.000325602
0.000252343
0.000166343
7.41817e-05
1.31134e-05
3.09505e-06
7.60531e-06
7.62739e-06
2.42707e-05
3.75704e-05
6.19829e-05
0.000102272
0.000154246
0.000204684
0.000245044
0.000276732
0.000304739
0.000332309
0.000360117
0.000387294
0.000412465
0.000434382
0.000452271
0.000465974
0.000475904
0.000482928
0.000486815
0.000487134
0.000483715
0.000476868
0.000467456
0.000456562
0.000443915
0.000423802
0.000378917
0.000320192
0.000249077
0.000165462
7.49804e-05
1.35255e-05
3.142e-06
7.59629e-06
7.21074e-06
2.0955e-05
3.19207e-05
5.29061e-05
9.04218e-05
0.000142079
0.000192335
0.000229973
0.000257133
0.000280755
0.000305281
0.000331773
0.000359169
0.000385538
0.000409042
0.000428494
0.00044354
0.000454537
0.000462583
0.000467544
0.000469125
0.000467422
0.000463133
0.000457455
0.000451229
0.000442183
0.000419119
0.000372114
0.000313579
0.000242727
0.00015978
7.09836e-05
1.23085e-05
2.94519e-06
7.58194e-06
7.12124e-06
1.92265e-05
2.82416e-05
4.61935e-05
8.16295e-05
0.000134388
0.00018582
0.000221271
0.00024384
0.000262285
0.000282236
0.000305916
0.000332699
0.000359937
0.000384897
0.000405893
0.00042234
0.000434434
0.000443492
0.000449358
0.000451697
0.00045062
0.000446851
0.00044156
0.000435678
0.000428001
0.000410458
0.000365629
0.000309248
0.000240505
0.000159482
7.18619e-05
1.27646e-05
3.0319e-06
7.55028e-06
7.04364e-06
1.80048e-05
2.50518e-05
3.92651e-05
7.09817e-05
0.000123722
0.000177002
0.000212525
0.000233393
0.000248261
0.000263483
0.00028303
0.00030745
0.000334391
0.000360321
0.000382775
0.000400804
0.000414344
0.000424926
0.000432298
0.000435945
0.000435899
0.000433004
0.000428786
0.000424603
0.000418951
0.000401435
0.000357463
0.000301607
0.000233182
0.000152664
6.6777e-05
1.12748e-05
2.80994e-06
7.49746e-06
7.28064e-06
1.83252e-05
2.39721e-05
3.478e-05
6.26327e-05
0.000115069
0.000160959
0.000191916
0.000217217
0.000242632
0.000257867
0.000271845
0.00029073
0.000314322
0.00033926
0.000361948
0.000380754
0.000395083
0.000406788
0.000415544
0.000420591
0.000421676
0.000419362
0.00041488
0.000409472
0.000402685
0.000388691
0.000350581
0.000297434
0.000231565
0.000153112
6.81232e-05
1.18677e-05
2.91226e-06
7.42034e-06
7.54107e-06
1.92474e-05
2.36614e-05
3.06182e-05
5.1055e-05
9.72747e-05
0.000132955
0.00016301
0.000187439
0.000213871
0.000243078
0.000270901
0.000283201
0.000298392
0.000318837
0.000340566
0.000359719
0.000374613
0.000387354
0.000397586
0.000404333
0.000407106
0.00040634
0.000403325
0.00039952
0.00039454
0.000381209
0.00034029
0.000287532
0.000222152
0.000144662
6.21246e-05
1.0211e-05
2.65475e-06
7.31202e-06
8.21097e-06
2.21076e-05
2.59397e-05
3.0414e-05
4.43103e-05
7.85576e-05
0.000111327
0.000140728
0.000164132
0.000190045
0.000219545
0.000250991
0.000282495
0.00029764
0.000309212
0.00032537
0.000342676
0.000356908
0.000369788
0.000380749
0.000388617
0.000392647
0.000392939
0.000390389
0.000386142
0.00038014
0.000367794
0.000334445
0.000284597
0.000221944
0.000146526
6.44901e-05
1.10731e-05
2.7849e-06
7.17442e-06
8.88793e-06
2.5877e-05
2.94116e-05
3.19624e-05
3.92243e-05
5.97685e-05
8.61717e-05
0.000115723
0.000139805
0.000164139
0.000192833
0.000224357
0.000256786
0.000288284
0.000306803
0.000315213
0.000326612
0.000338177
0.000350594
0.000362094
0.000370922
0.000376123
0.000377777
0.000376951
0.000375064
0.000371815
0.000359879
0.000321929
0.000272222
0.000210029
0.000135986
5.73655e-05
9.22832e-06
2.49717e-06
6.99213e-06
1.01308e-05
3.17116e-05
3.60973e-05
3.77362e-05
4.1321e-05
5.3408e-05
7.05658e-05
9.8784e-05
0.000125247
0.00014747
0.000174303
0.000204631
0.000236781
0.000268815
0.000299085
0.000318588
0.000322822
0.000327484
0.000336744
0.000347506
0.000356582
0.000362297
0.000364367
0.000363494
0.000360814
0.000356579
0.000346935
0.000318003
0.00027172
0.000212502
0.000140238
6.11098e-05
1.03581e-05
2.6688e-06
6.77586e-06
1.15497e-05
3.72542e-05
4.5053e-05
4.61255e-05
4.66641e-05
5.40665e-05
5.89648e-05
7.83386e-05
0.000104809
0.000127648
0.000151831
0.000180209
0.000211456
0.00024361
0.000274803
0.00030351
0.000321707
0.000319842
0.000322482
0.000330219
0.000338613
0.000344501
0.000346936
0.0003467
0.000345446
0.000343704
0.000335924
0.000302332
0.000255958
0.000197149
0.000126757
5.24021e-05
8.30964e-06
2.37125e-06
6.5091e-06
1.40748e-05
4.65494e-05
5.83501e-05
5.98141e-05
5.842e-05
6.1133e-05
6.27282e-05
7.33702e-05
9.61499e-05
0.000120726
0.000142557
0.000167992
0.000196909
0.000227792
0.000258707
0.000287911
0.000314001
0.000324684
0.00032135
0.000322735
0.000328101
0.00033312
0.000335199
0.000333966
0.000330356
0.000325377
0.000318047
0.000299946
0.000257629
0.000202196
0.000133306
5.72158e-05
9.54717e-06
2.56932e-06
6.20784e-06
1.62356e-05
5.4944e-05
7.28803e-05
7.54232e-05
7.25882e-05
7.11795e-05
7.06222e-05
6.95884e-05
8.30285e-05
0.000105182
0.000127154
0.000149044
0.00017512
0.000204246
0.000234625
0.000264286
0.000291527
0.00031494
0.000319252
0.000314452
0.000314273
0.000316935
0.000318518
0.000317278
0.000313791
0.000309447
0.000302918
0.000282124
0.000239543
0.000184592
0.000118196
4.81413e-05
7.64961e-06
2.27598e-06
5.84682e-06
1.99533e-05
6.63475e-05
8.77482e-05
9.17231e-05
8.97273e-05
8.83642e-05
8.78226e-05
8.21981e-05
8.85717e-05
0.000106104
0.000126837
0.000147229
0.000169812
0.000195728
0.000223806
0.000252255
0.000279243
0.000303154
0.00032238
0.000318904
0.000312381
0.00031065
0.000310494
0.000308385
0.000303202
0.000295546
0.000285945
0.000271858
0.000241122
0.000189673
0.000124634
5.22895e-05
8.51901e-06
2.39057e-06
5.47939e-06
2.28627e-05
7.39341e-05
9.73698e-05
0.000103064
0.000103763
0.000104309
9.93798e-05
9.03819e-05
8.8489e-05
9.799e-05
0.000114511
0.00013272
0.000151887
0.000174667
0.000200558
0.00022801
0.000255071
0.000279937
0.000300758
0.000315914
0.000307393
0.000300406
0.000297515
0.00029517
0.000290892
0.000284346
0.000275498
0.000260466
0.000224357
0.000173896
0.000112122
4.59255e-05
7.31639e-06
2.12924e-06
5.08693e-06
2.66433e-05
7.96301e-05
9.89537e-05
0.00010615
0.000112352
0.000118438
0.00011111
0.000105172
0.000104243
0.000110933
0.000123742
0.000139366
0.000156383
0.000175864
0.000198336
0.000222762
0.000247579
0.000271037
0.000291226
0.000306906
0.000309202
0.000299687
0.000292817
0.000288308
0.000282976
0.000275086
0.000264265
0.000249178
0.000222762
0.000174147
0.000112803
4.54248e-05
7.06203e-06
2.07811e-06
4.72519e-06
2.42574e-05
7.20489e-05
9.10799e-05
0.000101097
0.0001125
0.000116709
0.000110096
0.000104623
0.000102816
0.000106454
0.000115172
0.000127085
0.000141018
0.000157168
0.000176814
0.000199252
0.000223098
0.000246586
0.000267759
0.000284834
0.000297198
0.000289931
0.000281466
0.000275956
0.000271357
0.000265611
0.000257355
0.000242788
0.000209542
0.000163157
0.000105941
4.37505e-05
6.84136e-06
1.91935e-06
4.33669e-06
2.17196e-05
6.13753e-05
7.88866e-05
8.92399e-05
0.000103621
0.000114791
0.000112052
0.000111502
0.000114296
0.000120439
0.00012926
0.000140166
0.000152958
0.000167953
0.000185689
0.000205446
0.000226197
0.000246588
0.000264946
0.000279959
0.000290986
0.000288481
0.000278834
0.000271265
0.000265213
0.000258323
0.000248729
0.000233686
0.000205578
0.000159412
0.000101231
3.86011e-05
5.63638e-06
1.78622e-06
4.0891e-06
1.39555e-05
4.99253e-05
6.9343e-05
7.99867e-05
9.05645e-05
0.000104892
0.000105664
0.00010341
0.000102936
0.000105277
0.000110628
0.000118599
0.000128804
0.000141365
0.000157166
0.000175897
0.000196578
0.000217781
0.000237811
0.000254883
0.0002677
0.000268694
0.000260711
0.000253693
0.000248354
0.000243233
0.000236757
0.000224771
0.000194232
0.000151447
9.81038e-05
4.00285e-05
6.08524e-06
1.72118e-06
3.90301e-06
1.19585e-05
4.50897e-05
6.93146e-05
8.25843e-05
8.86379e-05
9.45999e-05
0.000104409
0.00011184
0.000112993
0.000115784
0.000121029
0.000128939
0.000139296
0.000151924
0.000166969
0.000184145
0.000202675
0.000221471
0.00023907
0.000253984
0.000265361
0.000272532
0.000264335
0.000255
0.000247686
0.000240474
0.000231101
0.00021609
0.000187429
0.000145061
9.1619e-05
3.39784e-05
4.77266e-06
1.61091e-06
3.9374e-06
9.45547e-06
3.91366e-05
7.18727e-05
9.5751e-05
0.000107093
0.000110176
0.000111396
0.000113809
0.000111356
0.000107829
0.00010441
0.000102612
0.000103758
0.000108522
0.000117319
0.000130862
0.000149077
0.000170386
0.000192683
0.000213876
0.000231921
0.000244847
0.000241244
0.000233837
0.000228137
0.000223412
0.000218122
0.000209734
0.00018966
0.000150351
9.85062e-05
3.97617e-05
5.72787e-06
1.6667e-06
3.97164e-06
1.21004e-05
4.63583e-05
8.06549e-05
0.000102577
0.000114522
0.000121221
0.000125311
0.000128248
0.000131424
0.000135181
0.000134865
0.000134953
0.000136774
0.000141456
0.000149286
0.000159762
0.000172249
0.000186294
0.000201291
0.000216084
0.000228852
0.000237862
0.000242308
0.00024162
0.000234391
0.000220664
0.000206381
0.000185199
0.000155189
0.00011716
7.2031e-05
2.65696e-05
4.03244e-06
1.50741e-06
4.48123e-06
1.24071e-05
4.60645e-05
8.21044e-05
0.000101136
0.000114789
0.00012646
0.000135875
0.000143496
0.000149919
0.000150943
0.000149504
0.000146093
0.000141153
0.000135477
0.000130345
0.000127456
0.00012831
0.000133666
0.000144132
0.000160594
0.000181647
0.000204382
0.000225311
0.000240373
0.000243628
0.000236645
0.000226331
0.000210205
0.000185464
0.000152619
0.000111202
4.3546e-05
5.45206e-06
1.67125e-06
4.95784e-06
1.80393e-05
6.18668e-05
9.78745e-05
0.000111279
0.000121366
0.000132024
0.000142056
0.000150057
0.000155511
0.000159138
0.000162886
0.000169319
0.000179466
0.000184654
0.000183936
0.000183414
0.000183601
0.000184689
0.000186662
0.000189244
0.000191807
0.000193395
0.000192817
0.000188876
0.000180716
0.000168001
0.000150669
0.000128775
0.000103096
7.57527e-05
4.96048e-05
2.33583e-05
4.12924e-06
1.44733e-06
5.23125e-06
1.72448e-05
5.40194e-05
8.06647e-05
9.81592e-05
0.000113083
0.000127091
0.000141621
0.000157868
0.000173616
0.000178219
0.00018121
0.000182773
0.000183144
0.000182681
0.000181871
0.000181342
0.00018181
0.00018398
0.000188517
0.000195815
0.000205766
0.00021775
0.000230902
0.000244469
0.000257721
0.000269474
0.000277529
0.000239153
0.000176806
0.000126312
8.43616e-05
2.76986e-05
2.62443e-06
1.07312e-06
4.73847e-06
3.06135e-05
4.23067e-05
5.60452e-05
7.43964e-05
9.49699e-05
0.000117198
0.000129473
0.000142798
0.000156908
0.00017148
0.000186084
0.00020037
0.000214009
0.000226626
0.000237777
0.00024696
0.000253961
0.000258173
0.000258944
0.000255695
0.000248147
0.000236233
0.000220093
0.000199985
0.00017624
0.000149312
0.000119969
8.94929e-05
5.98069e-05
3.31298e-05
1.33965e-05
2.75628e-06
4.94576e-07
1.52888e-07
4.34487e-06
2.18836e-05
2.0751e-05
3.13646e-05
3.40759e-05
3.68411e-05
4.1418e-05
4.68573e-05
5.50964e-05
6.12815e-05
6.18528e-05
6.27661e-05
6.35636e-05
6.42669e-05
6.46382e-05
6.46277e-05
6.41052e-05
6.31109e-05
6.15191e-05
5.9342e-05
5.65297e-05
5.30718e-05
4.89557e-05
4.41927e-05
3.8825e-05
3.29326e-05
2.66633e-05
2.02448e-05
1.40088e-05
8.36761e-06
3.85728e-06
1.14887e-06
5.41561e-07
1.63646e-07
1.59184e-07
6.59437e-06
3.27291e-05
4.68358e-05
5.37687e-05
5.77244e-05
5.69323e-05
5.53261e-05
5.52502e-05
5.55646e-05
5.5303e-05
5.45422e-05
5.35926e-05
5.25287e-05
5.13871e-05
5.02926e-05
4.93118e-05
4.83973e-05
4.75259e-05
4.66882e-05
4.58427e-05
4.49837e-05
4.41085e-05
4.32186e-05
4.23399e-05
4.15262e-05
4.08329e-05
4.03324e-05
4.00931e-05
4.01949e-05
4.09157e-05
4.34753e-05
5.07468e-05
6.1576e-05
2.85427e-05
2.7987e-06
2.08434e-08
2.04222e-06
3.15004e-06
4.28659e-06
5.43357e-06
6.59107e-06
7.67403e-06
8.58374e-06
9.28512e-06
9.56486e-06
9.79049e-06
9.18996e-06
7.29403e-06
5.71854e-06
5.4583e-06
4.95773e-06
6.14238e-06
1.10093e-05
1.44623e-05
1.60455e-05
1.72096e-05
1.80003e-05
1.85154e-05
1.89252e-05
1.94478e-05
2.00643e-05
2.05881e-05
2.09448e-05
2.12098e-05
2.14965e-05
2.18886e-05
2.23011e-05
2.20302e-05
5.5578e-06
6.33578e-09
4.67382e-08
1.39228e-07
7.86282e-07
2.27237e-06
4.28877e-06
6.33293e-06
8.05524e-06
9.30506e-06
1.03089e-05
1.09375e-05
1.14641e-05
1.18299e-05
1.19326e-05
1.18671e-05
1.16412e-05
1.13812e-05
1.13339e-05
1.10415e-05
1.17229e-05
1.17929e-05
1.2132e-05
1.54958e-05
1.23832e-05
9.26718e-06
1.4247e-05
2.21953e-05
3.01681e-05
4.19941e-05
5.74605e-05
6.84982e-05
5.87057e-05
4.45788e-05
2.08494e-05
9.55601e-06
9.75519e-07
5.65443e-07
9.56542e-07
5.69606e-06
1.57095e-05
2.81183e-05
4.02578e-05
4.97448e-05
5.59002e-05
5.93818e-05
6.04748e-05
6.02248e-05
5.94194e-05
5.86467e-05
5.80931e-05
5.76012e-05
5.67643e-05
5.50404e-05
5.20486e-05
4.77737e-05
4.23208e-05
3.63971e-05
3.02914e-05
2.33595e-05
2.03026e-05
2.14223e-05
2.09975e-05
2.05952e-05
2.04818e-05
1.57255e-05
7.79119e-06
3.24534e-06
4.34047e-06
6.17722e-06
5.14454e-06
1.60365e-06
9.43158e-07
4.15808e-06
2.49176e-05
4.28407e-05
6.41974e-05
8.75831e-05
9.97375e-05
0.000101102
9.66967e-05
8.82008e-05
7.71936e-05
6.51404e-05
5.34271e-05
4.33312e-05
3.58697e-05
3.13218e-05
2.8866e-05
2.72015e-05
2.54621e-05
2.34215e-05
2.12231e-05
1.89543e-05
1.65703e-05
1.41499e-05
1.1615e-05
9.51668e-06
7.45468e-06
8.12691e-06
1.15281e-05
1.75115e-05
1.95839e-05
1.42538e-05
1.04283e-05
5.72679e-06
2.1886e-06
7.03731e-07
1.20342e-06
8.10433e-06
2.00011e-05
3.0304e-05
4.07804e-05
5.38384e-05
7.03066e-05
8.1138e-05
8.6935e-05
8.87234e-05
8.6559e-05
8.11473e-05
7.34763e-05
6.45685e-05
5.53261e-05
4.64377e-05
3.83187e-05
3.11279e-05
2.49426e-05
1.98566e-05
1.5794e-05
1.20945e-05
8.11584e-06
5.00064e-06
3.81854e-06
5.90714e-06
1.09601e-05
1.45444e-05
1.58921e-05
1.63258e-05
1.35812e-05
1.13123e-05
5.71677e-06
2.77267e-06
1.02327e-06
3.01672e-06
1.92932e-05
3.88019e-05
5.03832e-05
5.79949e-05
6.55039e-05
7.57052e-05
8.07084e-05
8.40215e-05
8.6215e-05
8.68721e-05
8.57752e-05
8.29751e-05
7.87226e-05
7.33763e-05
6.73243e-05
6.09259e-05
5.44316e-05
4.80503e-05
4.20095e-05
3.48228e-05
2.84023e-05
2.36137e-05
2.09535e-05
2.09093e-05
2.37123e-05
2.69886e-05
2.76644e-05
2.26975e-05
1.85855e-05
1.35136e-05
1.15531e-05
5.80151e-06
3.20629e-06
1.21742e-06
4.11773e-06
2.40652e-05
3.6707e-05
4.91719e-05
6.06453e-05
7.08293e-05
8.17752e-05
9.51989e-05
0.000101475
0.000101857
0.000100783
9.8647e-05
9.57687e-05
9.23246e-05
8.83753e-05
8.3945e-05
7.90623e-05
7.37531e-05
6.81473e-05
6.12497e-05
5.16224e-05
4.46415e-05
4.10871e-05
4.06443e-05
4.02137e-05
3.98469e-05
4.05263e-05
3.84899e-05
2.84395e-05
1.96078e-05
1.42649e-05
1.2292e-05
5.94872e-06
3.59905e-06
1.32189e-06
2.79069e-06
1.66437e-05
3.27503e-05
4.46873e-05
5.54319e-05
6.52758e-05
7.45608e-05
8.49179e-05
9.73708e-05
0.000102703
0.000103878
0.000103736
0.000102488
0.000100424
9.78355e-05
9.49165e-05
9.17306e-05
8.82369e-05
8.44486e-05
8.04154e-05
7.62368e-05
7.2079e-05
6.81607e-05
6.47043e-05
6.18666e-05
5.9525e-05
5.64586e-05
4.8372e-05
3.36586e-05
2.09648e-05
1.57627e-05
1.3313e-05
6.05223e-06
3.99341e-06
1.50913e-06
4.07832e-06
2.32027e-05
4.41272e-05
5.49227e-05
6.36839e-05
7.24044e-05
8.18225e-05
9.27614e-05
0.000105497
0.000114449
0.000114597
0.000113595
0.000111841
0.00010958
0.000107014
0.000104329
0.000101639
9.89471e-05
9.62021e-05
9.33421e-05
9.03513e-05
8.72613e-05
8.41218e-05
8.0929e-05
7.7506e-05
7.32134e-05
6.62417e-05
5.28269e-05
3.54091e-05
2.16118e-05
1.74889e-05
1.49184e-05
6.32424e-06
4.3592e-06
1.56913e-06
3.81523e-06
2.27803e-05
5.03369e-05
6.40324e-05
7.14618e-05
7.76148e-05
8.41384e-05
9.20993e-05
0.000102527
0.0001155
0.000122984
0.000122797
0.000121197
0.000118823
0.000116216
0.000113716
0.000111086
0.000108401
0.000105753
0.000103115
0.000100471
9.77791e-05
9.49422e-05
9.17529e-05
8.77576e-05
8.19267e-05
7.20411e-05
5.456e-05
3.49161e-05
2.18944e-05
1.91648e-05
1.65307e-05
6.71729e-06
4.69006e-06
1.49223e-06
4.36755e-06
2.66511e-05
5.90583e-05
8.46078e-05
9.75912e-05
0.00010021
0.000102581
0.000107281
0.000115381
0.000126792
0.000134773
0.000134537
0.000132718
0.000129909
0.000126624
0.000123276
0.00012006
0.000117538
0.000115448
0.000113295
0.000110989
0.00010849
0.000105659
0.00010211
9.69649e-05
8.83315e-05
7.27914e-05
5.14382e-05
3.47526e-05
2.24068e-05
2.07404e-05
1.7827e-05
7.04756e-06
4.99585e-06
1.61386e-06
4.53916e-06
2.7305e-05
6.03136e-05
8.77032e-05
0.000105993
0.000114542
0.000118642
0.000121962
0.000127346
0.000136632
0.00014717
0.00014725
0.000145331
0.000142259
0.000138596
0.000134743
0.000130968
0.000127695
0.000125311
0.000123879
0.000122424
0.000120358
0.000117512
0.000113337
0.000106561
9.47456e-05
7.43801e-05
5.03501e-05
3.41565e-05
2.36589e-05
2.2536e-05
1.91896e-05
7.41873e-06
5.27621e-06
1.56333e-06
4.81079e-06
2.91674e-05
6.45962e-05
9.62013e-05
0.000120332
0.000136629
0.00014421
0.000145835
0.000148211
0.000154352
0.000162418
0.000163099
0.000161412
0.000157791
0.000153223
0.00014835
0.000143583
0.000139383
0.000136096
0.000134054
0.0001329
0.000131275
0.000128369
0.000123426
0.000114891
0.000100149
7.62461e-05
5.06352e-05
3.46226e-05
2.55666e-05
2.44352e-05
2.04878e-05
7.74351e-06
5.53601e-06
1.82393e-06
5.80944e-06
3.22785e-05
6.70738e-05
9.36161e-05
0.000117034
0.000136488
0.000150523
0.000159407
0.00016545
0.000171782
0.000179327
0.000180615
0.000179904
0.000176821
0.000171853
0.000165977
0.000159861
0.000154189
0.000149415
0.000145849
0.000143737
0.000141733
0.000138341
0.000132472
0.000122322
0.000105148
7.84575e-05
5.16146e-05
3.56133e-05
2.78062e-05
2.64516e-05
2.17779e-05
8.02482e-06
5.77648e-06
1.92092e-06
6.07723e-06
3.35662e-05
6.95374e-05
9.41711e-05
0.000116769
0.000138218
0.000156605
0.000170638
0.000181123
0.000190243
0.000197971
0.000199291
0.000199105
0.000197196
0.000192985
0.000186979
0.000180047
0.000173165
0.000166954
0.000161774
0.000158008
0.000154666
0.000149931
0.000142276
0.000129616
0.000109161
7.99177e-05
5.30404e-05
3.68159e-05
3.01064e-05
2.84763e-05
2.3116e-05
8.33419e-06
6.00024e-06
2.19007e-06
6.5463e-06
3.47105e-05
7.18092e-05
9.36681e-05
0.000113035
0.000132708
0.000152122
0.00016974
0.000184621
0.000197384
0.000209357
0.000219177
0.000219768
0.000218778
0.000215839
0.000210662
0.000203763
0.000196405
0.00018935
0.000182995
0.000177729
0.000172622
0.000165809
0.000155466
0.000139192
0.00011425
8.19322e-05
5.51279e-05
3.81808e-05
3.25869e-05
3.06649e-05
2.45492e-05
8.72501e-06
6.19736e-06
2.32751e-06
6.58539e-06
3.5518e-05
7.76044e-05
0.000106686
0.000123958
0.000139581
0.000155645
0.000171743
0.000186955
0.000200818
0.000213924
0.000227309
0.000239594
0.000241904
0.000240278
0.000236442
0.000230302
0.000223251
0.000216143
0.00020934
0.000203037
0.000196055
0.000186708
0.000173125
0.000152821
0.000123399
8.72658e-05
5.87688e-05
3.96889e-05
3.49486e-05
3.28855e-05
2.58603e-05
8.86504e-06
6.36653e-06
2.43116e-06
6.76765e-06
3.63823e-05
8.18614e-05
0.000122144
0.000145407
0.000158392
0.000170115
0.000182271
0.000194692
0.000206867
0.000218623
0.000230506
0.000243483
0.000257267
0.000266655
0.000264482
0.000259723
0.000253681
0.00024726
0.000240667
0.000233499
0.000224557
0.000212454
0.00019538
0.000171135
0.000138133
9.81017e-05
6.35807e-05
4.26981e-05
3.74307e-05
3.50025e-05
2.74592e-05
9.31015e-06
6.55367e-06
2.40007e-06
6.70266e-06
3.64144e-05
8.40113e-05
0.000128984
0.000165974
0.000191287
0.000200435
0.00020748
0.000215421
0.000224119
0.000233033
0.000241998
0.000251506
0.000262616
0.000275987
0.000289126
0.000290391
0.000286052
0.000280981
0.000274887
0.000266961
0.0002562
0.000241308
0.000220473
0.000191704
0.00015404
0.000110045
6.69458e-05
4.65542e-05
4.09902e-05
3.76373e-05
2.92721e-05
9.87871e-06
6.70962e-06
2.33379e-06
6.57969e-06
3.59885e-05
8.38181e-05
0.000131263
0.000172707
0.000206757
0.000233604
0.000247464
0.000251648
0.000255806
0.000261089
0.000267015
0.000273278
0.000280137
0.000288456
0.000299144
0.000311477
0.000318313
0.000314761
0.000309097
0.000300601
0.000288406
0.000271222
0.000247345
0.000215058
0.000173795
0.000120233
7.3008e-05
5.11556e-05
4.47315e-05
4.03514e-05
3.06485e-05
1.00115e-05
6.83155e-06
2.27053e-06
6.38317e-06
3.54341e-05
8.30199e-05
0.000131323
0.000174992
0.000212461
0.00024355
0.000268685
0.000288554
0.000300573
0.000302226
0.000303879
0.000306781
0.000310442
0.000314756
0.000320094
0.000327123
0.000335784
0.000343312
0.000341142
0.00033258
0.000319509
0.000300662
0.000274598
0.000240166
0.000192922
0.000130102
8.21151e-05
5.80377e-05
4.92563e-05
4.35543e-05
3.28251e-05
1.05697e-05
6.97668e-06
2.22296e-06
6.5705e-06
3.68069e-05
8.49549e-05
0.000133973
0.000179061
0.000218641
0.000252355
0.000280466
0.000303536
0.000322182
0.000337004
0.000348611
0.000355826
0.000355047
0.000355247
0.000357055
0.000359991
0.000364195
0.000369292
0.000370219
0.000362008
0.000348762
0.000329071
0.000301523
0.000265304
0.000205953
0.000139327
9.10586e-05
6.59877e-05
5.47621e-05
4.68753e-05
3.5056e-05
1.12122e-05
7.11456e-06
2.23749e-06
6.97054e-06
3.87023e-05
8.76009e-05
0.000137036
0.000182954
0.000224006
0.000259737
0.000290188
0.000315732
0.0003369
0.000354228
0.000368197
0.000379251
0.000387812
0.000394252
0.000398825
0.000401422
0.000401145
0.000401277
0.000397295
0.000389546
0.000376805
0.000357648
0.000330659
0.000289794
0.000222343
0.000153778
0.000103692
7.57718e-05
6.14434e-05
5.0821e-05
3.72246e-05
1.17539e-05
7.16579e-06
2.32117e-06
7.64358e-06
4.14593e-05
9.16803e-05
0.000141837
0.000188517
0.000230715
0.000268046
0.000300442
0.000328085
0.000351339
0.000370653
0.000386482
0.000399239
0.000409289
0.000416943
0.000422436
0.000425864
0.000427215
0.000426294
0.000422519
0.000414988
0.000402495
0.000383629
0.000355369
0.000301274
0.000233454
0.000167299
0.000116965
8.61644e-05
6.8611e-05
5.5445e-05
3.99149e-05
1.21373e-05
7.23e-06
2.49706e-06
8.48046e-06
4.45617e-05
9.67635e-05
0.000148187
0.000195849
0.000239097
0.000277749
0.000311774
0.000341267
0.000366436
0.000387582
0.000405063
0.000419241
0.000430457
0.000439005
0.00044511
0.000448886
0.000450325
0.000449252
0.000445175
0.000437291
0.000424471
0.000405343
0.000372318
0.000315113
0.000247029
0.000181687
0.000130344
9.64191e-05
7.54428e-05
5.98811e-05
4.2903e-05
1.27387e-05
7.38447e-06
2.72092e-06
9.20993e-06
4.70292e-05
0.000101668
0.000155198
0.000204557
0.000249285
0.00028877
0.00032506
0.000356309
0.000383304
0.000406231
0.000425328
0.00044087
0.00045314
0.000462398
0.00046885
0.000472606
0.00047366
0.000471847
0.000466745
0.000457651
0.000443576
0.000423309
0.000387656
0.000329231
0.000262334
0.000198434
0.000146031
0.000108444
8.3184e-05
6.45358e-05
4.60735e-05
1.38232e-05
7.54131e-06
2.94591e-06
9.99853e-06
4.97923e-05
0.00010729
0.000163262
0.000214355
0.000255404
0.000290115
0.000323681
0.000356604
0.00038773
0.000415764
0.000439968
0.000460153
0.000476181
0.000487063
0.000493888
0.000497597
0.000498166
0.000495431
0.000489004
0.000478256
0.000462314
0.000439514
0.000394439
0.000336595
0.000273665
0.000213347
0.000161978
0.000122225
9.2906e-05
7.04876e-05
4.97841e-05
1.48662e-05
7.56182e-06
3.1044e-06
1.06098e-05
5.20867e-05
0.000112433
0.000171081
0.000224323
0.000271767
0.000305968
0.000333921
0.000361898
0.000390358
0.000418043
0.000443405
0.000465258
0.000482997
0.000496529
0.000506118
0.000512141
0.000514755
0.000513636
0.000507827
0.000495591
0.000474432
0.00044178
0.000396662
0.000341346
0.000281439
0.000224013
0.000174529
0.000134746
0.00010331
7.77088e-05
5.41993e-05
1.56171e-05
7.53008e-06
3.19272e-06
1.12642e-05
5.49076e-05
0.000118507
0.000180416
0.00023632
0.000285831
0.00032934
0.000361168
0.00038309
0.000404972
0.000428273
0.000451742
0.000473612
0.000492404
0.000507203
0.000517668
0.000523866
0.000525933
0.000523691
0.000516334
0.00050234
0.000479659
0.000446363
0.00040188
0.000348151
0.000289926
0.000233533
0.000184347
0.000144422
0.000112398
8.54898e-05
5.9946e-05
1.64871e-05
7.60821e-06
3.22528e-06
1.17004e-05
5.71624e-05
0.000123846
0.000189358
0.000248611
0.000300897
0.00034661
0.000386384
0.000418669
0.000435526
0.000451274
0.000469288
0.000488503
0.000506785
0.000522288
0.000533813
0.000540743
0.000542786
0.000539624
0.000530564
0.000514409
0.000489692
0.000455244
0.000410981
0.000358594
0.000301755
0.00024554
0.00019496
0.000152961
0.00011933
9.15684e-05
6.5184e-05
1.74868e-05
7.80075e-06
3.26441e-06
1.23504e-05
6.02124e-05
0.000130122
0.000199256
0.000262036
0.000317423
0.000365666
0.000407406
0.000443367
0.000474264
0.000487518
0.000497962
0.000511507
0.000527061
0.000541943
0.000553865
0.000561353
0.000563524
0.000559727
0.000549214
0.000530993
0.000504034
0.000467816
0.000422916
0.000371259
0.00031589
0.000260485
0.000208815
0.000163986
0.000127241
9.73796e-05
6.97419e-05
1.86219e-05
7.95325e-06
3.31609e-06
1.29299e-05
6.28881e-05
0.000135758
0.000208389
0.00027479
0.000333587
0.000384795
0.000428924
0.000466645
0.000498648
0.00052238
0.000529482
0.00053668
0.00054758
0.000560121
0.000571228
0.000578519
0.000580434
0.000575932
0.000564163
0.00054432
0.000515745
0.00047835
0.000433091
0.000382115
0.00032832
0.000274608
0.00022345
0.000177024
0.000137159
0.000104367
7.4642e-05
1.94978e-05
7.89071e-06
3.42167e-06
1.36896e-05
6.58559e-05
0.000141572
0.000217467
0.000287286
0.00034941
0.000403657
0.000450391
0.000490176
0.000523635
0.000549362
0.000554589
0.000557887
0.00056468
0.000573947
0.000582825
0.00058862
0.000589326
0.000583584
0.000570466
0.000549338
0.00051988
0.000482334
0.00043784
0.000388536
0.000337117
0.000286027
0.000236941
0.00019104
0.000149709
0.000114013
7.99336e-05
2.03823e-05
7.72673e-06
3.57579e-06
1.44757e-05
6.86314e-05
0.000146986
0.000225925
0.00029897
0.000364286
0.000421508
0.000470858
0.000512796
0.000547856
0.000569493
0.000573915
0.000575926
0.00058042
0.000587112
0.000593753
0.000597773
0.000597
0.000589837
0.000575242
0.000552682
0.000522057
0.00048382
0.000439209
0.000390364
0.000340039
0.000290835
0.000244406
0.000201316
0.000161645
0.000124591
8.24225e-05
2.07098e-05
7.68158e-06
3.78025e-06
1.53774e-05
7.15207e-05
0.000152384
0.000234123
0.000310131
0.000378411
0.000438439
0.000490297
0.000534333
0.00057098
0.000584622
0.000588638
0.000591204
0.000595216
0.00060057
0.000605616
0.000608156
0.000606134
0.000597951
0.000582567
0.000559477
0.000528622
0.000490384
0.000445717
0.000396428
0.000345237
0.000295207
0.000248742
0.000206842
0.000168973
0.000132142
8.42436e-05
2.08129e-05
7.79847e-06
4.01687e-06
1.62143e-05
7.40132e-05
0.000157054
0.000241155
0.000319667
0.000390512
0.000453044
0.000507216
0.00055325
0.000585264
0.000598119
0.000603483
0.000607346
0.000611806
0.000616668
0.000620517
0.000621452
0.000617624
0.000607641
0.000590679
0.000566472
0.000535241
0.000497516
0.000454023
0.000405846
0.000354813
0.000303656
0.000255405
0.0002122
0.000174176
0.000137574
8.69804e-05
2.14264e-05
7.98758e-06
4.26692e-06
1.70778e-05
7.65423e-05
0.000161625
0.000247748
0.000328327
0.000401278
0.000465877
0.000521973
0.000569693
0.0005963
0.000610419
0.000618798
0.000625407
0.000631806
0.000637758
0.000641906
0.000642398
0.000637403
0.000625526
0.000606054
0.000579058
0.00054527
0.000505809
0.00046183
0.000414281
0.000364148
0.000313064
0.00026356
0.000218313
0.000178474
0.0001407
8.83616e-05
2.16918e-05
8.07486e-06
4.52955e-06
1.77714e-05
7.84116e-05
0.000165289
0.000253209
0.000335559
0.000410274
0.000476571
0.000534166
0.000574396
0.000597936
0.000613576
0.000625729
0.000636312
0.000645911
0.000654143
0.000659864
0.000661432
0.000657063
0.000645233
0.000625064
0.000596618
0.000560889
0.00051949
0.000474158
0.000426246
0.000376578
0.000325935
0.000275826
0.000228583
0.000185972
0.00014549
9.06326e-05
2.22029e-05
8.01163e-06
4.79305e-06
1.86119e-05
8.07589e-05
0.000169621
0.000259236
0.000342967
0.000418886
0.000486271
0.000543764
0.000575034
0.00059611
0.000613005
0.000627639
0.000640698
0.000652308
0.000662024
0.000668867
0.000671434
0.000668108
0.000657351
0.000638067
0.000609999
0.00057398
0.000531777
0.000485565
0.000437289
0.00038816
0.000338701
0.000289504
0.000241949
0.000197513
0.000153764
9.34501e-05
2.27068e-05
7.85334e-06
5.01148e-06
1.95736e-05
8.3768e-05
0.000174976
0.000266411
0.000351353
0.000428104
0.000496157
0.000555296
0.000585086
0.000602457
0.000617118
0.000631226
0.000644654
0.000656787
0.000666864
0.00067394
0.000676836
0.000674173
0.000664525
0.000646683
0.000620052
0.000585005
0.000543008
0.000496329
0.000447385
0.000398059
0.000349333
0.000301603
0.000255387
0.000211061
0.000164789
9.67762e-05
2.3193e-05
7.67922e-06
5.13286e-06
2.05089e-05
8.70429e-05
0.000180873
0.000274507
0.000360943
0.000438626
0.000507324
0.000567073
0.000609197
0.000624138
0.000633318
0.000643152
0.000654043
0.000664703
0.000673719
0.000679865
0.000682014
0.000679014
0.000669661
0.000652802
0.000627638
0.000594094
0.000553097
0.000506571
0.00045703
0.000406899
0.000357915
0.000310986
0.000266475
0.000223702
0.000176335
9.97257e-05
2.35176e-05
7.565e-06
5.15891e-06
2.11829e-05
8.97086e-05
0.000185786
0.000281636
0.000369931
0.000449029
0.000518812
0.000579532
0.00063143
0.000658997
0.000664632
0.000668238
0.000674271
0.000681693
0.00068839
0.000692579
0.000692948
0.000688465
0.000678174
0.000661107
0.000636452
0.000603843
0.000563696
0.000517404
0.000467212
0.000415755
0.000365437
0.000317977
0.000274216
0.000233094
0.000185813
0.000102159
2.37744e-05
7.53177e-06
5.13432e-06
2.14609e-05
9.09163e-05
0.000188251
0.000285805
0.000375992
0.000456905
0.000528295
0.000590427
0.000643677
0.000688386
0.000702589
0.000702173
0.000702758
0.000706115
0.000709987
0.000711872
0.000710043
0.000703467
0.000691423
0.000673216
0.000648172
0.000615825
0.000576222
0.00053021
0.000479546
0.000426692
0.000374372
0.000325089
0.00028054
0.000239623
0.000190624
0.000104587
2.42573e-05
7.55427e-06
5.15958e-06
2.19366e-05
9.24209e-05
0.000190573
0.000289095
0.000380564
0.000462977
0.000535927
0.000599565
0.000654221
0.000700262
0.000734015
0.000735862
0.000732907
0.000732772
0.000734322
0.00073447
0.000730877
0.000722339
0.000708331
0.000688482
0.000662389
0.000629669
0.000590197
0.000544418
0.00049357
0.000439719
0.000385532
0.000333867
0.000287066
0.000244609
0.000194545
0.000106599
2.47304e-05
7.56466e-06
5.26236e-06
2.24148e-05
9.3798e-05
0.000192872
0.00029232
0.000384835
0.000468424
0.000542632
0.000607542
0.000663428
0.000710625
0.000749484
0.000755069
0.000753306
0.000753285
0.000754638
0.000754445
0.000750231
0.000740715
0.000725486
0.00070444
0.000677457
0.000644335
0.000604941
0.000559491
0.000508815
0.000454523
0.000399022
0.000345305
0.000296163
0.000251424
0.000198944
0.000108927
2.53553e-05
7.52476e-06
5.42721e-06
2.29285e-05
9.54365e-05
0.000195925
0.00029661
0.000390173
0.000474689
0.000549746
0.000615429
0.000671989
0.000719727
0.000746973
0.000754831
0.00075852
0.000762699
0.000766545
0.000767643
0.000763954
0.000754438
0.000738872
0.000717373
0.000690065
0.000656939
0.000617933
0.000573169
0.000523233
0.000469414
0.000413847
0.000359415
0.00030888
0.000261696
0.000204493
0.000111728
2.60791e-05
7.43056e-06
5.56448e-06
2.33735e-05
9.71498e-05
0.00019938
0.000301571
0.00039621
0.00048143
0.000556918
0.000622834
0.000679456
0.000721203
0.000736904
0.000745382
0.000753688
0.000762438
0.000769691
0.000773107
0.000770962
0.000762456
0.000747522
0.00072643
0.00069948
0.000666842
0.000628575
0.000584821
0.000536084
0.00048351
0.000429063
0.000375414
0.000324877
0.00027561
0.000211492
0.000115223
2.69207e-05
7.30387e-06
5.6358e-06
2.4078e-05
9.97174e-05
0.000203808
0.000307445
0.000402998
0.000488672
0.000564286
0.00063012
0.000686545
0.000726364
0.000738074
0.000744129
0.000751868
0.000761271
0.000769761
0.000774586
0.000773796
0.000766477
0.000752523
0.000732229
0.000705983
0.000674073
0.000636677
0.000594018
0.000546646
0.000495734
0.000443245
0.000391674
0.000342601
0.00029187
0.000218631
0.000118521
2.75887e-05
7.15678e-06
5.64116e-06
2.48981e-05
0.000102673
0.000208481
0.000313418
0.000409872
0.000496081
0.00057195
0.000637873
0.000694335
0.000741769
0.000754057
0.000755532
0.00075936
0.000766627
0.000774377
0.000779248
0.000778851
0.000772024
0.000758542
0.000738657
0.000712764
0.000681208
0.000644246
0.000602191
0.000555706
0.000506121
0.000455595
0.000406673
0.000360176
0.000308753
0.000224726
0.000120961
2.79225e-05
6.99783e-06
5.62688e-06
2.54767e-05
0.00010486
0.000212054
0.000318194
0.000415645
0.000502603
0.000578976
0.000645196
0.000701817
0.000749346
0.000772201
0.000772757
0.000772605
0.000776646
0.000782616
0.00078677
0.000786227
0.000779492
0.000766175
0.000746449
0.00072068
0.000689212
0.000652328
0.000610402
0.00056421
0.000515319
0.000466242
0.000419655
0.000375116
0.000320471
0.000228692
0.00012209
2.78748e-05
6.85261e-06
5.61416e-06
2.63501e-05
0.000107806
0.000216383
0.000323469
0.00042163
0.000509127
0.000585886
0.00065237
0.000709173
0.000756866
0.000790852
0.000791623
0.000788052
0.000788718
0.000792461
0.000795405
0.000794255
0.000787268
0.000773921
0.000754269
0.000728597
0.000697205
0.000660356
0.000618444
0.00057235
0.000523877
0.00047582
0.000430684
0.000386073
0.00032417
0.000230377
0.000121991
2.75599e-05
6.73704e-06
5.61594e-06
2.72445e-05
0.00011067
0.000220305
0.00032803
0.000426742
0.000514754
0.000591972
0.00065883
0.000715924
0.000763852
0.000803132
0.00080915
0.000803541
0.000801375
0.000803156
0.00080496
0.00080316
0.00079575
0.000782092
0.000762275
0.000736588
0.000705263
0.000668515
0.000626758
0.000580973
0.000533099
0.000485949
0.000441555
0.00039584
0.000327607
0.00023185
0.000122058
2.74221e-05
6.64728e-06
5.67654e-06
2.80612e-05
0.000112988
0.000223339
0.000331428
0.000430498
0.000518956
0.000596672
0.000664013
0.000721518
0.000769757
0.00080926
0.000819409
0.000814699
0.000811877
0.000812756
0.000813876
0.000811639
0.000803934
0.000790053
0.000770064
0.000744265
0.000712942
0.000676356
0.000634974
0.000589904
0.00054322
0.000497646
0.000454465
0.000407505
0.00033204
0.000234179
0.000122875
2.75813e-05
6.56633e-06
5.80156e-06
2.87647e-05
0.000114846
0.000225777
0.000334125
0.00043343
0.000522198
0.000600302
0.000668069
0.000725982
0.000774567
0.000814329
0.000819129
0.000816824
0.000817145
0.000819782
0.000821421
0.000819056
0.000811056
0.00079697
0.000776901
0.00075111
0.000719865
0.000683482
0.000642575
0.000598447
0.000553357
0.000510024
0.000468983
0.000421319
0.000337167
0.000237078
0.000124047
2.78413e-05
6.48957e-06
5.99125e-06
2.92104e-05
0.000115934
0.000227499
0.000336216
0.000435743
0.000524688
0.000602976
0.000670938
0.000729032
0.000777731
0.000797963
0.000805251
0.000810688
0.000817131
0.000823211
0.000826406
0.000824605
0.000816713
0.000802552
0.000782411
0.000756672
0.000725614
0.000689548
0.0006492
0.000606156
0.000563075
0.000522619
0.000483225
0.000429359
0.000342065
0.000240029
0.000125275
2.81036e-05
6.42913e-06
6.24211e-06
2.96204e-05
0.000116977
0.000229695
0.000339167
0.000438918
0.000527671
0.00060551
0.000672899
0.000723031
0.0007501
0.000768296
0.000783937
0.000798697
0.000812092
0.000822496
0.000828037
0.0008274
0.000820103
0.000806279
0.000786343
0.00076075
0.00072989
0.000694228
0.000654704
0.000613183
0.000572496
0.000534753
0.000495865
0.00043488
0.000346202
0.000242575
0.000126352
2.83432e-05
6.38399e-06
6.5403e-06
3.02712e-05
0.000118692
0.000233267
0.000344015
0.000444013
0.00053199
0.000608191
0.000653788
0.000684482
0.000711227
0.000736985
0.000761524
0.000783883
0.000802896
0.000817186
0.000825377
0.000826588
0.000820616
0.000807716
0.000788384
0.000763204
0.000732733
0.000697672
0.000659269
0.000619662
0.000581608
0.000546323
0.000507277
0.000439414
0.000349381
0.000244344
0.000126926
2.84302e-05
6.33551e-06
6.86213e-06
3.1102e-05
0.000120741
0.000237563
0.000350168
0.000450833
0.000537987
0.000597977
0.000627228
0.000652146
0.000679775
0.000709451
0.000738863
0.000765935
0.000789035
0.000806772
0.000817954
0.00082174
0.000817841
0.000806518
0.000788322
0.000763936
0.000734131
0.000699908
0.00066285
0.000625375
0.000590152
0.00055741
0.000518054
0.000443142
0.000351786
0.000245475
0.000127083
2.83785e-05
6.27338e-06
7.14746e-06
3.18927e-05
0.000122375
0.000241024
0.000355664
0.000457796
0.000545357
0.000597103
0.000617253
0.000635793
0.000659796
0.000688192
0.000718128
0.000746897
0.000772331
0.000792746
0.000806778
0.000813394
0.000812073
0.000802902
0.000786354
0.000763131
0.000734193
0.000700897
0.000665277
0.000630141
0.000598022
0.000567478
0.000524834
0.00044607
0.000353539
0.000246123
0.000126942
2.82273e-05
6.20083e-06
7.31702e-06
3.2388e-05
0.000122928
0.000242272
0.000358415
0.000462512
0.000552032
0.000615123
0.00062944
0.000638641
0.000654766
0.000677703
0.000704372
0.000731635
0.000756925
0.000778241
0.000793993
0.000802923
0.000804189
0.000797472
0.000782932
0.00076118
0.000733313
0.000701071
0.000667002
0.00063422
0.000604813
0.000575287
0.000527819
0.000448101
0.000354583
0.00024628
0.000126551
2.80183e-05
6.12818e-06
7.30256e-06
3.18674e-05
0.000120985
0.000239525
0.000356012
0.000461669
0.000553801
0.00063145
0.000661734
0.000663454
0.000668526
0.000682327
0.000702408
0.000725208
0.000747729
0.000767654
0.000783179
0.000792873
0.000795665
0.000790893
0.000778325
0.000758275
0.000731762
0.000700714
0.000668037
0.000637102
0.000609718
0.000581017
0.000530454
0.000449748
0.000355259
0.000246131
0.000125973
2.77679e-05
6.05786e-06
7.12762e-06
3.05938e-05
0.00011793
0.000235369
0.00035146
0.000457605
0.000551348
0.000631904
0.00069911
0.000708376
0.000703072
0.000704883
0.000715392
0.000731169
0.000748518
0.000764649
0.000777596
0.000785914
0.000788479
0.000784426
0.000773174
0.000754642
0.000729549
0.000699741
0.000668269
0.000638733
0.00061292
0.000585214
0.00053318
0.000451512
0.000356079
0.000246138
0.000125511
2.75469e-05
5.98672e-06
6.90196e-06
2.96585e-05
0.000116378
0.00023348
0.000349258
0.000455258
0.000549361
0.000631079
0.000700382
0.000750736
0.000748938
0.000741421
0.000741896
0.000749698
0.000760707
0.000771484
0.000779889
0.000784634
0.000784804
0.000779592
0.00076825
0.000750353
0.000726214
0.000697344
0.000666682
0.000637975
0.000613281
0.000587
0.000535845
0.000453206
0.000356795
0.000246006
0.000124885
2.725e-05
5.91708e-06
6.72183e-06
2.94911e-05
0.000116837
0.000234215
0.000349872
0.000455513
0.000549315
0.000631119
0.000701164
0.000759763
0.000782766
0.000777312
0.000773075
0.000775562
0.000781782
0.000787936
0.000791684
0.000791941
0.000788202
0.000780012
0.000766761
0.000747922
0.000723484
0.000694497
0.000663499
0.000634222
0.00060942
0.000584945
0.000538794
0.000455321
0.000357906
0.000246158
0.000124389
2.69916e-05
5.86887e-06
6.61648e-06
2.9833e-05
0.000118284
0.000236
0.000351606
0.000456957
0.000550344
0.000631825
0.00070186
0.000760946
0.000800351
0.000800834
0.000797172
0.000798677
0.000803662
0.000808251
0.000809751
0.000807045
0.000799937
0.000788406
0.000772209
0.000751014
0.000724779
0.000694268
0.000661516
0.000629825
0.000602501
0.000578611
0.000542006
0.000457853
0.000359416
0.000246598
0.000124059
2.67906e-05
5.85395e-06
6.58426e-06
3.02325e-05
0.000119625
0.000237563
0.000353193
0.00045851
0.000551754
0.000633013
0.00070288
0.000761987
0.000808586
0.000812424
0.00081032
0.000812948
0.000818992
0.000824468
0.000826392
0.000823418
0.00081531
0.000802186
0.000784033
0.000760731
0.000732349
0.000699594
0.000664274
0.00062941
0.000598361
0.000571492
0.000537787
0.000461113
0.00036207
0.000248235
0.000124645
2.68428e-05
5.85453e-06
6.63089e-06
3.06044e-05
0.000120733
0.000238825
0.000354482
0.000459918
0.000553288
0.000634542
0.000704266
0.000763178
0.000807104
0.000813509
0.000814105
0.000818769
0.000826453
0.000833413
0.000836717
0.000834938
0.000827717
0.000815084
0.00079699
0.000773314
0.000744095
0.000709951
0.000672525
0.000634654
0.000599712
0.000568907
0.000534228
0.000465514
0.000366105
0.000251351
0.000126441
2.72253e-05
5.83364e-06
6.7659e-06
3.10645e-05
0.000121792
0.000239918
0.000355405
0.000460776
0.000554202
0.000635515
0.000705158
0.0007638
0.000793469
0.000802409
0.000808463
0.000817065
0.000827063
0.00083556
0.000840234
0.000839894
0.000834191
0.000823077
0.000806418
0.00078398
0.000755651
0.000721833
0.00068392
0.000644544
0.000607034
0.000573016
0.000536118
0.000470087
0.000370284
0.00025472
0.000128486
2.76473e-05
5.76501e-06
6.93643e-06
3.1378e-05
0.000122288
0.000240201
0.000355231
0.000460162
0.000553275
0.000634365
0.000703738
0.000751819
0.000771546
0.000783331
0.000795531
0.000809065
0.000821997
0.000832121
0.000837961
0.000838838
0.000834588
0.00082518
0.000810439
0.000790064
0.000763805
0.000731833
0.000695233
0.000656327
0.000618236
0.000582501
0.000542832
0.000473762
0.000373288
0.000257028
0.000129863
2.78938e-05
5.66121e-06
7.03848e-06
3.16226e-05
0.000122647
0.000240151
0.000354357
0.000458312
0.000550505
0.000630835
0.000699598
0.000736205
0.000753225
0.000767436
0.000783221
0.000799628
0.000814343
0.000825461
0.000831988
0.000833633
0.000830438
0.000822454
0.00080954
0.000791396
0.000767727
0.000738569
0.000704735
0.00066814
0.000631359
0.000595247
0.000552566
0.000476974
0.000375336
0.000258268
0.00013057
2.80101e-05
5.55397e-06
7.0245e-06
3.19811e-05
0.000123444
0.000240558
0.000353876
0.000456727
0.000547828
0.00062725
0.00069539
0.000734478
0.000748618
0.000760975
0.000776751
0.000793919
0.000809244
0.000820551
0.000826995
0.000828582
0.000825599
0.000818257
0.000806555
0.000790328
0.000769358
0.000743647
0.000713773
0.000681196
0.000647848
0.000613458
0.00056824
0.00048201
0.000378734
0.000260439
0.000131983
2.8422e-05
5.45627e-06
6.96223e-06
3.2206e-05
0.000123919
0.000240584
0.000353154
0.000455158
0.000545439
0.000624185
0.000691904
0.000737539
0.000751085
0.000762122
0.000777504
0.000794809
0.000810146
0.000821039
0.000826685
0.00082734
0.000823609
0.00081593
0.000804466
0.000789246
0.000770341
0.000748116
0.000723369
0.000697119
0.000669394
0.000635292
0.00057707
0.000487463
0.000382606
0.00026285
0.000133393
2.88174e-05
5.35796e-06
6.96042e-06
3.24643e-05
0.000124554
0.000241062
0.000353113
0.000454436
0.000543979
0.000622039
0.000689234
0.000733669
0.00074915
0.000763024
0.000780886
0.000799791
0.000815757
0.000826423
0.000831222
0.000830643
0.00082556
0.000816763
0.000804732
0.000789839
0.000772636
0.000754019
0.000735075
0.000716246
0.000694829
0.00065926
0.000583608
0.00049317
0.000387221
0.000266167
0.00013545
2.93889e-05
5.26297e-06
7.10831e-06
3.29143e-05
0.00012589
0.000243278
0.000355508
0.000456344
0.000544943
0.000621855
0.000685275
0.000711824
0.000731844
0.000754895
0.000779879
0.00080299
0.000821043
0.000832454
0.000837091
0.000835675
0.000829259
0.000818879
0.000805429
0.000789882
0.000773604
0.000758475
0.000746264
0.00073596
0.000717322
0.000662092
0.000586648
0.000496149
0.000389718
0.000267769
0.000136116
2.95192e-05
5.17373e-06
7.42246e-06
3.34309e-05
0.000127603
0.000247046
0.000360406
0.000460967
0.000547959
0.000606921
0.000640887
0.000670516
0.000702793
0.000737083
0.000770112
0.000798634
0.000820369
0.000834199
0.000840128
0.000838987
0.000831982
0.000820365
0.000805396
0.000788659
0.000772403
0.000759485
0.000751815
0.000745537
0.000721736
0.000660355
0.000585183
0.000494778
0.000388139
0.000265756
0.000133999
2.867e-05
5.09789e-06
7.82085e-06
3.38108e-05
0.000128895
0.000251085
0.00036647
0.000466982
0.000532796
0.000565883
0.000595488
0.000629338
0.000667222
0.000706916
0.000745362
0.000779279
0.000806166
0.00082464
0.000834391
0.000835957
0.000830388
0.000819007
0.000803408
0.000785822
0.00076943
0.000758007
0.000753539
0.000749561
0.000719349
0.000658686
0.000584401
0.000494853
0.000388811
0.000266573
0.000134528
2.88823e-05
5.10001e-06
8.14721e-06
3.4054e-05
0.000129004
0.000252836
0.000370585
0.000472925
0.000534642
0.000556225
0.000576303
0.000603099
0.000635896
0.000672345
0.000709753
0.000745118
0.000775606
0.000799038
0.000814127
0.000820469
0.000818468
0.000809163
0.000794177
0.000775992
0.000758205
0.000745202
0.000739878
0.000737369
0.000713063
0.00065268
0.000578675
0.000489263
0.000383123
0.000260734
0.000129461
2.72713e-05
5.09247e-06
8.16619e-06
3.37316e-05
0.000126675
0.000248667
0.000366843
0.000472199
0.000561691
0.000594337
0.000598648
0.000608413
0.000627446
0.000653155
0.000682504
0.000712752
0.000741375
0.000766072
0.000784867
0.000796328
0.000799737
0.000795195
0.000783652
0.000767126
0.000748923
0.000733473
0.000724849
0.000722001
0.000707724
0.00064748
0.000573953
0.000485267
0.000379926
0.000258257
0.00012766
2.67116e-05
5.11573e-06
7.83701e-06
3.22672e-05
0.000121363
0.000238276
0.000353026
0.000458062
0.000550939
0.000630235
0.000664881
0.000660638
0.000658538
0.000665955
0.000680679
0.000699396
0.000719478
0.000738834
0.00075559
0.000767972
0.000774425
0.000773924
0.000766313
0.000752782
0.000736179
0.000720887
0.000711592
0.000709057
0.000700382
0.000643971
0.000570808
0.000482823
0.000378386
0.000257533
0.000127439
2.68909e-05
5.17722e-06
7.48415e-06
3.10644e-05
0.000117952
0.000230886
0.00034142
0.000443369
0.000535338
0.000616733
0.000686893
0.000727167
0.000723804
0.000715587
0.000713609
0.000717672
0.000725136
0.000733842
0.000742379
0.000749563
0.000754053
0.000754339
0.000749053
0.000737773
0.000721851
0.000704753
0.000691315
0.000684563
0.00067733
0.000636503
0.000563078
0.000474746
0.000370063
0.00024944
0.000121017
2.49644e-05
5.13853e-06
7.40028e-06
3.01216e-05
0.000115283
0.000225928
0.000333786
0.000433082
0.000523032
0.00060368
0.000674949
0.000736434
0.000760022
0.000759357
0.000754864
0.000751714
0.000749545
0.000747436
0.000745156
0.000742846
0.000740514
0.000737572
0.000732686
0.000724402
0.000712104
0.00069712
0.000683053
0.000673696
0.000665892
0.000634468
0.000560908
0.000473019
0.000369331
0.000249839
0.000121852
2.52573e-05
5.15979e-06
7.53991e-06
3.07865e-05
0.000116479
0.000225848
0.000331259
0.000427597
0.000514592
0.00059282
0.00066271
0.000724288
0.000752911
0.000766216
0.000774089
0.000778567
0.000778241
0.00077228
0.000761531
0.00074793
0.00073366
0.000720218
0.000707905
0.000696202
0.00068437
0.00067239
0.000661906
0.000655655
0.000652731
0.000635027
0.000560902
0.000472316
0.000368513
0.00024947
0.000121857
2.5425e-05
5.21787e-06
7.5672e-06
3.09334e-05
0.000117004
0.000225572
0.000329156
0.000423026
0.00050718
0.000582475
0.000649701
0.00070737
0.00073507
0.000753404
0.00076974
0.00078416
0.000793892
0.00079593
0.000788769
0.000773097
0.000751448
0.00072701
0.000702382
0.000679197
0.00065827
0.00064016
0.000625964
0.000617639
0.00061547
0.000608917
0.000559263
0.000471297
0.000367035
0.000247753
0.000120647
2.52232e-05
5.2338e-06
7.48559e-06
3.07167e-05
0.000116766
0.000225063
0.000327797
0.000420147
0.00050223
0.000575104
0.000639804
0.000697079
0.000724784
0.000743497
0.00076224
0.00078075
0.000795763
0.000804031
0.000803579
0.000793905
0.000775629
0.000750376
0.000720499
0.000688643
0.00065727
0.000628419
0.000603891
0.000585641
0.000575393
0.000570969
0.000554607
0.000471462
0.000368139
0.000248579
0.000121039
2.53128e-05
5.19803e-06
7.45644e-06
3.08711e-05
0.000117533
0.000225885
0.000328181
0.000419613
0.000500285
0.000571357
0.000634067
0.000689425
0.000718126
0.00073921
0.000761223
0.000783466
0.00080236
0.000814569
0.000818102
0.000812307
0.000797472
0.000774516
0.000744835
0.000710278
0.000673127
0.000635943
0.000601292
0.000571681
0.00054958
0.000535963
0.000522761
0.000472359
0.00037261
0.000253493
0.000124093
2.58137e-05
5.14442e-06
7.46899e-06
3.04546e-05
0.000116949
0.000225464
0.000327838
0.000419064
0.000499113
0.000569089
0.000630294
0.000678771
0.000705956
0.000730163
0.000756568
0.000783277
0.000806449
0.000822876
0.000830644
0.000828979
0.000817969
0.000798242
0.000770725
0.000736641
0.000697624
0.000655885
0.000614062
0.000575032
0.000541753
0.000516517
0.000498003
0.000470516
0.000379815
0.000262743
0.000131165
2.74899e-05
5.11219e-06
7.43479e-06
3.02582e-05
0.00011681
0.000225659
0.000328298
0.000419568
0.000499368
0.000568757
0.000629
0.000671611
0.000697446
0.000723411
0.000751943
0.000780864
0.00080684
0.000826913
0.000839099
0.000842261
0.000835869
0.00081995
0.000795083
0.00076234
0.00072319
0.000679526
0.000633699
0.00058853
0.000547257
0.000512959
0.000486248
0.000457373
0.000385613
0.000271885
0.000139583
3.00097e-05
5.06791e-06
7.40284e-06
3.06225e-05
0.000118275
0.000227736
0.000330701
0.000422046
0.00050163
0.000570514
0.000629995
0.000668337
0.000692569
0.000719642
0.000750435
0.000780458
0.000806703
0.000827711
0.000842315
0.000849373
0.00084785
0.00083694
0.000816277
0.000786224
0.000747998
0.000703521
0.000655303
0.000606364
0.000560101
0.000519903
0.00048706
0.00045405
0.00038684
0.000276401
0.000145473
3.22275e-05
4.958e-06
7.38992e-06
2.968e-05
0.000115983
0.000225127
0.000328493
0.000420574
0.00050089
0.000570285
0.000629979
0.000661247
0.000685801
0.000714403
0.000746515
0.00077809
0.00080515
0.000826241
0.000841552
0.000850808
0.000853022
0.000846937
0.000831424
0.000805841
0.000770443
0.000726723
0.000677415
0.000626141
0.000576944
0.000533537
0.000496956
0.000458072
0.000381345
0.000273146
0.000145531
3.27886e-05
4.75713e-06
7.38355e-06
2.99778e-05
0.000116851
0.000226119
0.000329444
0.000421487
0.000501767
0.000571049
0.000625035
0.000654272
0.000681819
0.000712417
0.000744196
0.000774659
0.000801662
0.000823162
0.000838306
0.000847672
0.000851441
0.000848717
0.000838044
0.000818025
0.000787896
0.000748124
0.000700903
0.000650121
0.00060041
0.000555429
0.000514495
0.000464187
0.000373779
0.000266106
0.000141964
3.21413e-05
4.51639e-06
7.39117e-06
2.93873e-05
0.000115335
0.00022423
0.000327651
0.000420101
0.000500908
0.000570661
0.000614837
0.000645017
0.000676887
0.000711051
0.000744062
0.000773448
0.000798515
0.00081915
0.000834661
0.000844223
0.000847969
0.000846328
0.000838694
0.000823653
0.000799806
0.000766645
0.000725402
0.000679497
0.000633687
0.00059054
0.000543093
0.000464566
0.000370316
0.000261183
0.000138679
3.13423e-05
4.30518e-06
7.44411e-06
2.93061e-05
0.000114835
0.000223184
0.000326112
0.000418279
0.00049901
0.000565277
0.00060152
0.000634528
0.000670855
0.000708388
0.000743403
0.000773396
0.000797634
0.000816568
0.00083084
0.000840463
0.000844783
0.000843447
0.000836863
0.000825102
0.000807401
0.000783021
0.000752266
0.000716724
0.000677244
0.000628959
0.000555381
0.000470302
0.00037236
0.000260463
0.000137182
3.0764e-05
4.15103e-06
7.4995e-06
2.91454e-05
0.000114262
0.00022219
0.000324684
0.000416504
0.000496981
0.000552765
0.000589127
0.000625957
0.000665921
0.000705924
0.000742613
0.000773896
0.000798917
0.000817771
0.000831054
0.0008394
0.000843202
0.000842523
0.000837364
0.000828247
0.000816136
0.000801251
0.000782142
0.000753582
0.0007019
0.000637849
0.000562881
0.000475833
0.000375435
0.000261023
0.000136155
3.00378e-05
4.04386e-06
7.56746e-06
2.89464e-05
0.000113503
0.000220825
0.000322664
0.000413919
0.00049402
0.000540132
0.000576769
0.000617036
0.000660149
0.000702213
0.000740164
0.000772469
0.000798657
0.000818699
0.000832738
0.000841075
0.000844173
0.000842785
0.000838096
0.00083158
0.000824516
0.000816572
0.00080152
0.00076041
0.000706006
0.000641338
0.000565431
0.000477066
0.000375019
0.000258931
0.000133251
2.86651e-05
3.98566e-06
7.60366e-06
2.87771e-05
0.000112926
0.000219706
0.000320861
0.000411412
0.000489588
0.000531155
0.000568853
0.000610969
0.000655499
0.000698519
0.000737136
0.000769986
0.000796804
0.000817812
0.000833155
0.000842686
0.00084631
0.000844523
0.000838885
0.000832068
0.000826704
0.000821967
0.000807565
0.000762349
0.00070721
0.000641488
0.000564191
0.000474127
0.000370277
0.000252854
0.000127473
2.64377e-05
3.96923e-06
7.6108e-06
2.85687e-05
0.000112214
0.000218283
0.000318721
0.000408636
0.000483668
0.000524673
0.000563087
0.000606288
0.000651682
0.000695044
0.000733606
0.000766333
0.000793219
0.000814612
0.000830784
0.000841699
0.000846961
0.000846277
0.00084038
0.000831756
0.000824125
0.000819182
0.000808938
0.000764773
0.000709254
0.000642787
0.000564357
0.000472718
0.00036697
0.000247921
0.000122596
2.47734e-05
3.97327e-06
7.62545e-06
2.84794e-05
0.00011169
0.000216818
0.000316297
0.000405445
0.000476032
0.000517647
0.000557773
0.000602283
0.000648339
0.000691842
0.000730127
0.000762272
0.00078847
0.000809328
0.000825402
0.000836894
0.000843577
0.000844998
0.000841031
0.000832851
0.000823382
0.000815395
0.000804956
0.000768752
0.000713755
0.000647428
0.000568824
0.000476524
0.00036934
0.000248119
0.000121056
2.4214e-05
4.01573e-06
7.70555e-06
2.85652e-05
0.000111292
0.000214958
0.000312825
0.000400675
0.000461222
0.000504757
0.000548993
0.000596275
0.000643453
0.000687034
0.000724889
0.000756325
0.000781618
0.000801469
0.000816595
0.000827445
0.000834221
0.000836906
0.00083539
0.000830049
0.000822212
0.00081347
0.000801663
0.000771364
0.000717266
0.000651312
0.00057284
0.000480556
0.00037292
0.000250246
0.000121134
2.43056e-05
4.15953e-06
7.8698e-06
2.8536e-05
0.000110273
0.000211852
0.000307237
0.000388489
0.000439153
0.000485977
0.000536003
0.000587372
0.000636409
0.000680303
0.000717681
0.000748342
0.000772765
0.000791612
0.000805496
0.000814983
0.000820602
0.00082288
0.000822425
0.000820071
0.000816595
0.000811623
0.000800858
0.000770677
0.00071754
0.000651987
0.000573464
0.000481116
0.000373556
0.000250698
0.000120896
2.45041e-05
4.35471e-06
8.08981e-06
2.82896e-05
0.000108549
0.00020771
0.000299905
0.000365047
0.000414964
0.000466578
0.00052138
0.000575919
0.000626542
0.000670935
0.000708234
0.000738577
0.000762551
0.000780803
0.000793887
0.000802296
0.000806552
0.00080749
0.000806486
0.000805418
0.000805816
0.000806485
0.000799523
0.000766299
0.000714123
0.000649143
0.000570612
0.000478002
0.000370603
0.000248553
0.000119751
2.45415e-05
4.52217e-06
8.30254e-06
2.78063e-05
0.000106446
0.000203587
0.000293093
0.000347946
0.000395364
0.000448248
0.000505338
0.000561776
0.000613371
0.000657848
0.000694691
0.000724444
0.000748019
0.000766201
0.000779449
0.000787971
0.000792062
0.000792571
0.000791217
0.000790672
0.00079351
0.000798871
0.000796238
0.000759228
0.000707981
0.000643844
0.000565695
0.000472929
0.000365438
0.00024428
0.000117401
2.41115e-05
4.57871e-06
8.46841e-06
2.73614e-05
0.000104608
0.000200162
0.000287693
0.000337672
0.000383027
0.000435224
0.000492052
0.000548173
0.000599087
0.000642366
0.000677558
0.000705481
0.000727412
0.00074448
0.000757349
0.000766239
0.000771268
0.000773031
0.000773187
0.000774791
0.000781012
0.000790848
0.000790144
0.000750958
0.000700711
0.00063785
0.000560953
0.000469065
0.000362083
0.000241672
0.000116158
2.38606e-05
4.57335e-06
8.58084e-06
2.70796e-05
0.000103226
0.000197205
0.00028314
0.000331801
0.000377032
0.000428983
0.000485251
0.000540566
0.000590316
0.000631841
0.000664548
0.000689349
0.000707845
0.000721624
0.00073182
0.000739015
0.000743502
0.000745844
0.000747543
0.000751642
0.000761597
0.000776444
0.000780365
0.000742113
0.000692996
0.000631548
0.000556236
0.000465805
0.00035983
0.000239976
0.000115036
2.35203e-05
4.52877e-06
8.65804e-06
2.69896e-05
0.000102289
0.000194167
0.000277214
0.000325861
0.000373455
0.000427606
0.000485539
0.00054197
0.000592198
0.000633347
0.000664581
0.000686682
0.000701332
0.000710423
0.000715575
0.000717949
0.000718371
0.000717684
0.00071729
0.000719994
0.000729494
0.000746541
0.000759588
0.000731559
0.000683963
0.000623967
0.000550103
0.000461032
0.000356122
0.000236931
0.000112726
2.28628e-05
4.47633e-06
8.67681e-06
2.68182e-05
0.000101074
0.000190095
0.000265096
0.000315291
0.000367365
0.000425992
0.00048763
0.000546969
0.000599438
0.000642167
0.000674138
0.000695851
0.000708741
0.000714618
0.000715254
0.00071219
0.00070678
0.000700264
0.000693946
0.000690074
0.000692313
0.00070416
0.000721999
0.000718877
0.000673632
0.000615594
0.000543342
0.000455549
0.000351555
0.000232967
0.000109629
2.19559e-05
4.40041e-06
8.67635e-06
2.64965e-05
9.95309e-05
0.000185503
0.000250124
0.000300326
0.000356153
0.000419153
0.000484756
0.000547436
0.00060273
0.000647904
0.000681935
0.000705142
0.000718678
0.000724106
0.00072304
0.00071698
0.000707396
0.000695739
0.000683345
0.00067203
0.000664748
0.000665635
0.00067714
0.000689909
0.000661046
0.000605877
0.000536085
0.000450291
0.000347812
0.000230278
0.000107778
2.15103e-05
4.39312e-06
8.68298e-06
2.59659e-05
9.7601e-05
0.000180878
0.00023576
0.000284652
0.000342185
0.000407643
0.000475825
0.000541091
0.000598983
0.000646753
0.000683294
0.000708768
0.000724149
0.000730821
0.000730263
0.000723814
0.000712721
0.000698264
0.000681697
0.000664622
0.000649412
0.000639612
0.000639384
0.000649029
0.000647758
0.00059561
0.00052874
0.000445474
0.000344901
0.000228519
0.000106543
2.12045e-05
4.4059e-06
8.68366e-06
2.53058e-05
9.53737e-05
0.000176472
0.000223898
0.000271459
0.00032911
0.000394863
0.000463611
0.000529968
0.00058956
0.000639577
0.000678779
0.000707123
0.000725287
0.000734312
0.000735423
0.000729883
0.000718868
0.000703445
0.000684637
0.000663814
0.000643014
0.000625327
0.000614906
0.000614659
0.000617215
0.000583318
0.000519667
0.000439562
0.000341739
0.000227273
0.000106064
2.11819e-05
4.4543e-06
8.67747e-06
2.45827e-05
9.26059e-05
0.000169509
0.00021385
0.000260924
0.000317596
0.000381915
0.000449492
0.000515395
0.00057537
0.000626609
0.000667841
0.00069896
0.000720452
0.000732969
0.000737207
0.000733995
0.000724383
0.000709419
0.000689947
0.000667093
0.00064268
0.000619484
0.000601358
0.000592198
0.000590404
0.000571446
0.000510246
0.000433005
0.000338053
0.000225869
0.000105727
2.11693e-05
4.46189e-06
8.68016e-06
2.40374e-05
9.01926e-05
0.000161841
0.000205091
0.000251468
0.000306857
0.000369362
0.00043497
0.000499175
0.000558004
0.000608843
0.000650639
0.00068347
0.000707879
0.000724329
0.000732998
0.00073396
0.000727566
0.000714532
0.000695669
0.000672033
0.000645285
0.000618094
0.000594208
0.000577666
0.000569517
0.000558194
0.000500011
0.000425579
0.000333849
0.00022466
0.000106171
2.15097e-05
4.49705e-06
8.69276e-06
2.35011e-05
8.7892e-05
0.000154723
0.000197462
0.000243684
0.000298119
0.000358721
0.000421729
0.000483107
0.000539357
0.000588199
0.000628852
0.000661703
0.00068762
0.00070728
0.000720781
0.000727661
0.000727265
0.000719203
0.000703558
0.000681127
0.000653515
0.000623315
0.000594198
0.000570279
0.000553557
0.000536613
0.000487196
0.000414762
0.000325564
0.000219089
0.000103134
2.07497e-05
4.39249e-06
8.7071e-06
2.29029e-05
8.55957e-05
0.000148203
0.000190735
0.000237034
0.000290681
0.000349327
0.000409249
0.000466721
0.000518738
0.000563541
0.000600779
0.00063119
0.000655983
0.000676227
0.000692444
0.000704501
0.00071161
0.000712464
0.000705604
0.000690276
0.000667042
0.000638091
0.000607232
0.000579041
0.000555767
0.000530198
0.000474282
0.000403
0.000316325
0.000213264
0.000100603
2.01788e-05
4.26784e-06
8.70171e-06
2.19395e-05
8.22898e-05
0.000140994
0.000183958
0.00023109
0.000284612
0.000341716
0.000398627
0.000451834
0.000498689
0.000537854
0.000569443
0.000594679
0.000615231
0.000632581
0.000647634
0.000660622
0.000671208
0.000678633
0.000681658
0.000678917
0.000669455
0.000653468
0.00063244
0.000607203
0.000573122
0.000522472
0.000462732
0.000391755
0.000307151
0.000207546
9.84785e-05
1.97161e-05
4.12123e-06
8.67204e-06
2.10627e-05
7.91546e-05
0.00013373
0.000177816
0.000227234
0.000282562
0.000340251
0.00039629
0.000447265
0.000490711
0.000525403
0.000551518
0.000570433
0.000584176
0.00059478
0.000603842
0.000612332
0.000620663
0.000628824
0.000636287
0.000642447
0.000646595
0.000646981
0.000638367
0.000608329
0.000563909
0.000511483
0.000450282
0.000378922
0.000295589
0.00019907
9.42845e-05
1.8865e-05
4.05997e-06
8.61278e-06
2.0069e-05
7.56174e-05
0.000125319
0.000170592
0.000223051
0.000281594
0.000341839
0.000399463
0.000451134
0.000494558
0.000528483
0.000552791
0.00056848
0.000577371
0.000581599
0.000583134
0.000583563
0.000584135
0.000585812
0.000589023
0.000594192
0.000601729
0.000610787
0.000615776
0.000600646
0.000557124
0.000504094
0.000441428
0.000368545
0.000284519
0.000189019
8.77101e-05
1.7159e-05
3.8881e-06
8.54217e-06
1.87534e-05
7.10001e-05
0.000115366
0.000161082
0.000215817
0.000276963
0.000339396
0.000398585
0.00045144
0.000496068
0.000531427
0.000557225
0.00057394
0.000582742
0.000585208
0.000583001
0.00057778
0.000571258
0.000565056
0.000560193
0.000557566
0.000558219
0.000563038
0.000570904
0.000573823
0.000548436
0.000497568
0.000435487
0.000362157
0.000277469
0.000182147
8.29592e-05
1.5956e-05
3.77726e-06
8.43113e-06
1.68816e-05
6.45332e-05
0.000103976
0.000149446
0.000205216
0.000267451
0.000330509
0.000389859
0.00044284
0.000488114
0.000524987
0.000553129
0.000572638
0.000584136
0.000588658
0.000587345
0.000581339
0.000572058
0.000561191
0.000550077
0.000539939
0.000532052
0.000527845
0.000528507
0.000532765
0.00053045
0.000490313
0.000430692
0.000358178
0.000273053
0.000176973
7.84195e-05
1.46015e-05
3.62202e-06
8.2724e-06
1.47175e-05
5.68921e-05
9.19965e-05
0.000136961
0.000193236
0.000255788
0.000318462
0.000376841
0.000428832
0.0004738
0.000511566
0.000541911
0.000564598
0.000579622
0.000587422
0.000588802
0.000584638
0.000575921
0.000563891
0.000549716
0.000534741
0.000520452
0.000508399
0.000500082
0.000496328
0.000494603
0.000479734
0.000423875
0.000354215
0.000270901
0.000175692
7.74502e-05
1.43629e-05
3.60891e-06
8.09095e-06
1.22934e-05
4.79767e-05
7.90289e-05
0.000122583
0.000178556
0.00024081
0.000302493
0.000359273
0.000409658
0.000453707
0.000491777
0.000523914
0.00054979
0.00056891
0.000580957
0.000586067
0.000584861
0.000578253
0.00056716
0.000552305
0.000534817
0.000516331
0.000498828
0.000484473
0.000475161
0.000470514
0.000461528
0.000417915
0.000351161
0.000269647
0.000175173
7.69088e-05
1.40477e-05
3.507e-06
7.93505e-06
1.05142e-05
4.07199e-05
6.71004e-05
0.000107703
0.000162483
0.00022423
0.000284782
0.000339613
0.000387873
0.000430355
0.000467926
0.000500934
0.000529201
0.000552206
0.000569268
0.000579723
0.000583253
0.000580219
0.000571388
0.00055729
0.000538665
0.000516931
0.000494305
0.000473541
0.000457433
0.000447426
0.000438897
0.000409778
0.000347148
0.000268953
0.000176462
7.84367e-05
1.44666e-05
3.53937e-06
7.83564e-06
9.55533e-06
3.52083e-05
5.62595e-05
9.2358e-05
0.000144669
0.000205462
0.000264777
0.000317503
0.000363418
0.000404065
0.00044072
0.000473904
0.000503559
0.000529301
0.000550574
0.000566633
0.000576623
0.000579961
0.000576536
0.00056628
0.000549438
0.000526852
0.000500408
0.000473119
0.000448597
0.000429877
0.00041672
0.000398342
0.000338977
0.000264151
0.00017396
7.70024e-05
1.39427e-05
3.40654e-06
7.77337e-06
8.71208e-06
2.9998e-05
4.7466e-05
7.89532e-05
0.000127902
0.000187176
0.000244855
0.000294893
0.000337779
0.000375927
0.000410977
0.000443474
0.000473327
0.000500179
0.000523581
0.000543104
0.000558262
0.000568428
0.000572857
0.000570316
0.000559882
0.000541428
0.000515867
0.000485495
0.000453931
0.000425089
0.000400836
0.000376112
0.000328549
0.000257899
0.000172083
7.76128e-05
1.42662e-05
3.38826e-06
7.7106e-06
7.91579e-06
2.53006e-05
3.95541e-05
6.635e-05
0.000110983
0.000167807
0.000223287
0.000270198
0.000309649
0.000344916
0.000377932
0.000409145
0.000438317
0.000465061
0.000488981
0.000509747
0.000527205
0.000541365
0.000552165
0.000558396
0.000558418
0.00055077
0.000534716
0.000510838
0.00048132
0.000449204
0.000416182
0.000378385
0.000320077
0.000249949
0.000166544
7.50333e-05
1.3481e-05
3.13068e-06
7.6453e-06
7.64015e-06
2.26974e-05
3.41144e-05
5.66102e-05
9.73431e-05
0.000152447
0.000206143
0.000249504
0.00028465
0.00031616
0.000346397
0.000375641
0.000403332
0.000428868
0.000451865
0.000472153
0.000489753
0.000504787
0.000517764
0.000528465
0.000536455
0.000540591
0.000538092
0.000524354
0.000496491
0.000461548
0.000419358
0.000369427
0.000310724
0.000241733
0.000161237
7.3311e-05
1.32495e-05
3.06866e-06
7.60028e-06
7.50107e-06
2.10524e-05
3.00466e-05
4.83202e-05
8.4939e-05
0.000139126
0.000192736
0.000233581
0.000264499
0.000291837
0.000318809
0.000345728
0.000371675
0.000395627
0.000416976
0.000435645
0.000451939
0.00046619
0.000479393
0.000491544
0.000502951
0.000514181
0.000522876
0.000515866
0.000490489
0.000456846
0.000414719
0.000363855
0.000303826
0.000233986
0.000154098
6.89492e-05
1.21301e-05
2.90963e-06
7.58075e-06
7.67207e-06
2.08927e-05
2.82579e-05
4.30285e-05
7.59889e-05
0.000130656
0.000186734
0.000226796
0.000253961
0.000276736
0.000299641
0.000323651
0.000347757
0.00037021
0.000389819
0.000406357
0.00042023
0.000431934
0.000443096
0.000453688
0.000463593
0.00047326
0.000482958
0.000489846
0.000479946
0.000449808
0.000410231
0.000360807
0.000301203
0.000231198
0.000151285
6.71292e-05
1.192e-05
3.03271e-06
7.54463e-06
7.84899e-06
2.11001e-05
2.69798e-05
3.81273e-05
6.58807e-05
0.000119078
0.000178718
0.000221143
0.000247653
0.000267527
0.000286598
0.000307366
0.000329516
0.00035103
0.000369854
0.000385181
0.000397325
0.000406746
0.000415488
0.000423671
0.000431192
0.000438534
0.000446745
0.000455972
0.000460996
0.000442439
0.000405929
0.000358274
0.000299017
0.000228175
0.000147111
6.3306e-05
1.08337e-05
2.94113e-06
7.45636e-06
8.48272e-06
2.32084e-05
2.78874e-05
3.5934e-05
5.83124e-05
0.000108423
0.000167959
0.000206989
0.000240215
0.000268945
0.000284974
0.000300706
0.000318582
0.000337529
0.000355262
0.000369834
0.000380885
0.000388557
0.000395261
0.000401083
0.000405684
0.000409257
0.000412739
0.000417268
0.000422355
0.000421815
0.000395293
0.000352036
0.000296177
0.000227149
0.000146223
6.20814e-05
1.06407e-05
3.0051e-06
7.33003e-06
9.44373e-06
2.67287e-05
3.01787e-05
3.49396e-05
4.99943e-05
9.03127e-05
0.000140145
0.000178676
0.000212254
0.0002432
0.000274709
0.000305395
0.000317065
0.000328774
0.000343167
0.000357095
0.000367905
0.000374908
0.000380715
0.00038542
0.00038851
0.000389866
0.000390125
0.000390615
0.000392492
0.000393602
0.000380345
0.000339718
0.000286455
0.000219799
0.000140813
5.85432e-05
9.74686e-06
2.84985e-06
7.19463e-06
1.12464e-05
3.29361e-05
3.59454e-05
3.82368e-05
4.7498e-05
7.73901e-05
0.000116277
0.000152968
0.000185862
0.000216149
0.00024811
0.000280287
0.000311215
0.000330984
0.000337732
0.000346082
0.000355357
0.000361898
0.000367295
0.000371347
0.000373444
0.000373282
0.000371171
0.000368142
0.000365723
0.00036443
0.000359061
0.000328615
0.000279219
0.00021598
0.000139324
5.80676e-05
9.88802e-06
2.89388e-06
7.05904e-06
1.34362e-05
4.03682e-05
4.38301e-05
4.39478e-05
4.75558e-05
6.51075e-05
9.25166e-05
0.000126349
0.000159229
0.00018883
0.000220117
0.000252705
0.000284945
0.00031526
0.000339113
0.000342341
0.000345426
0.000349195
0.000353972
0.000357954
0.000359787
0.000358931
0.000355491
0.000350119
0.000343968
0.000338184
0.000331546
0.000312679
0.000265352
0.000205104
0.000132359
5.49155e-05
9.34425e-06
2.79055e-06
6.91922e-06
1.55123e-05
4.85393e-05
5.62635e-05
5.53312e-05
5.45601e-05
6.23132e-05
7.88388e-05
0.000104978
0.000136967
0.000166887
0.00019622
0.000227925
0.000260313
0.000291686
0.000320556
0.000345202
0.000344681
0.000342015
0.000343522
0.000346568
0.000348189
0.000346988
0.000342802
0.00033616
0.000328102
0.000320069
0.000312676
0.000300826
0.00026209
0.00020436
0.000132993
5.56571e-05
9.63108e-06
2.83037e-06
6.79582e-06
1.63112e-05
5.4579e-05
7.1167e-05
7.08139e-05
6.64335e-05
6.58013e-05
7.41422e-05
8.5892e-05
0.000112329
0.000142785
0.000171134
0.000201361
0.00023334
0.000265377
0.000295757
0.000323071
0.000346277
0.000341763
0.000337061
0.00033669
0.000337233
0.000335577
0.000330489
0.000322072
0.000311114
0.000298746
0.00028602
0.000272145
0.000247577
0.000192968
0.000125636
5.23993e-05
9.07845e-06
2.73802e-06
6.66998e-06
1.71588e-05
5.99636e-05
8.76746e-05
9.04098e-05
8.47643e-05
7.93335e-05
8.12944e-05
8.46374e-05
9.81975e-05
0.00012488
0.000153837
0.000181484
0.000211604
0.000242914
0.000273689
0.000302281
0.000327365
0.000347217
0.000341105
0.000335377
0.00033341
0.000331797
0.000327614
0.000319785
0.000308521
0.000294688
0.00027945
0.000263255
0.000241689
0.000194393
0.000127825
5.39164e-05
9.23048e-06
2.66485e-06
6.49674e-06
1.709e-05
6.1617e-05
9.92904e-05
0.000107494
0.000103891
9.65739e-05
9.20037e-05
9.39924e-05
9.23173e-05
0.000107547
0.000133707
0.000161046
0.000188656
0.000218529
0.000249007
0.000278315
0.000304867
0.000327326
0.0003422
0.000334528
0.000327095
0.0003226
0.000317914
0.00031046
0.000299412
0.000285095
0.00026826
0.000249303
0.000225774
0.000184893
0.000121894
5.16962e-05
8.81806e-06
2.51515e-06
6.17468e-06
1.71403e-05
6.326e-05
0.000105161
0.000119568
0.000120718
0.000115711
0.00011001
0.000109589
0.000103824
0.000107485
0.000126239
0.000151283
0.000176809
0.000203875
0.000232485
0.000260983
0.000287682
0.000311084
0.00032974
0.000341267
0.000332605
0.000324229
0.000318375
0.000312146
0.000303288
0.000291102
0.000275704
0.000256821
0.000231128
0.000186721
0.000122844
5.17328e-05
8.40254e-06
2.30139e-06
5.77273e-06
1.75099e-05
6.48987e-05
0.000103646
0.000122597
0.000130255
0.000131064
0.000128698
0.00012477
0.000113834
0.000108683
0.000117735
0.000138031
0.000161327
0.000185541
0.000212089
0.000239511
0.000266068
0.000290113
0.000309818
0.000324413
0.000325141
0.000315107
0.000306386
0.00029924
0.000291519
0.000282047
0.000270237
0.000253959
0.000226283
0.000178341
0.000117849
4.99526e-05
8.06577e-06
2.18258e-06
5.41782e-06
1.91944e-05
6.81699e-05
9.65484e-05
0.000116259
0.000129497
0.000137386
0.000137422
0.000131113
0.000124199
0.000120983
0.0001268
0.000141792
0.000161151
0.00018226
0.000205343
0.000229959
0.000254557
0.000277543
0.000297092
0.000312399
0.000322917
0.000317873
0.000307417
0.000298306
0.000289823
0.000280593
0.000269775
0.00025403
0.000221282
0.000172707
0.000111752
4.52674e-05
6.93375e-06
1.97104e-06
5.22813e-06
1.8086e-05
5.85908e-05
8.2785e-05
0.000101532
0.000118351
0.000132017
0.000129755
0.000125177
0.00012052
0.000119035
0.000124062
0.000135933
0.000151894
0.00017
0.000190521
0.000213134
0.000236368
0.000258618
0.000278025
0.000293202
0.000303667
0.000295572
0.000286033
0.00027867
0.000272071
0.000264758
0.000255579
0.000240474
0.000206677
0.000161676
0.00010543
4.29492e-05
6.61142e-06
1.91566e-06
5.05464e-06
1.56612e-05
4.72988e-05
6.72969e-05
8.39705e-05
9.9657e-05
0.00011497
0.000122631
0.000121568
0.000121964
0.000125713
0.000133471
0.000144536
0.000158049
0.000173711
0.000191684
0.000211567
0.000232185
0.000252204
0.000270047
0.000284811
0.000295699
0.000296938
0.000287672
0.000277619
0.000267996
0.00025782
0.000246462
0.000232248
0.000206411
0.000161806
0.000105068
4.2491e-05
6.47593e-06
1.84464e-06
4.98875e-06
1.21266e-05
4.1795e-05
5.82283e-05
7.17106e-05
8.48795e-05
9.97694e-05
0.000116139
0.000114855
0.000113688
0.000114917
0.000119866
0.000128406
0.000139697
0.000153518
0.000170626
0.000190171
0.000210895
0.000231266
0.000249589
0.00026434
0.000268083
0.000262682
0.000257429
0.000253195
0.000248581
0.000242267
0.000233115
0.000217954
0.000186782
0.000143113
8.98885e-05
3.34397e-05
4.84624e-06
1.66926e-06
4.95855e-06
1.15465e-05
4.32139e-05
6.60984e-05
7.90891e-05
8.72674e-05
9.4346e-05
0.000104815
0.000121368
0.000126632
0.000125803
0.000126969
0.000131436
0.000139284
0.000150152
0.00016404
0.000181107
0.000200148
0.000219736
0.000238129
0.000253685
0.000265672
0.000273391
0.000266521
0.000255523
0.000245663
0.000236205
0.000225848
0.000213321
0.000195313
0.00016071
0.00011045
4.94958e-05
7.68746e-06
1.85342e-06
5.1506e-06
1.069e-05
4.01408e-05
7.8521e-05
0.000106973
0.000118589
0.000122693
0.000124733
0.000128487
0.000135993
0.000141426
0.000134317
0.000128236
0.00012486
0.000125582
0.000132301
0.000146183
0.000165725
0.000188074
0.000210433
0.000230477
0.000246188
0.000256655
0.000255882
0.000248443
0.000240999
0.000232507
0.000221206
0.000205236
0.000178114
0.000134927
8.15992e-05
2.73421e-05
3.6562e-06
1.50937e-06
5.50512e-06
1.42385e-05
4.85489e-05
8.87503e-05
0.000119062
0.000135269
0.00014455
0.000149997
0.000152349
0.000152909
0.000154104
0.000158552
0.000166356
0.000165661
0.000161287
0.000159053
0.000159945
0.000164789
0.00017436
0.000188306
0.000204356
0.000219449
0.000230395
0.000235915
0.000233612
0.000219108
0.000205701
0.000195003
0.000184122
0.000165164
0.000135436
9.76873e-05
4.88303e-05
8.0653e-06
1.7881e-06
6.2053e-06
1.65449e-05
4.95946e-05
8.33663e-05
0.00011247
0.000134711
0.000147874
0.000158275
0.000169538
0.000180299
0.000188108
0.000192546
0.000194529
0.000190726
0.0001837
0.000176117
0.000169521
0.000166096
0.000169087
0.000180795
0.000199828
0.000222337
0.000243968
0.0002605
0.000270884
0.00027499
0.000271317
0.000246379
0.000215539
0.000182188
0.000144742
9.17881e-05
3.02365e-05
4.1453e-06
1.48243e-06
6.694e-06
2.62708e-05
6.49799e-05
8.46267e-05
0.000106092
0.000123353
0.000134232
0.000143482
0.000153498
0.000163843
0.000173229
0.000180578
0.000185525
0.000188589
0.000190781
0.000193048
0.000196017
0.000199062
0.000197276
0.000189978
0.000184148
0.000180014
0.000176724
0.000172899
0.000167206
0.000158646
0.000146614
0.000131011
0.000113015
9.47381e-05
7.74955e-05
5.75254e-05
2.70531e-05
4.05206e-06
1.30837e-06
7.03593e-06
2.48437e-05
4.72512e-05
6.18057e-05
8.92696e-05
0.000113691
0.000134934
0.000155121
0.000173117
0.000189028
0.000202999
0.000215308
0.000226218
0.000236028
0.000245118
0.000253918
0.000262849
0.000272323
0.000282652
0.000293568
0.000304619
0.000315399
0.000325493
0.000334503
0.00034197
0.000347119
0.000336645
0.000266151
0.000201227
0.000150705
0.000110391
7.66785e-05
1.3724e-05
1.5115e-06
6.03437e-07
6.85619e-06
5.75356e-05
4.96179e-05
6.73567e-05
9.47438e-05
0.000111208
0.000124962
0.000142177
0.000158877
0.000176192
0.00019288
0.000208671
0.000222973
0.000235308
0.000245151
0.000252
0.000255352
0.000255162
0.000251316
0.000243664
0.000232338
0.000217697
0.000200155
0.000180174
0.00015821
0.000134702
0.000110113
8.50701e-05
6.0563e-05
3.77654e-05
1.90819e-05
6.9839e-06
1.38772e-06
3.14628e-07
8.86738e-08
6.35975e-06
3.9078e-05
2.40329e-05
3.54025e-05
3.8319e-05
4.16975e-05
4.56108e-05
5.10797e-05
5.86768e-05
6.2411e-05
6.34187e-05
6.47399e-05
6.57597e-05
6.6511e-05
6.68225e-05
6.66144e-05
6.57794e-05
6.43927e-05
6.23601e-05
5.96954e-05
5.63688e-05
5.23997e-05
4.78246e-05
4.27088e-05
3.71487e-05
3.12769e-05
2.52701e-05
1.93513e-05
1.38205e-05
9.04573e-06
5.48312e-06
3.40585e-06
2.33917e-06
1.11505e-06
2.82241e-07
7.95269e-06
5.40363e-05
3.82739e-05
4.66675e-05
6.61225e-05
7.11751e-05
7.17346e-05
7.13967e-05
7.03828e-05
6.91775e-05
6.79834e-05
6.67994e-05
6.56053e-05
6.43984e-05
6.31488e-05
6.19389e-05
6.07667e-05
5.95492e-05
5.82812e-05
5.69898e-05
5.56935e-05
5.44363e-05
5.32944e-05
5.23771e-05
5.17896e-05
5.16188e-05
5.19277e-05
5.26635e-05
5.34165e-05
5.36109e-05
5.43464e-05
5.95417e-05
6.91921e-05
3.73516e-05
3.4219e-06
5.7983e-07
8.39359e-06
1.70275e-05
2.00879e-05
2.14024e-05
2.21726e-05
2.22044e-05
2.1315e-05
1.93165e-05
1.55212e-05
8.66461e-06
1.97892e-06
6.04219e-07
1.20329e-06
4.46983e-06
7.47376e-06
9.51366e-06
1.09322e-05
1.22786e-05
1.34675e-05
1.45655e-05
1.55844e-05
1.65049e-05
1.73279e-05
1.80419e-05
1.86679e-05
1.93696e-05
2.03108e-05
2.16377e-05
2.30858e-05
2.37999e-05
2.46396e-05
2.30589e-05
8.61431e-06
1.35343e-07
1.05881e-07
3.7885e-07
1.26515e-06
3.25031e-06
6.74644e-06
1.16168e-05
1.72577e-05
2.32082e-05
2.91828e-05
3.47603e-05
3.92059e-05
4.06666e-05
4.57177e-05
4.7821e-05
5.01359e-05
4.75284e-05
4.51535e-05
4.35305e-05
4.22372e-05
4.15704e-05
4.18133e-05
4.19629e-05
4.03448e-05
3.70452e-05
3.35864e-05
3.01091e-05
2.75633e-05
2.5454e-05
2.32316e-05
2.17856e-05
2.14229e-05
2.13112e-05
1.81526e-05
9.64546e-06
1.35948e-06
3.99912e-07
7.99274e-07
3.39391e-06
1.20905e-05
2.78515e-05
4.77348e-05
6.76436e-05
8.56823e-05
0.000100801
0.000112171
0.000119423
0.000122755
0.000123645
0.000122666
0.000119904
0.000115817
0.000110228
0.000102755
9.36863e-05
8.3695e-05
6.97455e-05
5.51129e-05
4.33441e-05
3.37362e-05
2.57864e-05
1.90836e-05
1.01659e-05
1.08534e-06
2.28026e-06
1.95706e-06
1.09366e-06
2.24217e-06
5.10323e-06
5.1615e-06
1.84314e-06
7.28104e-07
1.48988e-06
1.2618e-05
3.27775e-05
5.33622e-05
7.44256e-05
9.30318e-05
0.000104442
0.000105757
9.82076e-05
8.5683e-05
7.20371e-05
5.87383e-05
4.97477e-05
4.93765e-05
4.34629e-05
4.04511e-05
3.7915e-05
3.46476e-05
3.08416e-05
2.6847e-05
2.30321e-05
1.89557e-05
1.61559e-05
1.62813e-05
2.164e-05
2.87541e-05
3.65234e-05
4.36379e-05
3.87298e-05
3.05043e-05
2.02018e-05
1.0585e-05
4.4169e-06
2.51419e-06
7.945e-07
1.15102e-06
7.19685e-06
2.22613e-05
3.886e-05
5.14218e-05
6.26216e-05
7.30842e-05
8.23511e-05
8.9452e-05
9.35072e-05
9.4433e-05
9.2861e-05
8.94698e-05
8.46768e-05
7.87782e-05
6.96184e-05
5.94496e-05
4.97048e-05
3.58816e-05
2.78062e-05
2.07234e-05
1.8204e-05
2.35261e-05
3.23446e-05
4.10349e-05
4.63768e-05
4.61596e-05
4.52053e-05
4.18899e-05
3.49399e-05
2.49592e-05
1.4911e-05
5.81869e-06
3.00172e-06
1.14153e-06
1.64004e-06
1.2722e-05
3.57998e-05
5.78617e-05
7.63211e-05
9.00021e-05
9.95091e-05
0.000107718
0.000118457
0.000133176
0.000138577
0.00013758
0.00013345
0.000126853
0.000118657
0.000109771
0.000100986
9.26844e-05
7.33207e-05
5.21952e-05
4.15523e-05
3.78028e-05
4.13438e-05
5.41261e-05
5.56364e-05
5.68628e-05
5.46286e-05
4.79368e-05
4.204e-05
3.53451e-05
2.661e-05
1.67115e-05
6.19952e-06
3.45906e-06
1.34336e-06
1.99569e-06
1.18383e-05
3.09999e-05
4.64358e-05
6.09183e-05
7.39865e-05
8.53033e-05
9.52278e-05
0.000105486
0.00011959
0.000138899
0.000143623
0.000144693
0.000142867
0.000138738
0.000133097
0.000126704
0.000120044
0.000113201
0.00010122
7.90307e-05
6.56056e-05
6.08611e-05
6.5022e-05
7.32534e-05
6.82409e-05
6.06248e-05
5.28523e-05
4.54843e-05
3.51627e-05
2.71956e-05
1.83042e-05
6.94098e-06
3.78009e-06
1.45244e-06
3.31355e-06
1.74119e-05
4.03902e-05
5.80553e-05
7.51103e-05
9.00571e-05
0.000101402
0.000109441
0.00011642
0.000125573
0.000138444
0.000145294
0.000145664
0.000144227
0.000141284
0.000137214
0.000132444
0.000127455
0.000122505
0.000117664
0.000112969
0.000108551
9.72157e-05
9.29781e-05
9.57185e-05
8.81321e-05
7.56384e-05
6.06871e-05
4.98565e-05
3.67887e-05
2.7814e-05
1.91859e-05
7.07341e-06
4.13901e-06
1.68461e-06
5.3154e-06
2.54849e-05
4.54132e-05
5.69913e-05
7.05466e-05
8.66747e-05
0.000102945
0.000116406
0.000126534
0.000135461
0.000146259
0.000159425
0.000161475
0.000159833
0.000155766
0.000150445
0.000144698
0.000139397
0.000134601
0.000130292
0.000126631
0.000123619
0.000120963
0.000117902
0.000112928
0.000103765
8.82151e-05
6.83993e-05
5.31236e-05
3.81453e-05
2.8602e-05
1.99722e-05
7.26953e-06
4.44014e-06
1.86056e-06
7.68484e-06
3.99879e-05
7.81653e-05
8.81025e-05
8.93546e-05
9.44824e-05
0.000103394
0.000114652
0.000127002
0.000140147
0.000153808
0.000160983
0.000163917
0.000164665
0.00016292
0.000159409
0.000154999
0.000150654
0.000147309
0.000144643
0.000142025
0.000139373
0.000136435
0.000132371
0.000125526
0.000113473
9.39302e-05
7.12558e-05
5.54627e-05
3.84223e-05
2.93272e-05
2.0784e-05
7.40124e-06
4.76159e-06
1.81939e-06
7.95504e-06
4.30291e-05
8.71632e-05
0.000119526
0.000129227
0.000127095
0.000127155
0.000130491
0.000136384
0.000144868
0.000156579
0.000170595
0.000177656
0.000176794
0.000173871
0.000169651
0.00016492
0.000160566
0.000157271
0.000155554
0.000154187
0.000151948
0.000148376
0.000142561
0.000132845
0.000117018
9.35907e-05
7.00436e-05
5.46072e-05
3.78338e-05
2.96582e-05
2.13164e-05
7.3939e-06
5.07076e-06
1.80755e-06
6.53092e-06
3.76712e-05
8.05653e-05
0.000114695
0.000132852
0.000135681
0.000137916
0.000142397
0.000148742
0.000156276
0.000165202
0.00017639
0.0001882
0.000186693
0.000183291
0.00017883
0.000173974
0.000169591
0.000166299
0.000164666
0.000163515
0.000161136
0.000156701
0.000149193
0.00013697
0.000117997
9.24369e-05
6.95484e-05
5.14496e-05
3.75922e-05
3.02708e-05
2.18633e-05
7.3358e-06
5.37368e-06
1.76016e-06
4.99062e-06
3.29454e-05
7.64247e-05
0.00011656
0.00014681
0.000156491
0.000154778
0.000153786
0.000156771
0.000163389
0.000172657
0.000183917
0.000195591
0.000199289
0.000195154
0.000189991
0.000184548
0.000179762
0.000176211
0.000174298
0.000172531
0.000169056
0.000163052
0.000153553
0.000139076
0.000117881
9.19078e-05
7.03685e-05
4.99619e-05
3.77652e-05
3.10747e-05
2.27379e-05
7.49192e-06
5.62551e-06
1.98247e-06
4.94075e-06
3.07341e-05
7.04534e-05
0.000107529
0.000137433
0.000153218
0.000160984
0.000164811
0.000167856
0.000172255
0.000179168
0.000189867
0.00020398
0.000209081
0.000205163
0.000200395
0.000195296
0.000190711
0.000187286
0.000185338
0.000182925
0.000178145
0.000170257
0.000158348
0.000141208
0.000117814
9.19942e-05
7.22396e-05
4.96219e-05
3.86701e-05
3.18874e-05
2.32104e-05
7.52029e-06
5.88162e-06
2.0821e-06
5.49074e-06
3.21383e-05
7.25986e-05
0.000110551
0.000142343
0.000158621
0.00016793
0.00017487
0.000180621
0.000185664
0.000190974
0.000198138
0.000208958
0.000221102
0.000216775
0.000211691
0.00020654
0.000202059
0.000198748
0.000196713
0.000193615
0.000187575
0.000177982
0.000164023
0.000144735
0.000119574
9.33772e-05
7.01344e-05
4.92464e-05
3.98546e-05
3.35878e-05
2.44474e-05
7.70553e-06
6.13267e-06
2.30492e-06
6.97456e-06
3.57068e-05
7.54804e-05
0.000111728
0.000139504
0.000158729
0.000171244
0.000179169
0.000185287
0.00019132
0.000197773
0.00020491
0.000213772
0.000224365
0.000231308
0.000226202
0.000220798
0.000216056
0.000212599
0.000210329
0.000206385
0.000198821
0.000187135
0.000170691
0.000149056
0.0001227
9.66769e-05
7.0481e-05
5.09687e-05
4.13145e-05
3.46202e-05
2.55455e-05
7.99641e-06
6.32964e-06
2.37335e-06
9.21367e-06
4.37344e-05
8.70242e-05
0.000113037
0.000139723
0.000167584
0.000189838
0.000200996
0.000204281
0.000205815
0.000208777
0.000214064
0.000222496
0.000234371
0.000245906
0.000244292
0.000238999
0.00023405
0.000230162
0.000227178
0.000222019
0.000210628
0.000195153
0.000179729
0.000155287
0.000126099
9.87958e-05
7.00291e-05
5.26446e-05
4.36532e-05
3.59705e-05
2.5967e-05
8.00763e-06
6.53452e-06
2.50845e-06
1.13783e-05
5.19498e-05
0.000100076
0.000117739
0.000135346
0.000158367
0.000185419
0.000210256
0.000225254
0.0002302
0.000230922
0.000232342
0.000237029
0.000246822
0.000260498
0.000267465
0.000262815
0.000258193
0.00025448
0.000250627
0.000231569
0.00020897
0.000192098
0.000178152
0.000160517
0.00013384
0.000100658
7.20521e-05
5.51129e-05
4.68705e-05
3.95468e-05
2.84344e-05
8.5863e-06
6.77308e-06
2.55659e-06
1.25394e-05
5.77193e-05
0.000113885
0.000137128
0.000144109
0.000154515
0.000171506
0.000195917
0.000223791
0.000246392
0.00025906
0.000265024
0.000269799
0.000277029
0.000287773
0.000297889
0.000294446
0.000290002
0.000285835
0.000271201
0.000247553
0.000225521
0.000206637
0.000187942
0.000164415
0.000133457
0.000100311
7.40611e-05
5.78082e-05
4.82881e-05
4.04866e-05
2.97099e-05
8.92078e-06
6.96277e-06
2.53657e-06
1.14346e-05
5.42458e-05
0.000114725
0.000160017
0.000163699
0.000165533
0.000172216
0.000186179
0.000209155
0.000238363
0.000265972
0.000286355
0.000300505
0.000312196
0.000322942
0.000328933
0.000327974
0.000325115
0.000314516
0.000293508
0.000269291
0.000245636
0.00022357
0.000201179
0.000174098
0.000140214
0.000105629
7.94427e-05
6.36668e-05
5.35563e-05
4.36149e-05
3.10648e-05
9.13469e-06
7.17129e-06
2.55064e-06
9.82232e-06
4.86092e-05
0.00010961
0.000165473
0.000187941
0.000187825
0.000187849
0.000192225
0.000203437
0.00022356
0.000251448
0.000281618
0.000308216
0.000329107
0.000344426
0.000352693
0.000353575
0.000352493
0.000347049
0.000329397
0.000305255
0.00027827
0.000249644
0.0002187
0.00018398
0.000146115
0.000110272
8.31092e-05
6.67031e-05
5.69778e-05
4.71558e-05
3.36482e-05
9.74922e-06
7.39906e-06
2.47582e-06
8.02661e-06
4.23919e-05
0.000100086
0.000158214
0.000204973
0.000210315
0.000208418
0.000208344
0.000211938
0.000220735
0.000237011
0.000261836
0.000292154
0.000321748
0.000345813
0.000362838
0.000372432
0.000373571
0.000370529
0.000359255
0.000339681
0.00031392
0.000282857
0.000246223
0.000204401
0.000160794
0.000121611
9.17924e-05
7.20061e-05
5.961e-05
4.92186e-05
3.55031e-05
1.00671e-05
7.60488e-06
2.52471e-06
6.63628e-06
3.68503e-05
9.00874e-05
0.00014613
0.00019687
0.000217702
0.000224274
0.000227781
0.000231986
0.000238052
0.00024666
0.000259331
0.000278927
0.000306184
0.000336324
0.000361862
0.000378799
0.000386838
0.000386086
0.000376111
0.000356936
0.000329556
0.000295379
0.000255798
0.000212769
0.000169846
0.00013173
0.000101852
8.03203e-05
6.47148e-05
5.18561e-05
3.73253e-05
1.0302e-05
7.66631e-06
2.67691e-06
5.27304e-06
3.04692e-05
7.82241e-05
0.000129931
0.000177207
0.000205224
0.000222898
0.000235899
0.000246979
0.000257325
0.000267977
0.000279686
0.000292138
0.000305566
0.000323107
0.000345991
0.000368442
0.000382914
0.000386762
0.000380476
0.000364493
0.00033899
0.000304773
0.000263846
0.000219544
0.000176276
0.000138516
0.000108859
8.67933e-05
6.96753e-05
5.44947e-05
3.88235e-05
1.05659e-05
7.75233e-06
3.05305e-06
6.17344e-06
3.15411e-05
7.64583e-05
0.000122965
0.000161947
0.000190952
0.000214521
0.000235171
0.000254177
0.000271381
0.0002859
0.000298599
0.000311604
0.000325133
0.000336237
0.000345913
0.000359934
0.000375573
0.000384183
0.000381446
0.00036771
0.000344386
0.000312582
0.00027371
0.000230493
0.000187197
0.000148562
0.000117564
9.3931e-05
7.51306e-05
5.84332e-05
4.18297e-05
1.11528e-05
7.99739e-06
3.40089e-06
8.3004e-06
3.80553e-05
8.41242e-05
0.000124624
0.000155024
0.000183999
0.00021258
0.000239563
0.000264181
0.000286523
0.000305646
0.000320403
0.000332272
0.000344175
0.000355977
0.000363399
0.000367746
0.000376753
0.000387549
0.000390481
0.000380293
0.000357454
0.000324786
0.000285193
0.000241495
0.000197195
0.000156768
0.000124044
9.96381e-05
8.02587e-05
6.22499e-05
4.42026e-05
1.14818e-05
8.12573e-06
3.72624e-06
1.11511e-05
4.78826e-05
9.93688e-05
0.00013438
0.00015919
0.000186818
0.00021789
0.000248271
0.00027452
0.000296773
0.000316146
0.000332468
0.000345265
0.000355841
0.000366378
0.000376059
0.000380679
0.000382203
0.000385987
0.000387963
0.000380823
0.000361379
0.000331124
0.000293752
0.000252825
0.00021092
0.00017025
0.000133936
0.00010519
8.36632e-05
6.56212e-05
4.74355e-05
1.20095e-05
8.0094e-06
3.93087e-06
1.26706e-05
5.40467e-05
0.000113343
0.000156952
0.000176833
0.000199664
0.00022886
0.000260312
0.000288681
0.000311905
0.000330846
0.000346718
0.000359865
0.000370343
0.000379068
0.000387166
0.000393069
0.00039286
0.000388835
0.000384231
0.000374856
0.000355802
0.00032667
0.000290912
0.000252822
0.000215418
0.000179988
0.000146688
0.000115967
8.94134e-05
6.78462e-05
4.88113e-05
1.22655e-05
7.84043e-06
4.09314e-06
1.38506e-05
6.00939e-05
0.000128178
0.000186295
0.000210442
0.000222553
0.000241017
0.00026671
0.000295259
0.000322068
0.000344828
0.000363137
0.000377335
0.000387814
0.000395209
0.000400753
0.000405374
0.000406929
0.000401088
0.000389366
0.000374713
0.000354581
0.000326186
0.000291028
0.000253824
0.000218627
0.00018653
0.000156581
0.000127787
0.000100269
7.48891e-05
5.23584e-05
1.30288e-05
8.05298e-06
4.1472e-06
1.37569e-05
6.13628e-05
0.000134419
0.000201327
0.000252913
0.000261153
0.000268431
0.000284298
0.00030795
0.000334253
0.000358245
0.000378201
0.000394347
0.000406853
0.00041563
0.000420822
0.000423166
0.000423081
0.000418924
0.000407587
0.000389946
0.000367196
0.00033727
0.000299655
0.000258426
0.000219934
0.000187891
0.000161217
0.000135899
0.000109819
8.43294e-05
6.08075e-05
1.54198e-05
8.51905e-06
4.21838e-06
1.38383e-05
6.25809e-05
0.000138218
0.000210315
0.000269992
0.000298951
0.000305009
0.000313791
0.000330905
0.000354204
0.000377941
0.000397984
0.00041376
0.000426165
0.000435455
0.000441174
0.000443045
0.000441303
0.000436192
0.000426397
0.000409722
0.000386124
0.000354794
0.000314874
0.000269233
0.000224469
0.000187659
0.000160447
0.000137715
0.000114468
8.97011e-05
6.49611e-05
1.6872e-05
8.79137e-06
4.2808e-06
1.33212e-05
6.1505e-05
0.000137774
0.000212601
0.000277508
0.000325307
0.000339737
0.000350763
0.000366141
0.000386536
0.000407595
0.000424721
0.000437642
0.000447942
0.000456341
0.000462191
0.000464173
0.000461166
0.000453057
0.000439979
0.000421466
0.000397493
0.000368303
0.000332092
0.00028814
0.000240686
0.000197721
0.000163802
0.000136458
0.000112601
8.93356e-05
6.15259e-05
1.573e-05
8.60068e-06
4.39954e-06
1.32721e-05
6.16291e-05
0.000138315
0.000214404
0.000282015
0.000335147
0.000358187
0.000377704
0.000399104
0.000421865
0.000442432
0.000455465
0.000462155
0.000466899
0.000471599
0.000475654
0.000477287
0.000474382
0.000465519
0.000450163
0.000428239
0.0004002
0.00036761
0.000332136
0.000294423
0.000254578
0.000213601
0.000174671
0.000140898
0.000112763
8.83124e-05
5.99915e-05
1.51707e-05
8.1643e-06
4.52918e-06
1.29907e-05
6.04806e-05
0.000136573
0.000212914
0.000282209
0.000337773
0.000369869
0.000399806
0.00042987
0.00045683
0.000477061
0.000486899
0.000488195
0.000487209
0.000487323
0.000488273
0.000488203
0.000484858
0.000476411
0.000461556
0.00043954
0.000410465
0.000375937
0.000338684
0.000300599
0.000262411
0.000224608
0.000187929
0.000152953
0.000120673
9.2111e-05
6.30448e-05
1.6067e-05
8.09712e-06
4.66868e-06
1.29874e-05
5.92062e-05
0.000133758
0.000209023
0.000278495
0.000331139
0.000373127
0.000415826
0.000456912
0.000490131
0.000510407
0.000516859
0.000514535
0.000510579
0.000508548
0.000508161
0.000507367
0.000503698
0.000495181
0.000480539
0.00045909
0.000430501
0.000395265
0.000355671
0.000315204
0.000276136
0.000238674
0.000202417
0.000167567
0.000134263
0.000102855
7.03182e-05
1.81132e-05
8.50055e-06
4.80937e-06
1.29945e-05
5.71676e-05
0.000129526
0.000202901
0.000271445
0.000320807
0.000371906
0.000426119
0.000476135
0.000514115
0.000535295
0.000541429
0.000539775
0.000537081
0.000536218
0.000536801
0.000536782
0.000533608
0.000525117
0.000509957
0.000487714
0.000458479
0.000422404
0.000380183
0.000334522
0.000289888
0.000249267
0.000212557
0.000178493
0.000146041
0.000114352
7.78302e-05
2.01113e-05
8.86665e-06
4.94999e-06
1.32847e-05
5.55483e-05
0.000125849
0.000197176
0.000258657
0.000310279
0.00036947
0.000432291
0.000488146
0.000528369
0.000548848
0.000553732
0.000552846
0.000553086
0.000556262
0.000561229
0.000565649
0.000566675
0.000561286
0.000546858
0.000522534
0.000489535
0.000449841
0.000405168
0.000357345
0.00030903
0.000263058
0.000221549
0.000185268
0.000152947
0.000121796
8.30144e-05
2.15788e-05
8.9949e-06
5.09322e-06
1.37016e-05
5.40016e-05
0.000122573
0.000192324
0.000245329
0.000300849
0.000366994
0.000433973
0.000490209
0.000529481
0.000550869
0.000559066
0.000562172
0.000566098
0.000572648
0.000580775
0.000587985
0.000591172
0.000587249
0.000573833
0.000550297
0.000517803
0.000478196
0.000433186
0.000384491
0.000334066
0.000283614
0.000235191
0.000192665
0.000157401
0.000125844
8.50672e-05
2.21008e-05
8.96006e-06
5.24436e-06
1.40409e-05
5.23389e-05
0.000120188
0.000189827
0.000234149
0.000293025
0.000364095
0.000433243
0.000489555
0.000527568
0.000548222
0.000558339
0.000565416
0.000573759
0.000584437
0.000596453
0.000607532
0.000614433
0.00061337
0.000601147
0.00057723
0.000543805
0.000503622
0.000458625
0.000410028
0.000358909
0.00030631
0.000253456
0.00020435
0.0001629
0.000127742
8.47214e-05
2.15501e-05
8.79007e-06
5.47531e-06
1.42154e-05
5.11813e-05
0.000119876
0.000192056
0.000234888
0.000291675
0.0003568
0.000419819
0.000475818
0.00051957
0.000548577
0.000566172
0.000578362
0.000589619
0.000601741
0.000614509
0.000626456
0.000635192
0.000637354
0.000628904
0.000607381
0.000573996
0.00053219
0.000485107
0.000434795
0.000382349
0.000328472
0.000274176
0.000221779
0.000174738
0.000133727
8.6768e-05
2.14615e-05
8.5636e-06
5.8062e-06
1.46474e-05
5.28445e-05
0.000124812
0.000202357
0.00025849
0.000308187
0.000358772
0.000407869
0.00045638
0.000501273
0.000538992
0.000568473
0.000591136
0.000609341
0.000624947
0.000638699
0.000650228
0.000658256
0.000660548
0.00065381
0.000634944
0.00060325
0.000561065
0.000511877
0.000458796
0.000404032
0.00034876
0.000293742
0.000240393
0.000190917
0.000145633
9.26857e-05
2.25591e-05
8.45631e-06
6.14083e-06
1.59555e-05
5.97379e-05
0.000138036
0.000221754
0.000298397
0.000341371
0.000380559
0.000415806
0.000451633
0.000490014
0.00052827
0.000563361
0.000593824
0.00061946
0.000640663
0.000657846
0.000671053
0.000679733
0.000682451
0.000676614
0.000659336
0.000629226
0.000587536
0.000537198
0.000481595
0.000423994
0.00036684
0.000311339
0.000258232
0.000208686
0.0001617
0.000100963
2.45179e-05
8.48947e-06
6.34135e-06
1.80271e-05
6.99435e-05
0.000155154
0.000242774
0.000321906
0.000373648
0.000405804
0.000439711
0.000470633
0.000500629
0.000532557
0.000565331
0.000596326
0.000624032
0.000647819
0.000667275
0.000682006
0.000691574
0.00069516
0.00069102
0.000676694
0.000650063
0.000610846
0.000560893
0.000503559
0.00044309
0.000383455
0.000327024
0.000274491
0.000225868
0.00017817
0.000109249
2.67409e-05
8.5577e-06
6.38399e-06
1.96047e-05
7.70236e-05
0.000166414
0.00025662
0.000338064
0.000408477
0.000429244
0.000449697
0.000482642
0.000518218
0.000551246
0.000581858
0.000610468
0.000636401
0.000658786
0.000677187
0.000691081
0.000699867
0.000702834
0.000698787
0.000686041
0.00066276
0.000627608
0.000580474
0.000523486
0.000461281
0.000399342
0.000341677
0.000289763
0.000242867
0.000195272
0.000117408
2.93124e-05
8.62261e-06
6.41595e-06
2.06253e-05
8.13521e-05
0.000173608
0.000265926
0.000349006
0.000420819
0.000460924
0.000468089
0.000485018
0.000517847
0.000559144
0.000598256
0.000631075
0.000657945
0.000679514
0.000695848
0.000706853
0.000712336
0.000712106
0.000705778
0.000692544
0.00067108
0.000639511
0.000595981
0.000540849
0.00047824
0.000414412
0.000354907
0.000302675
0.000257258
0.000210005
0.000122552
3.09033e-05
8.63066e-06
6.48696e-06
2.16588e-05
8.54935e-05
0.00018074
0.00027501
0.000359264
0.000431701
0.000466655
0.000487759
0.000504768
0.000527978
0.000560713
0.000600918
0.000639801
0.000673012
0.000698676
0.000716214
0.000726475
0.000729775
0.000726107
0.000716007
0.000700053
0.000678153
0.000648744
0.000608805
0.000556717
0.00049521
0.000430364
0.000368696
0.000314781
0.00026866
0.000217352
0.000124579
3.13479e-05
8.56806e-06
6.5825e-06
2.3026e-05
9.05748e-05
0.00018903
0.000284666
0.000368337
0.000407884
0.000443517
0.000482429
0.000515487
0.000546283
0.000576955
0.000612019
0.000648238
0.000681862
0.000709572
0.000729176
0.000740582
0.000743769
0.000738587
0.000725795
0.000706938
0.000683199
0.000654183
0.000617044
0.000568759
0.000510051
0.000445946
0.000383092
0.000326916
0.000277283
0.000217334
0.000122983
3.0424e-05
8.38957e-06
6.60503e-06
2.31337e-05
9.14877e-05
0.000191551
0.000288658
0.000370024
0.000399611
0.000427238
0.00046467
0.000508198
0.000550553
0.000589564
0.000627164
0.000661358
0.000692202
0.00071824
0.0007375
0.000749136
0.000752306
0.000746627
0.000732919
0.000712691
0.000687463
0.000657845
0.000622221
0.000577559
0.000522908
0.000461598
0.000399433
0.000341503
0.000286988
0.000217275
0.000120812
2.92246e-05
8.10065e-06
6.61005e-06
2.33061e-05
9.29659e-05
0.000194628
0.000293582
0.00037942
0.000413263
0.000432318
0.000457468
0.000495809
0.000540626
0.000583603
0.000624966
0.000662817
0.000696215
0.00072382
0.000743916
0.000755214
0.000757397
0.000751016
0.000737016
0.000716502
0.000690583
0.000660127
0.000624809
0.000582721
0.000532388
0.000475473
0.000416533
0.000359393
0.000300907
0.000219355
0.000119624
2.8248e-05
7.75735e-06
6.5704e-06
2.32016e-05
9.38012e-05
0.000196221
0.000296245
0.000383791
0.000433163
0.000450075
0.000464609
0.000487901
0.000525119
0.000569565
0.000614576
0.000656075
0.000692397
0.000722066
0.000743421
0.000755324
0.000757663
0.000751389
0.000737743
0.000717763
0.000692126
0.000661392
0.000625884
0.000585116
0.00053842
0.000486768
0.000433205
0.000378947
0.000314696
0.000224224
0.00012058
2.79987e-05
7.43764e-06
6.55139e-06
2.29597e-05
9.4304e-05
0.00019728
0.00029826
0.000387475
0.000449437
0.000468813
0.000481367
0.000497095
0.00052245
0.000559268
0.000601763
0.000645039
0.000684273
0.000716675
0.000739846
0.000752455
0.000754902
0.000748797
0.000735688
0.000716586
0.000691892
0.000661781
0.000626635
0.000586957
0.000543246
0.00049662
0.000448555
0.000396371
0.000322422
0.000229173
0.000122264
2.8165e-05
7.18203e-06
6.55589e-06
2.28344e-05
9.46476e-05
0.00019727
0.000298299
0.000388689
0.00046252
0.000486175
0.000497856
0.000508541
0.000523726
0.000549164
0.000586161
0.000630295
0.000672312
0.000707238
0.00073251
0.000746621
0.000749888
0.000744119
0.000731324
0.000712944
0.000689466
0.000660706
0.000626749
0.000588523
0.000547522
0.000505299
0.000461628
0.000408237
0.000327343
0.000232228
0.000123126
2.82403e-05
6.9758e-06
6.61446e-06
2.22786e-05
9.28249e-05
0.00019371
0.00029371
0.000384594
0.000463631
0.00049725
0.000515997
0.00052992
0.000542402
0.000556729
0.000578908
0.000613084
0.00065465
0.00069259
0.000721276
0.000738164
0.000743219
0.000738391
0.00072608
0.000708153
0.000685387
0.000657767
0.000625369
0.000589203
0.000551253
0.000512897
0.000471157
0.000411073
0.000329431
0.000233162
0.000122894
2.81018e-05
6.80866e-06
6.7819e-06
2.2704e-05
9.32894e-05
0.00019284
0.000291228
0.000381379
0.000460866
0.000502107
0.000524924
0.000540932
0.000555805
0.00057078
0.000585018
0.000603549
0.000634622
0.000672447
0.000704757
0.000725778
0.000734127
0.000731268
0.000719887
0.000702425
0.000680239
0.000653708
0.000622994
0.000589013
0.000553733
0.000518257
0.00047779
0.000413183
0.000330758
0.000233555
0.000122538
2.79864e-05
6.68707e-06
6.95358e-06
2.30184e-05
9.2646e-05
0.000190247
0.000286578
0.000375687
0.000455598
0.000506475
0.000532152
0.000547896
0.000562482
0.000579701
0.000597513
0.000610987
0.000624388
0.000649877
0.000681294
0.000706593
0.000720126
0.000721259
0.000712142
0.000695711
0.000674207
0.000648749
0.000619819
0.000588219
0.000555492
0.000522178
0.000482491
0.000415303
0.000332271
0.000234386
0.000122789
2.81142e-05
6.62023e-06
7.12015e-06
2.32301e-05
9.08759e-05
0.000186208
0.000280404
0.000368346
0.000448462
0.000508236
0.000534944
0.00054975
0.000563714
0.000581008
0.000601633
0.000620535
0.000631513
0.000640875
0.000661121
0.000684771
0.000701873
0.000707804
0.000702369
0.000688021
0.000667644
0.000643264
0.000616054
0.000586963
0.000556987
0.000525754
0.000486597
0.000417551
0.000333884
0.000235413
0.000123341
2.83159e-05
6.59512e-06
7.1467e-06
2.16155e-05
8.28544e-05
0.0001746
0.000267038
0.000354758
0.000436056
0.000501949
0.000529438
0.000545274
0.000562154
0.000583112
0.000607037
0.000630145
0.000645182
0.000649285
0.000654451
0.000668968
0.000684469
0.000693195
0.00069156
0.000679996
0.000661198
0.000638012
0.000612412
0.000585635
0.000558384
0.00052946
0.00049107
0.000420273
0.00033573
0.000236484
0.00012388
2.84454e-05
6.58305e-06
7.09036e-06
1.86931e-05
6.90998e-05
0.000155625
0.000246995
0.000335836
0.000419327
0.000478569
0.000513823
0.000540271
0.000565855
0.000592905
0.000620594
0.000645841
0.000663169
0.000667649
0.000664834
0.00066738
0.000675486
0.000682152
0.000681954
0.000672886
0.000656079
0.000634189
0.000609808
0.000584748
0.00055973
0.000533006
0.000495844
0.000424138
0.000338563
0.000238242
0.000124772
2.86154e-05
6.567e-06
7.06583e-06
1.57681e-05
5.31486e-05
0.0001324
0.000223102
0.000313857
0.000381013
0.000437114
0.000486324
0.000530996
0.000572218
0.000610299
0.000644363
0.000671957
0.000689126
0.000692861
0.000686788
0.000680547
0.00067922
0.00067965
0.000676946
0.00066792
0.000652082
0.000631135
0.00060764
0.000583808
0.000560537
0.000535773
0.000500213
0.000428749
0.000342045
0.000240289
0.000125516
2.86271e-05
6.52905e-06
7.26446e-06
1.48343e-05
4.38742e-05
0.000115839
0.000204505
0.000267342
0.0003242
0.000386895
0.000453893
0.000519935
0.000580473
0.000632716
0.000674925
0.000705324
0.000721938
0.000724359
0.00071645
0.000705159
0.000695498
0.000687761
0.000679174
0.000666955
0.000649853
0.000628559
0.000605083
0.000581653
0.000559366
0.000536146
0.000502646
0.000433637
0.000345949
0.000242636
0.000126217
2.85611e-05
6.47575e-06
7.565e-06
1.58363e-05
4.53994e-05
0.000114783
0.000197398
0.000241637
0.000290237
0.000351778
0.0004233
0.000499219
0.000573294
0.000639426
0.000692532
0.000729304
0.000748908
0.000753527
0.000747641
0.000735819
0.000721417
0.000706349
0.000690434
0.000672512
0.000651678
0.000628102
0.000603108
0.000578591
0.000555759
0.00053297
0.000501708
0.000437968
0.000349429
0.000244606
0.000126531
2.83649e-05
6.41164e-06
7.90042e-06
1.83138e-05
5.71432e-05
0.000131823
0.000203524
0.000245477
0.000289148
0.000343963
0.000409087
0.000480683
0.000554252
0.000624431
0.000685182
0.000731526
0.000761473
0.000776317
0.000778778
0.000771171
0.000755728
0.000735272
0.000711999
0.000686905
0.000660241
0.000632303
0.000603926
0.000576475
0.000551153
0.000527204
0.000498136
0.000442624
0.000353214
0.000246712
0.000126806
2.81821e-05
6.35663e-06
8.12346e-06
2.10149e-05
7.14441e-05
0.000153734
0.000212486
0.000255358
0.000307341
0.000361778
0.000419576
0.000480953
0.000543922
0.000605989
0.000664071
0.000714878
0.000755697
0.000784656
0.000800459
0.000802426
0.000791334
0.000769917
0.00074179
0.000710092
0.000676817
0.000643114
0.000609835
0.000577856
0.000548024
0.000520497
0.000492465
0.000448863
0.000358747
0.000250257
0.000127854
2.82255e-05
6.32596e-06
8.1306e-06
2.26403e-05
8.09143e-05
0.000169164
0.000235194
0.000260233
0.000312477
0.00037689
0.00043895
0.00049624
0.000550224
0.000602244
0.000652507
0.000700133
0.000743091
0.000778452
0.000802991
0.00081404
0.000810587
0.000793905
0.00076707
0.000733792
0.00069712
0.000659117
0.000621167
0.000584306
0.000549345
0.000516759
0.000485661
0.000447873
0.000365205
0.000255409
0.000130245
2.86671e-05
6.31781e-06
7.85274e-06
2.30307e-05
8.55169e-05
0.000177767
0.000262698
0.000275274
0.000300131
0.000360439
0.000434431
0.000503174
0.000561808
0.000611824
0.00065628
0.000696932
0.000733719
0.000765337
0.000789467
0.000803552
0.000805943
0.000796523
0.000776564
0.000748283
0.000714054
0.000676023
0.000636089
0.000595859
0.000556507
0.000518688
0.000482215
0.000442374
0.000370592
0.000260467
0.000133247
2.93829e-05
6.32822e-06
7.58918e-06
2.30625e-05
8.77766e-05
0.000181823
0.000269329
0.000311641
0.000304178
0.000330312
0.000398708
0.000484909
0.000561586
0.000621665
0.000667963
0.000705177
0.000736403
0.000761907
0.000780923
0.000792365
0.00079549
0.000790033
0.000776039
0.000753993
0.000724815
0.000689879
0.000650992
0.000610149
0.000569058
0.000528624
0.000488394
0.000444039
0.000373101
0.000262893
0.00013512
2.99573e-05
6.32281e-06
7.51315e-06
2.3249e-05
9.02189e-05
0.000187192
0.000279036
0.000355087
0.000344202
0.000338013
0.000370673
0.000447287
0.000538361
0.000616672
0.000675404
0.000717085
0.000746161
0.00076641
0.000779977
0.000787569
0.000789267
0.000784869
0.000773861
0.000755808
0.00073068
0.000699124
0.000662562
0.00062299
0.000582446
0.000542106
0.000500943
0.0004526
0.000373663
0.000263237
0.0001359
3.03607e-05
6.28917e-06
7.5213e-06
2.44185e-05
9.51865e-05
0.000194618
0.000288321
0.000366719
0.000376899
0.000365177
0.000378305
0.000428127
0.000508462
0.000591997
0.000662703
0.00071492
0.000748266
0.000767117
0.000777394
0.000782581
0.000783652
0.00078019
0.000771187
0.000755762
0.000733509
0.00070471
0.000670449
0.000632569
0.000593294
0.000554232
0.000514176
0.00046387
0.00037311
0.000262435
0.000135936
3.04757e-05
6.19409e-06
7.51545e-06
2.51103e-05
9.73618e-05
0.000197563
0.000292086
0.000367998
0.000381545
0.000380731
0.000392243
0.000432037
0.000498028
0.000571782
0.000642222
0.000700632
0.000740165
0.00076141
0.000771168
0.000775517
0.000776764
0.000774508
0.000767372
0.000754222
0.000734572
0.000708629
0.000677281
0.000642094
0.00060504
0.000567276
0.000525516
0.00046325
0.000371422
0.000261336
0.000136072
3.06408e-05
6.03209e-06
7.50682e-06
2.54567e-05
9.81787e-05
0.000198307
0.000292451
0.000356699
0.000373741
0.000385142
0.000410286
0.000453634
0.00051237
0.000574141
0.000635117
0.000689716
0.00073041
0.000753516
0.000763152
0.000766291
0.000766893
0.000765223
0.000759714
0.000748815
0.00073179
0.000708863
0.00068108
0.000649994
0.000617022
0.000581733
0.000537121
0.000459944
0.000367915
0.000258959
0.00013562
3.06527e-05
5.82714e-06
7.42703e-06
2.56985e-05
9.92305e-05
0.000199372
0.00029336
0.000360212
0.000371893
0.000384824
0.000417948
0.000466518
0.000523702
0.000579052
0.000631065
0.000677853
0.000715299
0.000739125
0.000749394
0.000751476
0.00075074
0.000748933
0.000744909
0.000736787
0.000723375
0.000704637
0.000681632
0.000655896
0.000627768
0.000592547
0.000533441
0.000454929
0.00036249
0.000254473
0.000133299
2.99589e-05
5.60177e-06
7.22398e-06
2.49e-05
9.7391e-05
0.000196587
0.00029114
0.000372791
0.000393189
0.000392116
0.000410901
0.000456498
0.000513253
0.000566251
0.000614981
0.000657797
0.000692755
0.000717768
0.000731096
0.000733976
0.000731584
0.000728247
0.000724373
0.000718299
0.000708493
0.000694807
0.000678414
0.000660327
0.000637991
0.000599808
0.000531606
0.000451501
0.000358184
0.000250483
0.00013089
2.91434e-05
5.38943e-06
7.05179e-06
2.35686e-05
9.36978e-05
0.000191
0.000285558
0.000369706
0.000429944
0.000430706
0.000421402
0.000435305
0.000480334
0.000537366
0.000590588
0.000635645
0.000670891
0.000695902
0.000711121
0.000717246
0.000715942
0.000710641
0.000704598
0.000698371
0.000690371
0.000679461
0.000666201
0.000651932
0.000634573
0.000600258
0.000531107
0.000449287
0.00035423
0.000245715
0.00012706
2.75935e-05
5.16459e-06
6.9952e-06
2.20331e-05
8.8107e-05
0.000182297
0.000276006
0.000362043
0.00043751
0.000470088
0.000473009
0.000463171
0.00046496
0.00049896
0.000552528
0.000604659
0.000647003
0.000677351
0.000695701
0.000703498
0.000703274
0.000697899
0.000690196
0.000682325
0.000674799
0.000666952
0.000658063
0.000647804
0.000634164
0.000607364
0.000539166
0.000457066
0.000360656
0.000250179
0.000129563
2.81727e-05
5.02614e-06
6.99226e-06
2.03469e-05
8.03581e-05
0.000169252
0.000260228
0.000346838
0.000426102
0.000494035
0.000509111
0.000510135
0.000503003
0.000497529
0.000520528
0.000565615
0.000613206
0.000652917
0.00068005
0.000693502
0.000695156
0.000688902
0.000678455
0.000666346
0.000654383
0.000643722
0.000635048
0.000628559
0.000622017
0.000604139
0.000541802
0.000459945
0.000362172
0.000249441
0.000127256
2.69382e-05
4.86659e-06
6.93362e-06
1.78846e-05
6.8218e-05
0.000149902
0.000236993
0.000323409
0.000405905
0.000481404
0.000546101
0.00055613
0.000551017
0.000538677
0.000527999
0.000543045
0.000574747
0.000611139
0.000644035
0.000667382
0.00067811
0.000677391
0.000669112
0.000657225
0.000644059
0.000630816
0.000618133
0.000606765
0.000597432
0.000586553
0.000551668
0.000472722
0.000375592
0.000260948
0.000134623
2.90132e-05
4.77903e-06
6.89576e-06
1.48079e-05
5.1109e-05
0.000123817
0.000206311
0.000286415
0.000369743
0.000453823
0.000529924
0.000584457
0.000606762
0.000603699
0.000590969
0.000588351
0.000601504
0.000623405
0.000648629
0.000671048
0.000684796
0.000686111
0.000675298
0.000656826
0.00063642
0.000618173
0.000604049
0.000594275
0.000588053
0.000582076
0.000560109
0.000485053
0.000389545
0.000273188
0.000141768
3.10571e-05
4.89028e-06
7.14163e-06
1.36837e-05
3.99099e-05
0.000103241
0.000176551
0.000221155
0.000272565
0.000339025
0.000420219
0.000509148
0.000590712
0.000646982
0.000669898
0.000671129
0.000669173
0.000668738
0.000672414
0.000678185
0.000683009
0.000683061
0.000675354
0.000659151
0.000636256
0.000610329
0.000585816
0.000567004
0.000556701
0.000553738
0.000544464
0.000477914
0.000385285
0.000270347
0.000139145
2.99494e-05
4.86379e-06
7.66084e-06
1.51491e-05
4.4135e-05
0.000104725
0.000178084
0.000219148
0.000244158
0.000278558
0.000326219
0.000388986
0.000469093
0.000564779
0.000660851
0.00072934
0.000760346
0.000765051
0.000756446
0.000743602
0.000730273
0.00071643
0.000700091
0.00067927
0.000653196
0.000622741
0.000590658
0.000561146
0.000538988
0.000527108
0.000519882
0.000482127
0.000393596
0.000281067
0.00014859
3.33477e-05
5.01416e-06
8.00106e-06
1.89979e-05
6.35658e-05
0.000135184
0.000207631
0.000246647
0.000285205
0.000316817
0.000344536
0.000378166
0.000425662
0.000490267
0.000568445
0.000650224
0.000723107
0.000776241
0.000804001
0.000807588
0.000793275
0.000768551
0.000738885
0.000706889
0.000673061
0.000637229
0.000599974
0.000563299
0.000531123
0.000508276
0.000495942
0.000480476
0.000396825
0.000285181
0.000150515
3.38168e-05
5.3032e-06
8.05052e-06
2.05717e-05
7.15651e-05
0.000147496
0.000217717
0.00023448
0.000283144
0.000341367
0.000389006
0.000426088
0.000455128
0.000487996
0.000535579
0.000598702
0.000670457
0.00074133
0.000800777
0.000838549
0.000849137
0.000833193
0.00079682
0.000749518
0.000699264
0.000650131
0.000603121
0.000558557
0.000518339
0.000486892
0.000467228
0.000449991
0.000384185
0.000276627
0.00014574
3.26947e-05
5.42866e-06
8.08907e-06
1.90136e-05
6.60429e-05
0.000140964
0.000215406
0.000250214
0.000294572
0.000367514
0.000406398
0.000435873
0.000468608
0.000499858
0.000531189
0.000569468
0.000618414
0.00067689
0.00073998
0.00079862
0.000841988
0.000861227
0.000851016
0.000812784
0.000755266
0.000689584
0.000624374
0.000564309
0.00051187
0.000469878
0.000441435
0.000421593
0.000372255
0.000268067
0.000141167
3.17359e-05
5.43296e-06
8.12968e-06
2.17969e-05
7.61311e-05
0.000153936
0.000227376
0.000262517
0.000308907
0.00037414
0.000409968
0.000432095
0.000460713
0.00049523
0.000531109
0.000566763
0.000603453
0.000642849
0.000685659
0.000730554
0.000774169
0.000810577
0.000831203
0.000828411
0.000798708
0.000744661
0.000674423
0.000598546
0.000526502
0.000465279
0.000419273
0.000388212
0.000356957
0.000255739
0.000131733
2.86125e-05
5.3359e-06
8.18961e-06
2.24806e-05
7.98307e-05
0.000160578
0.000236159
0.000282032
0.000299743
0.000347607
0.000402469
0.000421784
0.000437154
0.000461592
0.000495158
0.000535062
0.000576716
0.000615791
0.000650321
0.000680948
0.000709503
0.000736738
0.000760714
0.000776734
0.000778192
0.00075856
0.000714348
0.000648098
0.000569183
0.000490646
0.000423775
0.000373216
0.00033006
0.000246571
0.000126796
2.71657e-05
5.21973e-06
8.08474e-06
2.35157e-05
8.52354e-05
0.000170689
0.000250409
0.000317168
0.000328624
0.00033638
0.00037287
0.00040486
0.000421742
0.00044714
0.000478635
0.000512025
0.000547867
0.000584761
0.000618556
0.000645879
0.000666661
0.000683255
0.000697884
0.000711056
0.000720542
0.000721178
0.000705828
0.000668183
0.000607291
0.000530756
0.000452731
0.000385405
0.000326573
0.000239067
0.000123944
2.6818e-05
5.05804e-06
7.92922e-06
2.3489e-05
8.58511e-05
0.000171058
0.000251186
0.000320687
0.00035846
0.000347325
0.000331874
0.000370633
0.000428106
0.000445326
0.000459679
0.000484638
0.000513758
0.000544123
0.000574597
0.000601843
0.000622146
0.00063459
0.000641513
0.000646863
0.000653622
0.000661361
0.000663773
0.00064628
0.000599202
0.000543043
0.000477799
0.000402517
0.000320933
0.000225151
0.000117257
2.56349e-05
4.82919e-06
7.89582e-06
2.32176e-05
8.67774e-05
0.000174931
0.000258086
0.000331044
0.00039395
0.000429654
0.000415582
0.000375894
0.000388447
0.000446666
0.000470872
0.000479584
0.000498187
0.000521163
0.000543686
0.000565747
0.000586043
0.000601181
0.00060864
0.000609679
0.000608768
0.000610347
0.000614516
0.000611401
0.0005745
0.000519035
0.000454428
0.000381062
0.000298712
0.000206727
0.000106647
2.29065e-05
4.55823e-06
7.80899e-06
2.66784e-05
9.83247e-05
0.000191459
0.000276795
0.000348905
0.000391335
0.000422633
0.000438157
0.00042495
0.000392604
0.000401037
0.000461287
0.000495832
0.000501319
0.000512342
0.000529768
0.000546242
0.000560428
0.000573224
0.000583074
0.000587303
0.000585559
0.000580922
0.000577243
0.000574153
0.000559979
0.000505117
0.000440548
0.000366754
0.00028417
0.000193441
9.7632e-05
1.99772e-05
4.28262e-06
7.61449e-06
2.2324e-05
8.64595e-05
0.000176862
0.000264541
0.000342848
0.000410506
0.000465765
0.000496569
0.000501581
0.000471679
0.000426622
0.000422062
0.000473548
0.000516535
0.000522827
0.000526319
0.000538069
0.000549839
0.000557909
0.000563667
0.000567974
0.000569072
0.000565203
0.000557362
0.000547893
0.000534489
0.000500976
0.000436744
0.000362325
0.000278548
0.000186975
9.20796e-05
1.77418e-05
4.02611e-06
7.78581e-06
2.70618e-05
0.000100795
0.000196136
0.000284489
0.000360879
0.000418523
0.000455589
0.000491109
0.000525655
0.000543486
0.000523599
0.000475622
0.000453431
0.000485967
0.000532492
0.000543007
0.000540137
0.000543292
0.000549174
0.000551615
0.000550958
0.000549696
0.000547234
0.000541348
0.000531158
0.000517039
0.000494367
0.000441768
0.000366361
0.000280354
0.000185956
8.91582e-05
1.61072e-05
3.80408e-06
7.55994e-06
2.41235e-05
9.34522e-05
0.000188013
0.000279169
0.000360355
0.000430287
0.00047932
0.000510232
0.000540826
0.000571076
0.000589276
0.000576165
0.000530365
0.000492829
0.000500651
0.000539156
0.000557693
0.000552661
0.00054672
0.000545268
0.000542039
0.000535631
0.000529396
0.000524119
0.000516846
0.000505768
0.000489446
0.000455481
0.000379012
0.000289972
0.00019093
8.92921e-05
1.51533e-05
3.60423e-06
7.72096e-06
2.6123e-05
9.89115e-05
0.000194693
0.00028572
0.000366764
0.000437235
0.000486529
0.000519205
0.000550802
0.000583559
0.000613823
0.000633582
0.000628889
0.000591681
0.000545112
0.000526583
0.000542982
0.000561661
0.000556455
0.000543519
0.000533754
0.000525674
0.00051596
0.000506822
0.000500478
0.000495024
0.000486594
0.000465167
0.000399199
0.000308527
0.000205155
9.68911e-05
1.65311e-05
3.49756e-06
7.64329e-06
2.56943e-05
9.88263e-05
0.000195824
0.000288556
0.000371458
0.000443823
0.000501245
0.000534244
0.000564435
0.000596917
0.000629252
0.00065732
0.000676568
0.000679123
0.000655141
0.000608963
0.00056693
0.000550011
0.000551763
0.000548191
0.000532169
0.000516328
0.000504211
0.000493736
0.000484986
0.000480475
0.000479204
0.000471386
0.000423894
0.000333225
0.000226098
0.000110319
2.01726e-05
3.54299e-06
7.71899e-06
2.64108e-05
0.000101209
0.000199131
0.000292331
0.000375807
0.000449123
0.00051011
0.000546032
0.000577423
0.000610666
0.000644671
0.000675891
0.000700935
0.000717577
0.000723181
0.000711474
0.000676119
0.000623693
0.000574802
0.000544235
0.000528266
0.000512427
0.00049479
0.000480128
0.000468714
0.000460926
0.000458798
0.000461713
0.000448887
0.000360112
0.000250302
0.000126551
2.51761e-05
3.78766e-06
7.7166e-06
2.71213e-05
0.000104562
0.000204777
0.000299535
0.000383907
0.000457745
0.000519715
0.000557259
0.000590473
0.000625442
0.000661454
0.000695708
0.000725339
0.000748039
0.000762327
0.000767309
0.000760316
0.000734442
0.000683647
0.0006155
0.000552013
0.000509982
0.000486853
0.000471193
0.000459959
0.000449724
0.000443562
0.000443731
0.000440963
0.000375452
0.000264792
0.000135404
2.786e-05
4.1165e-06
7.74248e-06
2.77784e-05
0.000107338
0.000209234
0.000305436
0.00039098
0.000465645
0.000524742
0.000562457
0.000597713
0.000635021
0.000673094
0.000709352
0.000741592
0.000768266
0.000788148
0.000800011
0.000802449
0.000793129
0.000766672
0.000715027
0.000637251
0.00055254
0.000489213
0.000457045
0.000443618
0.000437819
0.000431484
0.000428155
0.000424528
0.000380088
0.00026942
0.00013738
2.86896e-05
4.44092e-06
7.77537e-06
2.80025e-05
0.000108604
0.000211344
0.000308819
0.000395906
0.000472039
0.000529769
0.000566143
0.000601746
0.000640385
0.000679605
0.000716405
0.000748994
0.000776569
0.000798537
0.000813981
0.00082149
0.000819076
0.000804038
0.000772069
0.000716577
0.000634554
0.000540828
0.000466289
0.00042668
0.000412298
0.000409447
0.000410181
0.000414541
0.000390921
0.000280484
0.000144753
3.15644e-05
4.7979e-06
7.87947e-06
2.76151e-05
0.000107298
0.000208878
0.000306294
0.000394605
0.000472809
0.000533381
0.000571648
0.00060762
0.000645933
0.00068473
0.000721029
0.00075289
0.000779629
0.000801251
0.000817746
0.000828391
0.000831319
0.00082379
0.000802778
0.000765086
0.000706727
0.000625047
0.000530125
0.000448965
0.000399962
0.000380033
0.000378757
0.000389918
0.000397662
0.000293573
0.000154816
3.53855e-05
5.35114e-06
8.0422e-06
2.73479e-05
0.000105822
0.000205214
0.00030095
0.00038895
0.000468224
0.000528432
0.000572434
0.000613753
0.000653798
0.000691648
0.000726368
0.000756635
0.000781694
0.000801828
0.000817653
0.000829243
0.000835721
0.000834988
0.000823722
0.000798236
0.000755543
0.000693245
0.000610172
0.000514742
0.000429231
0.000372951
0.000348913
0.000351105
0.000362273
0.000297292
0.000159983
3.78878e-05
5.92487e-06
8.2043e-06
2.76661e-05
0.000105752
0.000203061
0.000296239
0.000382427
0.00046119
0.000518366
0.000566004
0.000612771
0.000657113
0.000696298
0.000729634
0.000757346
0.000779779
0.000797408
0.00081083
0.000820491
0.000826256
0.0008271
0.000821065
0.000805562
0.00077781
0.00073498
0.00067257
0.000587578
0.000489431
0.000400047
0.000341323
0.000318515
0.000320817
0.000289759
0.000157362
3.78945e-05
6.28968e-06
8.32408e-06
2.81572e-05
0.000106394
0.000202374
0.000293242
0.000377059
0.000450817
0.000504734
0.000555496
0.000605854
0.000652684
0.000692544
0.000724282
0.000748858
0.000767711
0.00078188
0.000792093
0.000798861
0.000802198
0.000801558
0.000795911
0.000784057
0.00076496
0.000737493
0.000698128
0.000636832
0.000549028
0.000448379
0.000360737
0.000308477
0.000292192
0.000272346
0.000147974
3.58628e-05
6.20907e-06
8.4196e-06
2.81837e-05
0.000106085
0.000201041
0.000290267
0.000372161
0.000434235
0.000488206
0.000542718
0.000596212
0.000644375
0.000683959
0.000714033
0.000735687
0.00075093
0.00076158
0.000768741
0.000772892
0.000774234
0.000772748
0.000768075
0.000759704
0.000746942
0.0007281
0.000699246
0.000654198
0.000585706
0.000495433
0.000400983
0.000327465
0.000285911
0.000254505
0.000137559
3.3287e-05
5.82705e-06
8.4925e-06
2.7673e-05
0.00010433
0.000197525
0.000285015
0.0003622
0.000417906
0.000472594
0.000529678
0.000585067
0.000633467
0.00067178
0.00070004
0.00072044
0.000735679
0.000747572
0.000756498
0.000761911
0.000763255
0.000760488
0.000754005
0.000744506
0.00073263
0.000717982
0.000697045
0.000662315
0.000605881
0.000527555
0.000439086
0.000358108
0.000295852
0.000238454
0.00012489
2.90634e-05
5.29787e-06
8.53921e-06
2.67475e-05
0.000101145
0.000191248
0.000276206
0.000348574
0.000404869
0.000461268
0.000519047
0.000573208
0.000618096
0.000650923
0.000673169
0.00068959
0.000705484
0.000723536
0.000742323
0.000758095
0.000767538
0.000769042
0.000762721
0.000750234
0.000734036
0.000715869
0.000694534
0.000663655
0.000614187
0.000544286
0.000463225
0.00038259
0.000308045
0.00022775
0.000113747
2.47487e-05
4.81664e-06
8.59067e-06
2.56946e-05
9.74266e-05
0.000183643
0.000265121
0.000332973
0.000393372
0.00045598
0.00051845
0.000573788
0.000615625
0.000641671
0.000655783
0.000667177
0.000685224
0.000711454
0.000738064
0.00075709
0.000766306
0.000766846
0.00076035
0.000748555
0.000733244
0.000715784
0.000695832
0.000669203
0.000627724
0.000567245
0.000494402
0.000417123
0.000334665
0.000227184
0.000108038
2.18284e-05
4.42327e-06
8.67004e-06
2.5312e-05
9.56895e-05
0.000178544
0.000255797
0.000315407
0.000378847
0.000449193
0.000520508
0.000583736
0.000630809
0.000658291
0.00067034
0.000678196
0.000692047
0.000710289
0.000724575
0.000732853
0.000737108
0.000738507
0.00073701
0.000732333
0.000724403
0.000713446
0.000699355
0.000679789
0.000647933
0.000595176
0.000522584
0.000440937
0.000348571
0.000230979
0.000107523
2.11593e-05
4.27123e-06
8.69348e-06
2.53419e-05
9.53678e-05
0.000175725
0.000243187
0.000299789
0.000363485
0.000435906
0.000511615
0.00058245
0.000640039
0.000677762
0.000693467
0.000693215
0.000691322
0.000698152
0.000706957
0.00070988
0.000709162
0.000707381
0.000704833
0.000701489
0.000697907
0.000695215
0.000694031
0.000690721
0.000670858
0.000612702
0.000539824
0.000451374
0.000347135
0.000228617
0.000105177
2.0602e-05
4.24017e-06
8.69398e-06
2.53308e-05
9.53117e-05
0.000174344
0.000235149
0.000289368
0.000351431
0.000422116
0.000496734
0.000568568
0.000630855
0.00067777
0.000705216
0.000712469
0.000705547
0.000697786
0.000696808
0.000693808
0.000685668
0.000677555
0.00067136
0.00066669
0.000664156
0.000666106
0.000674297
0.000682274
0.000660457
0.000604826
0.000533847
0.000446567
0.000342853
0.000224738
0.000102693
2.0156e-05
4.3073e-06
8.646e-06
2.44694e-05
9.28659e-05
0.00017045
0.000225844
0.00028061
0.000343222
0.000412348
0.0004837
0.000552313
0.000613626
0.000663927
0.000700132
0.000719511
0.000720571
0.000706934
0.000690845
0.000680784
0.000668947
0.000653973
0.000641658
0.000634212
0.000631414
0.000634133
0.000643842
0.000655963
0.000644326
0.00059179
0.000523898
0.000439387
0.000337789
0.000221083
0.000100461
1.96556e-05
4.30122e-06
8.5821e-06
2.30789e-05
8.82863e-05
0.000160801
0.000213672
0.000270861
0.00033581
0.000405167
0.000474114
0.000538147
0.000594058
0.000640335
0.000676585
0.000702513
0.000716887
0.000717042
0.000701434
0.000677059
0.000656742
0.000639274
0.000620688
0.000605626
0.000598596
0.000601654
0.000614951
0.000631692
0.000623944
0.00057375
0.000508449
0.000426961
0.000328797
0.000215609
9.79891e-05
1.9226e-05
4.31822e-06
8.51859e-06
2.17352e-05
8.33328e-05
0.000148569
0.000200312
0.000258751
0.000325893
0.00039732
0.000466838
0.000528963
0.000580376
0.000620381
0.000650488
0.000672949
0.000689308
0.000699432
0.000700714
0.00068903
0.000664979
0.000638874
0.000615729
0.000592494
0.000572268
0.00056177
0.00056583
0.000583558
0.000597423
0.000551728
0.000489514
0.000410864
0.000315697
0.00020612
9.28397e-05
1.80727e-05
4.19894e-06
8.44353e-06
2.0647e-05
7.89861e-05
0.000138838
0.000187805
0.00024433
0.000310712
0.00038294
0.000454116
0.000517329
0.000567948
0.00060453
0.000628453
0.000642587
0.0006504
0.000655351
0.000660005
0.000664496
0.000664677
0.000653694
0.00063047
0.000602057
0.000574285
0.000550987
0.00053643
0.000534198
0.000540485
0.000526726
0.000469519
0.000395856
0.0003052
0.000199692
9.00122e-05
1.75025e-05
4.09839e-06
8.3993e-06
1.9634e-05
7.51778e-05
0.000132118
0.000178648
0.000231737
0.000294368
0.000364163
0.000435167
0.000500069
0.000553376
0.000593064
0.000619895
0.000635879
0.000643072
0.000643288
0.000638691
0.000632223
0.000627332
0.000626523
0.0006281
0.000624301
0.000606632
0.000575733
0.000542406
0.000518186
0.000506935
0.000498557
0.000453851
0.000385848
0.000301619
0.000201128
9.27668e-05
1.81324e-05
4.06222e-06
8.38993e-06
1.88548e-05
7.23442e-05
0.000127278
0.000173552
0.000225236
0.000284725
0.00035019
0.000416357
0.000476307
0.000525217
0.000562715
0.000591839
0.00061617
0.000637275
0.000653557
0.000661488
0.000658859
0.000647048
0.000630353
0.000613554
0.000599917
0.000589564
0.00057895
0.00056324
0.000541713
0.000519232
0.000495101
0.000443402
0.000374183
0.000291859
0.000195201
9.03255e-05
1.77147e-05
4.16812e-06
8.39625e-06
1.7918e-05
6.86833e-05
0.00012037
0.00016777
0.000221001
0.000280536
0.000344187
0.000406908
0.000461267
0.000501483
0.000527902
0.00054759
0.000570357
0.000601884
0.000637903
0.000666927
0.000679911
0.000676172
0.00066025
0.00063727
0.00061175
0.000587317
0.000566231
0.000548922
0.000534084
0.000519496
0.000499051
0.000448897
0.000375876
0.000290683
0.000193239
8.93846e-05
1.75509e-05
4.17171e-06
8.39201e-06
1.71365e-05
6.51969e-05
0.000112509
0.000161019
0.000217344
0.000279549
0.000344849
0.000409309
0.000466091
0.000507675
0.000532548
0.000549374
0.000570804
0.00059863
0.000622663
0.00063863
0.000648083
0.000652027
0.000650344
0.000642183
0.000627023
0.000605539
0.000579924
0.000553469
0.000529626
0.000510592
0.000493951
0.000460762
0.000386858
0.000298859
0.000197864
9.1175e-05
1.78648e-05
4.22506e-06
8.34677e-06
1.62077e-05
6.11683e-05
0.000104106
0.000152776
0.000211319
0.000275789
0.000342372
0.000408451
0.000470229
0.000521192
0.000555072
0.000572214
0.000582605
0.000597417
0.000612791
0.000619353
0.00062003
0.000620123
0.00062089
0.000620639
0.000616898
0.000607451
0.000591278
0.000569339
0.000544627
0.000520833
0.000498984
0.000469698
0.00039692
0.000307115
0.000202245
9.13725e-05
1.75954e-05
4.20372e-06
8.25958e-06
1.53113e-05
5.74058e-05
9.65383e-05
0.000144778
0.000204835
0.000271279
0.00033835
0.000403006
0.000463712
0.000517744
0.00056036
0.000587455
0.000600486
0.000608412
0.000617815
0.000619821
0.000610448
0.000599394
0.000593008
0.000590866
0.000590134
0.000587967
0.000582189
0.000572
0.000558077
0.000541166
0.00051809
0.000475512
0.000402321
0.000312998
0.000207512
9.43496e-05
1.84612e-05
4.29539e-06
8.13671e-06
1.41926e-05
5.31319e-05
8.89765e-05
0.000136663
0.000197939
0.000266477
0.000334546
0.000397774
0.000455494
0.000507937
0.000553702
0.00058941
0.000611436
0.00061946
0.000619989
0.000619538
0.000610508
0.000591187
0.000573154
0.000562772
0.00055923
0.000559235
0.000560159
0.000560809
0.000560393
0.000554884
0.000530155
0.000471583
0.00039777
0.000307676
0.000201856
8.98771e-05
1.7248e-05
4.16458e-06
8.01317e-06
1.31662e-05
4.9118e-05
8.17411e-05
0.000128938
0.000191211
0.000261334
0.000330218
0.000392026
0.000445777
0.000493071
0.000535207
0.000571852
0.00060102
0.000619593
0.000624828
0.00061839
0.000606789
0.000589521
0.000565614
0.000543729
0.000530942
0.000528001
0.000532505
0.000541553
0.000551064
0.000550111
0.000512071
0.000454605
0.000381561
0.000292386
0.000188691
8.16614e-05
1.55307e-05
3.9985e-06
7.9232e-06
1.21092e-05
4.44545e-05
7.30565e-05
0.000119098
0.000182048
0.000252767
0.000321269
0.000381617
0.000432575
0.000475631
0.000512721
0.000545082
0.000572931
0.000595328
0.000609888
0.000613006
0.000602964
0.000584701
0.000563135
0.0005381
0.000514293
0.000499598
0.000498576
0.000511031
0.000528962
0.000527237
0.00048635
0.000431058
0.000360508
0.000274652
0.000175568
7.47134e-05
1.41126e-05
3.66707e-06
7.84956e-06
1.13755e-05
3.96926e-05
6.40983e-05
0.000107449
0.000170958
0.000243202
0.000311213
0.000368991
0.000416561
0.000456002
0.000489077
0.000516768
0.000539641
0.000558404
0.000573642
0.000584701
0.000588613
0.000581167
0.000562417
0.000537842
0.000511857
0.000488107
0.000471958
0.00046886
0.000479704
0.000490751
0.000453705
0.000402796
0.000337907
0.000258729
0.000166886
7.21389e-05
1.37995e-05
3.51287e-06
7.76856e-06
1.0467e-05
3.49553e-05
5.47507e-05
9.24216e-05
0.000153501
0.000228403
0.000299515
0.000357277
0.000402261
0.000438531
0.000468999
0.000494551
0.000514999
0.000530227
0.000540846
0.000548285
0.000554057
0.000558013
0.000556876
0.000545325
0.000522745
0.000495102
0.000469655
0.000451427
0.000443021
0.000442454
0.00042893
0.000379187
0.000316653
0.000240983
0.00015396
6.51939e-05
1.20634e-05
3.30919e-06
7.69756e-06
1.02046e-05
3.31008e-05
4.89701e-05
8.00417e-05
0.00013532
0.000211567
0.000289222
0.000351482
0.000396358
0.000429891
0.000457557
0.000481611
0.000501894
0.0005173
0.000526989
0.000531176
0.000531312
0.00052939
0.00052748
0.000525383
0.000519807
0.000506163
0.000483716
0.000458226
0.000437197
0.000423141
0.000409157
0.000371176
0.0003113
0.000238272
0.000153062
6.49731e-05
1.19503e-05
3.28204e-06
7.63635e-06
1.00427e-05
3.18188e-05
4.51796e-05
7.12208e-05
0.000120269
0.000194434
0.000276593
0.000344602
0.000391711
0.000424169
0.000449658
0.000472137
0.000492306
0.000509226
0.000521441
0.000527698
0.0005277
0.00052262
0.000515093
0.000507025
0.00049948
0.000492101
0.000482354
0.000466808
0.000445355
0.000422931
0.000402149
0.000368112
0.000309103
0.000238357
0.000155336
6.72078e-05
1.24545e-05
3.37825e-06
7.56525e-06
1.0394e-05
3.15161e-05
4.29799e-05
6.55005e-05
0.000110716
0.000183489
0.000267538
0.000337824
0.000385348
0.000416637
0.000440381
0.000461392
0.000481077
0.000499069
0.000514145
0.00052465
0.000529114
0.00052695
0.000519094
0.000506758
0.000491854
0.000476581
0.000462854
0.000451343
0.000441414
0.000430678
0.000413077
0.000373819
0.00031329
0.000241214
0.000157353
6.8511e-05
1.30061e-05
3.61843e-06
7.46473e-06
1.08336e-05
3.18905e-05
4.06765e-05
5.85688e-05
9.84064e-05
0.000169408
0.00025634
0.000325757
0.000374212
0.000410675
0.000433522
0.000452123
0.000469391
0.000485815
0.000500722
0.000512705
0.000520436
0.000523282
0.000521421
0.000514175
0.000501506
0.000484571
0.000465388
0.000445983
0.000427734
0.000410614
0.000392363
0.000365913
0.00031244
0.000239182
0.000154428
6.60285e-05
1.26649e-05
3.76507e-06
7.32419e-06
1.21073e-05
3.50213e-05
4.15251e-05
5.47624e-05
8.8215e-05
0.000155721
0.000243443
0.000303863
0.00035199
0.000392692
0.00042719
0.000454884
0.000469221
0.000481545
0.000493851
0.00050406
0.00051012
0.000511681
0.000509578
0.000503169
0.000491919
0.000476369
0.000458213
0.000439702
0.000423008
0.000409779
0.000399025
0.000380231
0.000324942
0.000248058
0.000157622
6.52427e-05
1.2297e-05
3.75927e-06
7.15623e-06
1.37145e-05
3.92573e-05
4.41713e-05
5.30435e-05
7.9406e-05
0.00014034
0.000226103
0.000279106
0.000325713
0.000365722
0.00040028
0.000430494
0.000457136
0.000480669
0.00049887
0.000504634
0.00050647
0.00050731
0.000507443
0.000504009
0.00049413
0.000476952
0.000454196
0.000429181
0.00040516
0.00038421
0.000366663
0.000349122
0.000318188
0.000245683
0.000156514
6.37717e-05
1.20566e-05
3.692e-06
7.01385e-06
1.59233e-05
4.54892e-05
4.99662e-05
5.57791e-05
7.66465e-05
0.000131407
0.000209645
0.000259131
0.000303168
0.000341351
0.000374693
0.00040422
0.000430835
0.000455075
0.000476701
0.000495132
0.000504387
0.000498457
0.000490785
0.000483431
0.000473633
0.000458819
0.000438815
0.000415712
0.000392634
0.000372724
0.000358219
0.00034634
0.000314444
0.00024389
0.000154014
6.08143e-05
1.14057e-05
3.43733e-06
6.93869e-06
1.80357e-05
5.26957e-05
5.6139e-05
5.84654e-05
7.34369e-05
0.000120666
0.00018915
0.000235304
0.000277363
0.000314491
0.00034746
0.000377195
0.000404582
0.000429968
0.000452958
0.000472934
0.000489451
0.000501811
0.000505556
0.000495804
0.000481097
0.000460743
0.000433916
0.000402942
0.000371774
0.000343746
0.000320501
0.000300972
0.000277753
0.000225896
0.000146128
5.92538e-05
1.17216e-05
3.33039e-06
6.89859e-06
2.15714e-05
6.19122e-05
6.71183e-05
6.59841e-05
7.52522e-05
0.00011422
0.000174594
0.000217282
0.000256764
0.000291993
0.000323655
0.000352667
0.000379993
0.000405861
0.00042972
0.000450869
0.000468567
0.000481827
0.000477813
0.000469487
0.000461732
0.000450872
0.000432903
0.000407096
0.00037616
0.000344446
0.000315855
0.000291837
0.000266795
0.000215453
0.000139914
5.68589e-05
1.11692e-05
3.05214e-06
6.86647e-06
2.49411e-05
7.05249e-05
7.8278e-05
7.40673e-05
7.71377e-05
0.000105959
0.000160757
0.000201351
0.000239252
0.000273242
0.000304132
0.00033277
0.00035975
0.000385369
0.000409183
0.000430555
0.000448832
0.00046297
0.000471848
0.000473536
0.000461644
0.000445502
0.000425556
0.000400622
0.000370841
0.000337812
0.000303675
0.000270042
0.000237216
0.000201714
0.000135959
5.89455e-05
1.2022e-05
3.12626e-06
6.82755e-06
2.6574e-05
7.66964e-05
8.85501e-05
8.44093e-05
8.27474e-05
0.000100738
0.000147718
0.000186548
0.000223296
0.00025634
0.000286484
0.000314616
0.000341236
0.000366536
0.000390203
0.000411548
0.000430132
0.000445199
0.000449397
0.000446755
0.000441538
0.000433479
0.00042161
0.000405472
0.000384782
0.000359115
0.000328269
0.000292619
0.000252056
0.000200441
0.000133214
5.82436e-05
1.12063e-05
2.86765e-06
6.74297e-06
2.49625e-05
7.61366e-05
8.95471e-05
8.94035e-05
8.82e-05
9.86939e-05
0.000133678
0.000171181
0.000205712
0.000238368
0.000268502
0.00029655
0.000322888
0.000347617
0.00037061
0.000391535
0.000410145
0.000425472
0.000436197
0.000441926
0.000435873
0.000423117
0.000407285
0.00038958
0.000369717
0.000346529
0.000318671
0.000285185
0.000245035
0.000193724
0.000129092
5.69506e-05
1.05305e-05
2.89897e-06
6.50782e-06
1.91966e-05
6.56087e-05
8.51972e-05
9.03183e-05
9.21558e-05
9.82738e-05
0.000119543
0.000154971
0.000185203
0.000217295
0.000248038
0.000276711
0.000303462
0.000328507
0.000351885
0.000373441
0.000392852
0.000409218
0.000421471
0.000429193
0.00042774
0.000416218
0.000402018
0.000388418
0.000375799
0.000361726
0.000340323
0.000301297
0.000251411
0.000191961
0.000123892
5.24938e-05
8.77395e-06
2.53329e-06
6.298e-06
1.38527e-05
5.14914e-05
7.61192e-05
8.87212e-05
9.53719e-05
0.000100677
0.000112692
0.000139683
0.000165619
0.000193256
0.000223642
0.000253438
0.000281374
0.00030726
0.000331173
0.000353061
0.000372673
0.000389174
0.000401461
0.000409073
0.000411743
0.000409375
0.000395425
0.000374472
0.000354444
0.000335928
0.000315919
0.000286325
0.000240384
0.000183701
0.000117143
4.69179e-05
7.13728e-06
2.39278e-06
6.35576e-06
1.27928e-05
4.70116e-05
6.90687e-05
8.6039e-05
9.92536e-05
0.000109345
0.000120421
0.000138566
0.000156837
0.000176538
0.000203196
0.000232349
0.000260921
0.000287856
0.00031301
0.000336286
0.00035739
0.000375613
0.000390028
0.000400133
0.000405586
0.00040617
0.000399697
0.000380836
0.000362915
0.000348659
0.000332525
0.000298677
0.000254286
0.000197636
0.000128792
5.46844e-05
8.62004e-06
2.23497e-06
6.68787e-06
1.63249e-05
5.56586e-05
7.92932e-05
8.81209e-05
9.75827e-05
0.000109713
0.000126144
0.000145765
0.000151336
0.000163762
0.000184545
0.000210861
0.000238789
0.00026603
0.000291763
0.000315613
0.00033715
0.000355571
0.000369874
0.00037957
0.000384361
0.000384094
0.000378678
0.000367806
0.000343824
0.000319941
0.000297789
0.000268165
0.000224384
0.000169888
0.000105322
3.8772e-05
5.35846e-06
1.9528e-06
6.68527e-06
2.15826e-05
6.97037e-05
9.68128e-05
0.000105297
0.000104777
0.000107024
0.000118289
0.000140413
0.00015424
0.000163045
0.000178684
0.000200265
0.000225092
0.000250904
0.000276454
0.000300981
0.000323799
0.000344064
0.000360749
0.000373196
0.000380991
0.000383937
0.000380602
0.000365337
0.000346659
0.00032748
0.000308984
0.000289449
0.000257959
0.000210453
0.000147375
6.91157e-05
1.13048e-05
2.26243e-06
6.45351e-06
2.26182e-05
7.25998e-05
8.9812e-05
0.00010206
0.000110417
0.000114048
0.000119104
0.000133034
0.000148124
0.000155401
0.00016919
0.00018878
0.000211883
0.000236722
0.000262069
0.000286699
0.000309464
0.000329279
0.000345225
0.000356797
0.000363622
0.000365403
0.000361896
0.000352832
0.000337859
0.000316519
0.000288228
0.000252218
0.000207563
0.000153617
9.15711e-05
3.13443e-05
4.43317e-06
1.70216e-06
6.21411e-06
2.08051e-05
6.98112e-05
9.63021e-05
0.000103529
0.000106862
0.000109121
0.000112966
0.000124316
0.000146587
0.000158368
0.000168568
0.000183646
0.000202682
0.000224249
0.000247246
0.000270603
0.000293106
0.000313533
0.000330545
0.000343331
0.000351426
0.000350024
0.000337922
0.000326394
0.000315322
0.000302187
0.00028592
0.000265258
0.000231323
0.000188248
0.00013484
6.76063e-05
1.14813e-05
2.16029e-06
6.21058e-06
1.83237e-05
6.33084e-05
0.000110109
0.000130716
0.000129167
0.000123981
0.000118548
0.000115867
0.000120655
0.000136579
0.000163497
0.000178616
0.000196784
0.000218528
0.000242528
0.000267237
0.000291211
0.00031322
0.000332118
0.000347084
0.000357595
0.00036346
0.000364615
0.000360809
0.000351449
0.000335612
0.000312062
0.000277196
0.000234675
0.000177305
0.000107358
3.82142e-05
5.74582e-06
1.85454e-06
6.55719e-06
2.6049e-05
7.92084e-05
0.000125997
0.000137283
0.000139563
0.000137552
0.000131837
0.000125054
0.000123152
0.000134794
0.000163136
0.000173328
0.000183808
0.000198357
0.000216829
0.000238321
0.000260388
0.000280603
0.000296644
0.000307458
0.000312446
0.000311341
0.000304237
0.000291214
0.000272118
0.000246745
0.000215124
0.000178066
0.000137626
9.66072e-05
5.72498e-05
2.31134e-05
4.49997e-06
1.58648e-06
7.37857e-06
2.48879e-05
7.21591e-05
0.000119859
0.000155999
0.000174018
0.00018115
0.000182939
0.000181963
0.000180479
0.000183176
0.000192264
0.00019047
0.000186768
0.000189331
0.000199055
0.000215459
0.000237844
0.000265249
0.000295729
0.000326345
0.00035378
0.000376564
0.000394268
0.0004067
0.000412988
0.000411148
0.000379878
0.000318538
0.00025601
0.000197496
0.00013816
4.90251e-05
5.26748e-06
1.86773e-06
7.76097e-06
4.91232e-05
0.000118602
0.000131005
0.000141729
0.000151733
0.000155942
0.000158299
0.000163525
0.00017419
0.000192448
0.000218494
0.000245123
0.000250721
0.00025031
0.000251939
0.000255241
0.000259418
0.000263534
0.000266885
0.000268678
0.00026792
0.000263573
0.000254724
0.000240661
0.000220942
0.000195473
0.00016464
0.000130417
9.63274e-05
6.46164e-05
3.61113e-05
1.24799e-05
2.12565e-06
9.9197e-07
7.7873e-06
3.41278e-05
8.2496e-05
0.00010975
0.000141596
0.000159047
0.000154697
0.000150406
0.000154084
0.000163363
0.000176742
0.000198852
0.000237475
0.000272901
0.000265998
0.000256155
0.000246144
0.000238877
0.000236701
0.000241239
0.000252947
0.000270559
0.000291713
0.000314276
0.000337161
0.000359484
0.000379048
0.000332449
0.000264151
0.000207612
0.000160102
9.50948e-05
1.79221e-05
1.58028e-06
4.35775e-07
8.05179e-06
7.04449e-05
9.1857e-05
0.000103252
0.000131801
0.000159557
0.000179453
0.000200505
0.000227162
0.000260096
0.000297813
0.000320808
0.00033414
0.000344922
0.0003522
0.000355722
0.000355374
0.000350921
0.000342044
0.00032851
0.000310538
0.0002888
0.000264012
0.00023689
0.000207886
0.000177155
0.000144967
0.000112152
8.02729e-05
5.11696e-05
2.7321e-05
1.13473e-05
3.17749e-06
8.49939e-07
3.27607e-07
7.35712e-06
7.98695e-05
5.42169e-05
6.39348e-05
7.78454e-05
8.73412e-05
9.76641e-05
0.000108787
0.00012118
0.000135564
0.000151613
0.000155985
0.00015568
0.000154688
0.000152771
0.000149948
0.000146074
0.000141098
0.000135011
0.000127852
0.000119726
0.000110764
0.000101132
9.09913e-05
8.04929e-05
6.9794e-05
5.91162e-05
4.87129e-05
3.88426e-05
2.97577e-05
2.18385e-05
1.53283e-05
9.6551e-06
3.63949e-06
8.17637e-07
7.7687e-06
4.1132e-05
4.57094e-05
5.43595e-05
6.18144e-05
6.89302e-05
7.42158e-05
7.80015e-05
8.02845e-05
8.13508e-05
8.13348e-05
8.04523e-05
7.91996e-05
7.77847e-05
7.60538e-05
7.42029e-05
7.2265e-05
7.03259e-05
6.84246e-05
6.66132e-05
6.49406e-05
6.34671e-05
6.22616e-05
6.13965e-05
6.09251e-05
6.09156e-05
6.15061e-05
6.29501e-05
6.51172e-05
6.72047e-05
6.82894e-05
6.8084e-05
6.81094e-05
5.14413e-05
4.98946e-06
2.10692e-06
2.67536e-05
3.07766e-05
3.57507e-05
3.81286e-05
3.85566e-05
3.83272e-05
3.80139e-05
3.77172e-05
3.74869e-05
3.67095e-05
3.54169e-05
3.40291e-05
3.35269e-05
3.37689e-05
3.46664e-05
3.58804e-05
3.73276e-05
3.87774e-05
3.99495e-05
4.09033e-05
4.14599e-05
4.16357e-05
4.10043e-05
3.98878e-05
3.79445e-05
3.59028e-05
3.33375e-05
3.06853e-05
2.78646e-05
2.46655e-05
2.10992e-05
1.88299e-05
1.84886e-05
1.59952e-06
5.27776e-07
1.20836e-05
2.41798e-05
3.72056e-05
4.91544e-05
5.90674e-05
6.71053e-05
7.37947e-05
7.96883e-05
8.52368e-05
9.10532e-05
9.70043e-05
0.000101842
0.000111858
0.000137387
0.000154832
0.000127834
0.000113994
0.000113267
0.000117355
0.000118312
0.000115598
0.000113356
0.000111387
0.000107789
0.000101295
9.32966e-05
8.39536e-05
7.44262e-05
6.48109e-05
5.55173e-05
4.01292e-05
2.66803e-05
1.88426e-05
2.91386e-06
2.76821e-06
2.04432e-05
5.3334e-05
8.93233e-05
0.000114119
0.000131715
0.000145952
0.000157685
0.000165676
0.000165369
0.000147971
0.000110931
7.08234e-05
3.82452e-05
1.59439e-05
8.01571e-06
1.56179e-05
5.49131e-05
9.9759e-05
0.000128839
0.0001285
0.00011592
0.000106575
0.000100697
9.70822e-05
9.46654e-05
9.20213e-05
8.68559e-05
7.6871e-05
6.08864e-05
4.41802e-05
3.24316e-05
2.97314e-05
4.07718e-05
5.41115e-06
3.42765e-06
2.48019e-05
6.49275e-05
0.000106804
0.000137707
0.000158268
0.000166372
0.000159514
0.000138083
0.000107547
7.82786e-05
5.83956e-05
4.8963e-05
4.69185e-05
4.49675e-05
3.55286e-05
2.77973e-05
3.04363e-05
4.25845e-05
4.54124e-05
3.46489e-05
3.32143e-05
3.94091e-05
4.93717e-05
5.58625e-05
5.34927e-05
4.68866e-05
4.07993e-05
3.60704e-05
3.23252e-05
2.94577e-05
2.79464e-05
3.31059e-05
6.71848e-05
5.90996e-06
3.49103e-06
1.78739e-05
5.16451e-05
9.75634e-05
0.000121904
0.000127764
0.000122751
0.000110008
9.45354e-05
8.21978e-05
7.63926e-05
7.62601e-05
7.62346e-05
7.017e-05
5.91034e-05
4.68573e-05
3.47759e-05
2.67295e-05
2.49292e-05
2.22347e-05
1.32112e-05
2.41602e-05
4.71793e-05
3.09326e-05
3.16884e-05
4.03185e-05
4.9141e-05
5.29599e-05
5.06176e-05
4.42608e-05
3.70334e-05
3.03662e-05
2.96365e-05
5.86324e-05
6.10428e-06
4.78379e-06
2.34929e-05
7.52734e-05
0.000131469
0.000146109
0.000137286
0.000116622
9.48269e-05
7.86056e-05
6.83216e-05
6.18278e-05
5.75814e-05
5.52006e-05
5.36515e-05
5.01258e-05
4.2866e-05
3.41065e-05
2.79567e-05
2.85242e-05
4.26121e-05
4.19372e-05
2.82841e-05
3.00399e-05
4.59546e-05
5.43938e-05
5.38635e-05
5.05334e-05
4.70471e-05
4.43276e-05
4.03245e-05
3.27438e-05
2.3636e-05
2.28947e-05
5.31578e-05
6.55876e-06
5.91252e-06
3.08472e-05
0.000102416
0.000143584
0.000134168
0.000107184
8.10673e-05
6.42842e-05
5.6067e-05
5.39252e-05
5.62369e-05
6.136e-05
6.55104e-05
6.36023e-05
5.50966e-05
4.45616e-05
3.59004e-05
3.02748e-05
2.79068e-05
2.95616e-05
3.76551e-05
5.5731e-05
6.52327e-05
6.6974e-05
8.0298e-05
9.11601e-05
8.33384e-05
6.64418e-05
5.25339e-05
4.2076e-05
3.03232e-05
1.75127e-05
1.35582e-05
3.23077e-05
6.97674e-06
7.01935e-06
4.95107e-05
0.000132616
0.000119978
8.98539e-05
6.45238e-05
5.01627e-05
4.49542e-05
4.65006e-05
5.2794e-05
6.08877e-05
6.61643e-05
6.39258e-05
5.36845e-05
4.06353e-05
3.03175e-05
2.53448e-05
2.65347e-05
3.28248e-05
4.16781e-05
5.76005e-05
8.51326e-05
9.95923e-05
9.68698e-05
9.64472e-05
0.000100499
9.67534e-05
7.92728e-05
5.86796e-05
4.26012e-05
2.79069e-05
1.49765e-05
1.21699e-05
3.27772e-05
7.65639e-06
7.16803e-06
5.60417e-05
0.000108581
9.80342e-05
7.90129e-05
6.41067e-05
5.64907e-05
5.4582e-05
5.52577e-05
5.58882e-05
5.63906e-05
5.85539e-05
6.24145e-05
6.29032e-05
5.41583e-05
4.02441e-05
2.92966e-05
2.40154e-05
2.41772e-05
2.93277e-05
4.05704e-05
6.21588e-05
8.86151e-05
9.97155e-05
9.84245e-05
9.65044e-05
9.3523e-05
8.08561e-05
6.00414e-05
4.17252e-05
2.62243e-05
1.31499e-05
1.06161e-05
3.14726e-05
8.11922e-06
5.91947e-06
3.92597e-05
0.000105358
0.000125069
0.000121716
0.000101976
7.81229e-05
6.07145e-05
5.04211e-05
4.47526e-05
4.12304e-05
3.82887e-05
3.61081e-05
3.58777e-05
3.75069e-05
3.81056e-05
3.46022e-05
2.90983e-05
2.6151e-05
2.85894e-05
3.98435e-05
6.49834e-05
8.97993e-05
9.41368e-05
9.06029e-05
8.86274e-05
8.52814e-05
7.27489e-05
5.35251e-05
3.66554e-05
2.31119e-05
1.24757e-05
1.13903e-05
3.64283e-05
8.47689e-06
5.3165e-06
2.94308e-05
8.68324e-05
0.00012442
0.000133596
0.000127411
0.000108616
8.4228e-05
6.44386e-05
5.20696e-05
4.51625e-05
4.16907e-05
4.00801e-05
3.8704e-05
3.65638e-05
3.37838e-05
3.07574e-05
2.78173e-05
2.58986e-05
2.63806e-05
3.09438e-05
4.19578e-05
5.96603e-05
7.28757e-05
7.39143e-05
7.20395e-05
7.34202e-05
7.28025e-05
5.95836e-05
3.74169e-05
1.973e-05
1.04331e-05
1.13538e-05
4.13996e-05
8.88704e-06
5.19722e-06
2.66924e-05
8.75926e-05
0.000134645
0.000136438
0.000122053
0.00010659
9.52629e-05
8.51647e-05
7.25183e-05
5.90848e-05
4.80933e-05
4.06759e-05
3.69103e-05
3.65742e-05
3.84942e-05
3.90845e-05
3.45255e-05
2.84947e-05
2.66857e-05
3.05054e-05
3.89086e-05
4.84057e-05
5.51098e-05
5.7984e-05
5.8847e-05
6.01141e-05
6.22742e-05
6.19611e-05
4.70471e-05
2.03812e-05
9.58301e-06
1.16449e-05
4.89332e-05
8.91862e-06
5.02542e-06
2.48886e-05
7.92444e-05
0.000134102
0.000145966
0.000129086
9.89002e-05
7.588e-05
6.66557e-05
6.86098e-05
7.49624e-05
7.2952e-05
5.99095e-05
4.64643e-05
3.74444e-05
3.28631e-05
3.18892e-05
3.2974e-05
3.29945e-05
3.07121e-05
3.0712e-05
3.72662e-05
4.90108e-05
5.53774e-05
5.42378e-05
5.02869e-05
4.58865e-05
4.39379e-05
4.49529e-05
3.97977e-05
1.98853e-05
1.05317e-05
1.56948e-05
6.62458e-05
8.98465e-06
5.84803e-06
2.83285e-05
8.40151e-05
0.00012873
0.000133456
0.000115529
8.97642e-05
7.02915e-05
5.91109e-05
5.43205e-05
5.62701e-05
6.63338e-05
8.01122e-05
7.86041e-05
5.95429e-05
4.36157e-05
3.58896e-05
3.39587e-05
3.45604e-05
3.45785e-05
3.4311e-05
3.71287e-05
4.58356e-05
5.74617e-05
6.26382e-05
5.93694e-05
5.01002e-05
3.90206e-05
3.46771e-05
3.63641e-05
2.50584e-05
7.56077e-06
1.06028e-05
5.52479e-05
9.13079e-06
6.34647e-06
2.93203e-05
9.02896e-05
0.00013171
0.000121032
8.78744e-05
6.26947e-05
5.39417e-05
5.60146e-05
6.15483e-05
6.47616e-05
6.78527e-05
7.65839e-05
8.92676e-05
8.79947e-05
6.40814e-05
4.30728e-05
3.34922e-05
3.12793e-05
3.23353e-05
3.42937e-05
3.86477e-05
4.72545e-05
5.48323e-05
5.65539e-05
5.98269e-05
6.21591e-05
4.45483e-05
2.55258e-05
1.78514e-05
1.42674e-05
1.21702e-05
1.95424e-05
8.40817e-05
9.35516e-06
7.28425e-06
3.6807e-05
0.000116127
0.000131979
9.71247e-05
5.89332e-05
4.09241e-05
3.80866e-05
4.63488e-05
6.39458e-05
8.24468e-05
9.03774e-05
9.12341e-05
9.46962e-05
9.90709e-05
8.95652e-05
6.32467e-05
4.25227e-05
3.36268e-05
3.16823e-05
3.21916e-05
3.40498e-05
4.01897e-05
5.28275e-05
6.21317e-05
6.04615e-05
5.91543e-05
5.53735e-05
3.42191e-05
1.81118e-05
1.01779e-05
9.62824e-06
2.1493e-05
9.04451e-05
9.40199e-06
7.63349e-06
4.24734e-05
0.000120339
0.000113583
7.4352e-05
4.51843e-05
3.40964e-05
3.48571e-05
4.58586e-05
6.80773e-05
9.66912e-05
0.000116053
0.000115403
0.000102169
8.79526e-05
7.43933e-05
5.87008e-05
4.38171e-05
3.50425e-05
3.25885e-05
3.39265e-05
3.67673e-05
4.18268e-05
5.1715e-05
6.40682e-05
6.9365e-05
6.79587e-05
6.47918e-05
5.17843e-05
2.85386e-05
1.23833e-05
4.60506e-06
1.26631e-05
7.83917e-05
9.57326e-06
7.16536e-06
3.71949e-05
0.000108999
0.000118696
9.16908e-05
5.83172e-05
3.80647e-05
3.07067e-05
3.31761e-05
4.45854e-05
6.39528e-05
8.6971e-05
0.000105259
0.000110826
0.000101708
8.32046e-05
6.28567e-05
4.63175e-05
3.64126e-05
3.27786e-05
3.35762e-05
3.70212e-05
4.34635e-05
5.54985e-05
6.97785e-05
7.30543e-05
6.86046e-05
6.6973e-05
5.12186e-05
1.45266e-05
9.27964e-06
9.88017e-06
2.12625e-05
9.43006e-05
9.95936e-06
6.86937e-06
3.32966e-05
9.85806e-05
0.000123695
0.000116214
8.56687e-05
4.76879e-05
2.77663e-05
2.25488e-05
2.72621e-05
4.10152e-05
6.17126e-05
8.14853e-05
9.05502e-05
8.65516e-05
7.48125e-05
6.15685e-05
5.05662e-05
4.35458e-05
4.08371e-05
4.16485e-05
4.47497e-05
5.01936e-05
5.96783e-05
7.17261e-05
7.69818e-05
7.12067e-05
6.19631e-05
5.20117e-05
1.72286e-05
5.74752e-06
9.76554e-06
2.80587e-05
9.10479e-05
1.00331e-05
6.79406e-06
3.28088e-05
9.57129e-05
0.000128093
0.000127467
0.000107882
6.83112e-05
3.53232e-05
2.12823e-05
1.91843e-05
2.58159e-05
4.06703e-05
6.00165e-05
7.34045e-05
7.34902e-05
6.50615e-05
5.62835e-05
5.06608e-05
4.81314e-05
4.76026e-05
4.78411e-05
4.81573e-05
4.93081e-05
5.27166e-05
5.81437e-05
6.25354e-05
6.2833e-05
5.80199e-05
4.79489e-05
3.18948e-05
9.39194e-06
6.44086e-06
2.0104e-05
9.20299e-05
1.00074e-05
6.86872e-06
3.43692e-05
9.8297e-05
0.00013157
0.000135588
0.000124631
9.82439e-05
6.01676e-05
3.27704e-05
2.08856e-05
1.85539e-05
2.29682e-05
3.34425e-05
4.71781e-05
5.78565e-05
6.15512e-05
6.01073e-05
5.7437e-05
5.59222e-05
5.58421e-05
5.6272e-05
5.65161e-05
5.72135e-05
5.94863e-05
6.25147e-05
6.27628e-05
5.7928e-05
4.9226e-05
3.36319e-05
1.26135e-05
8.37173e-06
6.05731e-06
1.84031e-05
9.76235e-05
1.04399e-05
6.41304e-06
2.99522e-05
8.47557e-05
0.000129326
0.000144176
0.000140989
0.000124709
9.80361e-05
6.36403e-05
3.67353e-05
2.29441e-05
1.74171e-05
1.7506e-05
2.34452e-05
3.50754e-05
4.83192e-05
5.79959e-05
6.32819e-05
6.58257e-05
6.69089e-05
6.70851e-05
6.6753e-05
6.69987e-05
6.95584e-05
7.47974e-05
7.88282e-05
7.62204e-05
6.66214e-05
3.68602e-05
9.73205e-06
7.90308e-06
1.35585e-05
3.79688e-05
8.67784e-05
1.08212e-05
6.23049e-06
2.6397e-05
7.47226e-05
0.000126089
0.000143104
0.000137527
0.000120131
0.000102111
8.95835e-05
7.43969e-05
5.02904e-05
3.09113e-05
2.02797e-05
1.57985e-05
1.71787e-05
2.59103e-05
4.09667e-05
5.54349e-05
6.47973e-05
6.99702e-05
7.21273e-05
7.17331e-05
6.95576e-05
6.62116e-05
6.14324e-05
5.49905e-05
4.75404e-05
3.80259e-05
2.36644e-05
1.24175e-05
9.49622e-06
1.90106e-05
6.46677e-05
6.28175e-05
1.04556e-05
6.06559e-06
2.47209e-05
7.16082e-05
0.000127086
0.000144546
0.000135245
0.000110159
8.29718e-05
6.61348e-05
6.27832e-05
6.9475e-05
6.84463e-05
4.6584e-05
2.73224e-05
1.7425e-05
1.46175e-05
1.94183e-05
3.33637e-05
5.25604e-05
6.76916e-05
7.42964e-05
7.41584e-05
7.0744e-05
6.71659e-05
6.50221e-05
6.32033e-05
5.83468e-05
4.84196e-05
3.35385e-05
1.56903e-05
7.85953e-06
9.19419e-06
2.7781e-05
7.93735e-05
1.00165e-05
6.7015e-06
2.78786e-05
8.1179e-05
0.000135852
0.000146329
0.000130114
0.000101135
7.72139e-05
6.26817e-05
5.34765e-05
5.09773e-05
5.92427e-05
7.16319e-05
5.80747e-05
3.25815e-05
1.89371e-05
1.48682e-05
1.95113e-05
3.46985e-05
5.70002e-05
7.41756e-05
7.90913e-05
7.51142e-05
6.76726e-05
6.02515e-05
5.44201e-05
5.10521e-05
5.1647e-05
5.51881e-05
3.56235e-05
9.48636e-06
2.64358e-06
1.41252e-05
8.93301e-05
1.06155e-05
7.49079e-06
3.36396e-05
0.000101196
0.000141066
0.000131977
9.94536e-05
6.78115e-05
5.30207e-05
5.26031e-05
5.98356e-05
6.51158e-05
6.92431e-05
8.05842e-05
8.6559e-05
5.96928e-05
3.06999e-05
1.76652e-05
1.52814e-05
2.35271e-05
4.51563e-05
7.19028e-05
8.8649e-05
9.29611e-05
8.8186e-05
7.7141e-05
6.29019e-05
4.84937e-05
3.45865e-05
2.20965e-05
1.48354e-05
1.19969e-05
9.08081e-06
2.38674e-05
0.00010599
1.1485e-05
8.16872e-06
4.12112e-05
0.000117525
0.000135101
0.000112268
7.54291e-05
5.12792e-05
4.39494e-05
4.93955e-05
6.51052e-05
8.30985e-05
9.18011e-05
9.42609e-05
9.36218e-05
7.7656e-05
4.68389e-05
2.48418e-05
1.60011e-05
1.69347e-05
2.89919e-05
5.088e-05
7.05771e-05
8.17349e-05
8.70557e-05
8.63353e-05
7.62785e-05
5.91355e-05
2.86256e-05
1.20286e-05
1.10932e-05
1.78077e-05
3.55801e-05
8.92992e-05
6.43321e-05
1.13503e-05
8.35677e-06
4.57972e-05
0.000118542
0.000124301
9.85924e-05
6.5473e-05
4.6253e-05
4.20732e-05
5.0193e-05
6.96577e-05
9.55833e-05
0.000115587
0.000120771
0.000113469
9.64195e-05
6.88925e-05
3.98396e-05
2.193e-05
1.49643e-05
1.62655e-05
2.54387e-05
3.74745e-05
4.43333e-05
4.56463e-05
4.40068e-05
4.10644e-05
3.77382e-05
3.07472e-05
1.70327e-05
1.00851e-05
1.26209e-05
2.71426e-05
8.35225e-05
5.79562e-05
1.03826e-05
8.16065e-06
4.2786e-05
0.000112273
0.000129338
0.000118147
9.02396e-05
6.10199e-05
4.47457e-05
4.13173e-05
4.80307e-05
6.32473e-05
8.3527e-05
0.00010257
0.000114818
0.000116796
0.000104677
7.67747e-05
4.48076e-05
2.49727e-05
1.69174e-05
1.63738e-05
2.09773e-05
2.68445e-05
2.96411e-05
2.8993e-05
2.66161e-05
2.36009e-05
2.34034e-05
2.4082e-05
1.57239e-05
9.56501e-06
7.42494e-06
2.0845e-05
8.24783e-05
9.99411e-06
7.88521e-06
3.87618e-05
0.000103532
0.000130117
0.000130238
0.000116667
8.78695e-05
5.66141e-05
3.96754e-05
3.61513e-05
4.33449e-05
6.13961e-05
8.8408e-05
0.000115836
0.00013375
0.000136806
0.000121467
8.79139e-05
5.11081e-05
2.91014e-05
2.04037e-05
1.99972e-05
2.48574e-05
3.015e-05
3.1201e-05
2.9729e-05
2.64342e-05
1.42593e-05
1.04091e-05
1.12755e-05
8.75103e-06
1.92185e-06
1.21188e-05
7.60365e-05
1.12596e-05
7.62167e-06
3.50118e-05
9.59852e-05
0.000130968
0.000135916
0.000128397
0.000112067
8.41707e-05
5.35665e-05
3.62186e-05
3.22811e-05
3.951e-05
5.9251e-05
9.27715e-05
0.000134149
0.000169148
0.000181409
0.00015705
0.00010277
5.53183e-05
3.18061e-05
2.3877e-05
2.63681e-05
3.50136e-05
3.65482e-05
2.96519e-05
1.431e-05
5.22891e-06
9.466e-06
1.75252e-05
1.58053e-05
9.86502e-06
2.73505e-05
0.000115915
1.22328e-05
7.47805e-06
3.29338e-05
9.06036e-05
0.000130465
0.000136777
0.000127412
0.000111255
9.462e-05
7.40961e-05
4.93801e-05
3.44754e-05
3.2733e-05
4.35833e-05
6.98196e-05
0.000112515
0.000160793
0.000194777
0.00019685
0.000157009
9.54638e-05
5.1779e-05
3.16366e-05
2.52331e-05
2.88182e-05
3.15623e-05
2.07218e-05
8.99286e-06
7.15307e-06
1.34181e-05
3.08145e-05
4.82558e-05
4.55651e-05
8.10477e-05
7.10768e-05
1.18122e-05
7.56258e-06
3.25273e-05
8.89492e-05
0.000130491
0.000138102
0.000127443
0.000104441
8.18738e-05
6.83425e-05
5.68008e-05
4.17433e-05
3.32356e-05
3.61708e-05
5.23898e-05
8.56191e-05
0.00013391
0.000179461
0.000199607
0.000184057
0.000138255
8.64333e-05
5.2221e-05
3.52835e-05
2.68547e-05
1.95541e-05
1.1058e-05
6.05154e-06
6.7457e-06
1.03285e-05
2.02501e-05
4.39849e-05
8.93112e-05
0.000122163
5.36154e-05
1.06577e-05
7.80319e-06
3.34966e-05
9.02597e-05
0.000131871
0.000138176
0.000125043
9.86363e-05
7.27649e-05
5.78076e-05
5.13822e-05
4.56627e-05
3.95278e-05
3.99559e-05
5.1593e-05
7.71597e-05
0.000115572
0.000155858
0.000180474
0.000178419
0.000151208
0.00010998
7.1774e-05
4.79935e-05
3.68746e-05
3.16749e-05
2.51878e-05
1.24032e-05
2.32113e-06
2.58297e-06
7.54655e-06
1.70696e-05
3.99471e-05
9.31722e-05
5.93525e-05
1.0243e-05
8.02356e-06
3.42925e-05
9.30511e-05
0.00013316
0.000134623
0.000114259
8.40893e-05
6.16646e-05
5.03693e-05
4.53929e-05
4.2707e-05
4.1521e-05
4.50562e-05
5.78819e-05
8.3182e-05
0.000118719
0.000153543
0.000174134
0.000174371
0.000157591
0.000130321
9.81981e-05
6.86127e-05
4.8869e-05
4.0495e-05
4.17804e-05
4.38293e-05
2.6206e-05
1.09767e-05
7.05482e-06
8.64414e-06
1.32461e-05
3.40841e-05
7.57807e-05
1.06278e-05
8.18457e-06
3.48116e-05
9.45707e-05
0.000132818
0.000127775
9.78321e-05
6.62665e-05
5.00828e-05
4.53527e-05
4.49464e-05
4.53709e-05
4.81219e-05
5.65071e-05
7.34715e-05
9.99527e-05
0.000131292
0.000158028
0.000173712
0.000179512
0.000179858
0.000174189
0.000155513
0.000121645
8.46166e-05
5.96299e-05
5.06046e-05
5.17279e-05
3.3536e-05
1.5361e-05
1.14949e-05
1.01162e-05
6.32662e-06
1.92847e-05
8.54118e-05
1.15697e-05
8.31076e-06
3.48191e-05
9.60842e-05
0.000130895
0.000114423
7.50143e-05
4.8191e-05
3.92731e-05
4.01653e-05
4.39049e-05
4.68739e-05
5.33725e-05
7.1402e-05
0.000106903
0.000155491
0.000199139
0.000221244
0.000214735
0.000182362
0.000143295
0.000118365
0.000109752
0.000106955
9.73326e-05
7.97859e-05
6.09224e-05
3.83833e-05
2.26161e-05
2.03383e-05
2.13667e-05
1.58912e-05
1.27853e-05
3.41274e-05
9.66598e-05
1.25758e-05
8.63712e-06
3.62918e-05
0.00010111
0.000127253
9.20346e-05
5.093e-05
3.41035e-05
3.30241e-05
4.01101e-05
4.9663e-05
5.74954e-05
6.73295e-05
8.91672e-05
0.000131644
0.000190172
0.000243607
0.000271406
0.00025893
0.00021022
0.000158937
0.00012843
0.000115383
0.000106893
9.28154e-05
7.22746e-05
4.78412e-05
2.57863e-05
1.924e-05
2.73022e-05
3.56427e-05
2.91706e-05
3.14318e-05
7.46104e-05
7.76443e-05
1.26878e-05
9.07918e-06
4.05194e-05
0.000112695
0.000111898
5.96397e-05
2.98925e-05
2.33268e-05
3.00234e-05
4.40249e-05
5.81593e-05
7.21033e-05
9.41582e-05
0.000132116
0.000183615
0.000234648
0.000271955
0.000282901
0.000253213
0.000193337
0.000142568
0.000120368
0.000119693
0.000119977
0.000102521
7.25523e-05
4.32818e-05
2.33112e-05
1.78937e-05
2.77693e-05
4.78271e-05
5.37203e-05
6.48479e-05
0.000115523
6.29505e-05
1.19806e-05
9.32264e-06
4.70804e-05
0.000116477
8.40106e-05
3.69822e-05
1.88536e-05
1.9295e-05
3.59286e-05
6.18926e-05
8.08422e-05
9.76511e-05
0.000123887
0.00016271
0.000205043
0.000241078
0.000265796
0.000270818
0.000244103
0.000189471
0.000134987
0.000102652
9.44951e-05
0.000101458
0.000103404
8.57721e-05
5.71626e-05
3.23131e-05
2.02411e-05
2.25188e-05
3.96575e-05
6.90086e-05
9.93179e-05
0.000126215
5.55449e-05
1.13182e-05
9.16574e-06
5.09293e-05
0.000107593
7.05282e-05
3.17845e-05
1.64576e-05
1.7877e-05
3.91703e-05
7.46651e-05
0.000102578
0.000128929
0.000155355
0.000180533
0.000203954
0.000224697
0.000239919
0.000243651
0.000228215
0.00019231
0.000147861
0.000111751
9.26129e-05
8.89927e-05
9.20969e-05
8.8802e-05
7.32503e-05
5.05701e-05
3.11597e-05
2.28987e-05
2.75361e-05
4.97585e-05
9.41336e-05
0.00012038
5.39334e-05
1.11145e-05
8.82784e-06
4.84012e-05
0.000108189
9.16619e-05
5.01015e-05
2.31257e-05
1.54442e-05
2.54135e-05
5.76769e-05
9.72934e-05
0.000132196
0.000162234
0.000187433
0.000207581
0.000222814
0.000231776
0.000230691
0.000215083
0.000184613
0.000146878
0.000113688
9.31212e-05
8.63088e-05
8.87202e-05
9.14961e-05
8.70027e-05
7.33969e-05
5.35566e-05
3.55413e-05
2.73933e-05
3.35913e-05
6.24107e-05
0.000108047
5.61622e-05
1.12917e-05
8.66071e-06
4.36184e-05
0.000106041
0.000114637
9.22414e-05
4.76443e-05
1.99111e-05
1.29364e-05
2.27326e-05
5.39613e-05
0.000105137
0.000152415
0.000187064
0.000214001
0.000234892
0.000247634
0.000248258
0.000232859
0.000201369
0.000160827
0.000122785
9.62818e-05
8.37385e-05
8.25103e-05
8.70769e-05
9.10157e-05
8.90988e-05
7.75675e-05
5.69903e-05
3.69784e-05
2.93057e-05
4.1744e-05
8.75415e-05
5.92089e-05
1.16505e-05
8.56684e-06
3.97142e-05
0.000102988
0.000120095
0.000109256
8.68167e-05
4.80485e-05
1.91867e-05
1.03569e-05
1.62357e-05
4.26084e-05
0.00010299
0.000177922
0.000235175
0.00027364
0.000294716
0.000292784
0.000263893
0.000215196
0.00016328
0.000121995
9.60266e-05
8.37048e-05
8.13962e-05
8.57609e-05
9.36963e-05
9.94873e-05
9.42195e-05
7.31512e-05
4.60294e-05
3.12917e-05
3.94795e-05
8.77176e-05
5.9036e-05
1.18885e-05
8.64997e-06
3.76531e-05
9.92455e-05
0.000120233
0.000106188
8.46401e-05
6.84774e-05
4.53381e-05
1.79673e-05
7.10572e-06
1.22016e-05
3.90755e-05
0.000107542
0.000207966
0.000296009
0.000341324
0.000347897
0.000323256
0.000246392
0.000170781
0.000119175
9.11843e-05
7.93361e-05
7.69995e-05
8.1104e-05
9.12421e-05
0.000102065
0.000100625
8.01219e-05
5.29179e-05
3.87521e-05
5.03649e-05
0.000104601
5.65407e-05
1.18027e-05
8.87899e-06
3.83604e-05
0.000100099
0.000120736
0.00010676
7.6272e-05
4.69368e-05
3.46554e-05
2.9503e-05
1.14831e-05
6.14143e-06
2.02504e-05
7.20869e-05
0.00019683
0.00032104
0.000331903
0.000339959
0.000345199
0.000270508
0.00017363
0.000115283
8.66753e-05
7.57924e-05
7.36174e-05
7.61056e-05
8.53518e-05
9.88847e-05
0.000102511
8.67953e-05
6.40555e-05
5.39842e-05
7.19606e-05
0.000121902
5.56597e-05
1.15896e-05
9.02327e-06
4.11106e-05
0.000106055
0.00012081
0.000106285
7.8545e-05
4.47919e-05
2.18899e-05
1.44546e-05
1.14946e-05
5.65674e-06
1.8447e-05
6.95034e-05
0.000203044
0.000318588
0.000328843
0.000336709
0.000341998
0.0002758
0.000176273
0.000114976
8.42404e-05
7.19038e-05
6.90256e-05
6.98096e-05
7.59791e-05
8.94227e-05
0.000100366
9.52698e-05
8.09343e-05
7.68061e-05
9.87697e-05
0.000134742
5.75069e-05
1.14947e-05
8.86376e-06
4.23332e-05
0.000109795
0.000119615
0.000101183
7.20087e-05
4.37633e-05
2.11348e-05
8.02454e-06
5.63236e-06
7.42689e-06
2.41812e-05
8.51388e-05
0.000208127
0.000313582
0.000330405
0.000337467
0.000321033
0.000244641
0.00016861
0.000116177
8.57967e-05
7.1308e-05
6.63256e-05
6.49104e-05
6.68758e-05
7.65606e-05
9.18024e-05
0.000100149
9.8397e-05
0.000101665
0.000122973
0.000143716
5.95983e-05
1.15072e-05
8.67726e-06
4.15948e-05
0.000109188
0.000122484
0.000106604
7.81281e-05
4.95318e-05
2.64237e-05
9.81865e-06
2.98571e-06
8.90814e-06
2.88264e-05
8.87058e-05
0.000189269
0.000273858
0.000315032
0.000313856
0.000278342
0.000223411
0.000167303
0.000122098
9.14722e-05
7.41303e-05
6.63223e-05
6.27382e-05
6.07569e-05
6.41869e-05
7.66748e-05
9.42546e-05
0.000107887
0.000120422
0.000139567
0.000148159
6.00604e-05
1.15188e-05
8.67101e-06
4.16613e-05
0.000108792
0.000124489
0.000111305
8.65764e-05
6.13694e-05
3.91229e-05
1.81373e-05
2.7653e-06
4.75734e-07
1.32308e-05
5.4383e-05
0.000144666
0.000239986
0.000292713
0.000297519
0.000268762
0.000223895
0.000176441
0.000134525
0.000102363
8.13284e-05
7.00763e-05
6.45397e-05
6.016e-05
5.78012e-05
6.28202e-05
7.8267e-05
0.000101073
0.000124396
0.000145027
0.000148403
5.98079e-05
1.15555e-05
8.55263e-06
4.13314e-05
0.000108985
0.000127484
0.000115422
8.9428e-05
6.51623e-05
4.73296e-05
3.03066e-05
1.23683e-05
6.45173e-07
4.53117e-06
2.88331e-05
9.70922e-05
0.000196563
0.00026651
0.00028357
0.000262414
0.000224365
0.000183317
0.000145307
0.000113333
8.97212e-05
7.54161e-05
6.84757e-05
6.39792e-05
5.87794e-05
5.68346e-05
6.42176e-05
8.37489e-05
0.000112158
0.000138897
0.00014548
5.92787e-05
1.16725e-05
8.41692e-06
3.9776e-05
0.000106133
0.000132228
0.000124594
9.96587e-05
7.59067e-05
6.22571e-05
4.89655e-05
2.74714e-05
7.94341e-06
4.02184e-06
8.29002e-06
4.39395e-05
0.000127987
0.000221298
0.000265118
0.000259469
0.000228695
0.000191
0.000154639
0.000122533
9.6736e-05
7.93051e-05
7.04895e-05
6.68893e-05
6.26803e-05
5.72315e-05
5.7278e-05
6.91317e-05
9.53556e-05
0.00012829
0.000140878
5.68387e-05
1.17249e-05
8.39561e-06
3.91527e-05
0.000106327
0.000134703
0.000123946
9.35999e-05
6.79112e-05
5.87525e-05
6.12026e-05
5.67347e-05
2.90388e-05
5.57803e-06
9.05514e-07
1.40235e-05
6.17927e-05
0.000152553
0.000223593
0.000242101
0.000226245
0.000195778
0.000162246
0.000130648
0.000103312
8.26729e-05
7.05497e-05
6.58296e-05
6.3506e-05
5.89243e-05
5.57826e-05
6.24861e-05
8.5626e-05
0.000122021
0.00013654
5.26364e-05
1.15665e-05
8.37162e-06
3.81291e-05
0.000104924
0.000135996
0.000121723
9.06372e-05
6.79806e-05
5.90273e-05
6.12837e-05
6.94076e-05
6.2343e-05
2.94658e-05
5.89912e-06
4.71934e-06
1.89576e-05
7.83404e-05
0.000168643
0.000214552
0.000215062
0.000194138
0.000165255
0.000135826
0.000109107
8.71007e-05
7.19405e-05
6.43302e-05
6.17298e-05
5.93999e-05
5.70734e-05
6.20622e-05
8.32015e-05
0.000120155
0.000133755
4.97268e-05
1.13356e-05
8.48946e-06
3.7789e-05
0.000106153
0.000133393
0.000103092
7.02876e-05
5.67142e-05
5.65998e-05
6.51208e-05
8.08405e-05
9.43624e-05
7.35789e-05
2.997e-05
6.28279e-06
2.1688e-06
2.36654e-05
8.76576e-05
0.000166701
0.000198103
0.000191501
0.000168762
0.000141392
0.000115273
9.28771e-05
7.57936e-05
6.52372e-05
6.06361e-05
5.91258e-05
5.89042e-05
6.44142e-05
8.43819e-05
0.000119968
0.000133919
4.97174e-05
1.12702e-05
8.74293e-06
3.85624e-05
0.00011141
0.000120835
7.42715e-05
5.20789e-05
5.02559e-05
5.99105e-05
7.57393e-05
9.35016e-05
0.00010907
0.000108227
6.80601e-05
2.5109e-05
5.2675e-06
7.88708e-06
3.95096e-05
0.000111032
0.000173257
0.000187311
0.000172539
0.000147706
0.000121866
9.90058e-05
8.07882e-05
6.82429e-05
6.15681e-05
5.94101e-05
6.03287e-05
6.68706e-05
8.63618e-05
0.000120806
0.000137563
5.25092e-05
1.14451e-05
9.23826e-06
4.2198e-05
0.000124928
8.3153e-05
4.40201e-05
3.80521e-05
4.77736e-05
6.89265e-05
9.85903e-05
0.000127845
0.000145808
0.000143572
0.000110323
5.5509e-05
1.93865e-05
4.64424e-06
1.74611e-05
6.72137e-05
0.000145056
0.000182984
0.000176999
0.000154108
0.000127857
0.000103733
8.41874e-05
7.03766e-05
6.25864e-05
5.99777e-05
6.14946e-05
6.90263e-05
8.88663e-05
0.000123267
0.000142774
5.61612e-05
1.17243e-05
9.87014e-06
5.04309e-05
0.000118232
4.24482e-05
2.69616e-05
3.64668e-05
6.39801e-05
0.000102211
0.000135722
0.00015792
0.000168714
0.000164339
0.000135465
8.43503e-05
3.99455e-05
1.5639e-05
1.35616e-05
4.15028e-05
0.000107197
0.000166097
0.000177038
0.000159613
0.000133708
0.000107812
8.59794e-05
7.03592e-05
6.17148e-05
5.94473e-05
6.24129e-05
7.19004e-05
9.35688e-05
0.000129024
0.000148757
5.88773e-05
1.19558e-05
1.03742e-05
6.83697e-05
6.30657e-05
2.1025e-05
2.12298e-05
4.89488e-05
9.95939e-05
0.000143745
0.000171987
0.000187956
0.000192405
0.000181379
0.000149695
0.00010258
5.93828e-05
3.27646e-05
2.35557e-05
3.8618e-05
8.59426e-05
0.000148049
0.00017441
0.000164487
0.000139853
0.000112277
8.76387e-05
6.94836e-05
5.94164e-05
5.73386e-05
6.235e-05
7.51647e-05
0.000100133
0.000136506
0.000153026
5.95842e-05
1.20533e-05
1.03075e-05
8.82125e-05
3.49983e-05
1.39081e-05
2.52828e-05
8.76662e-05
0.000138869
0.000159587
0.000173261
0.000184089
0.000188234
0.000179267
0.000152662
0.000113673
7.67378e-05
5.20447e-05
4.14802e-05
4.91138e-05
8.20808e-05
0.000134918
0.000169698
0.000168743
0.000147082
0.000118643
9.1259e-05
7.00367e-05
5.76682e-05
5.46368e-05
6.06335e-05
7.65963e-05
0.000105375
0.000142243
0.000154302
5.90843e-05
1.20846e-05
9.84098e-06
8.23117e-05
3.5279e-05
1.37661e-05
2.2691e-05
8.04359e-05
0.000123083
0.000144678
0.000161029
0.000173395
0.000177387
0.000168811
0.000147638
0.000120126
9.4815e-05
7.68372e-05
6.82627e-05
7.24212e-05
9.50917e-05
0.000135605
0.000170312
0.000175769
0.000157193
0.000127974
9.75471e-05
7.26567e-05
5.73236e-05
5.25665e-05
5.836e-05
7.61212e-05
0.000107981
0.000145078
0.000152822
5.78833e-05
1.20867e-05
9.39996e-06
5.77075e-05
6.75692e-05
1.93997e-05
1.25776e-05
3.404e-05
7.9936e-05
0.000113702
0.000134931
0.000150507
0.000158336
0.000155974
0.000145428
0.000132162
0.000120758
0.00011219
0.000105821
0.000104434
0.000114965
0.000140876
0.000170768
0.000182222
0.000168853
0.00014022
0.000106974
7.77918e-05
5.86252e-05
5.14408e-05
5.61843e-05
7.40892e-05
0.000107177
0.000145135
0.000151222
5.66607e-05
1.20631e-05
9.10286e-06
4.5595e-05
9.57062e-05
3.4982e-05
1.04578e-05
1.25815e-05
3.93862e-05
7.86723e-05
0.000106665
0.000126023
0.000141168
0.000153486
0.000163584
0.000170223
0.000170856
0.000164486
0.00015327
0.000142626
0.000139779
0.000149386
0.000167839
0.000180933
0.000175552
0.000151967
0.000118496
8.52189e-05
6.11027e-05
5.03613e-05
5.35004e-05
7.16172e-05
0.000106163
0.000145212
0.000148895
5.44745e-05
1.19321e-05
8.95685e-06
4.41115e-05
9.51288e-05
6.37883e-05
1.80377e-05
7.43173e-06
1.72259e-05
4.74224e-05
8.54289e-05
0.000117711
0.000146313
0.000170491
0.000187206
0.000196066
0.000198205
0.000193968
0.000183619
0.000170174
0.000159998
0.000159122
0.000168361
0.000180016
0.000180917
0.000163954
0.000132583
9.63361e-05
6.65916e-05
5.07481e-05
5.08107e-05
6.87958e-05
0.000106275
0.000145562
0.000144658
5.21108e-05
1.17291e-05
8.86879e-06
4.31064e-05
9.67355e-05
9.93182e-05
4.72523e-05
1.25785e-05
6.46941e-06
1.57325e-05
4.80632e-05
9.61771e-05
0.000132419
0.000154779
0.000170652
0.000183008
0.000191464
0.000194292
0.000190706
0.000182904
0.000175993
0.000175253
0.000182372
0.000192558
0.000195498
0.000182853
0.000154233
0.000116175
7.9971e-05
5.64146e-05
5.00217e-05
6.31704e-05
9.9695e-05
0.00014174
0.000142849
5.17355e-05
1.16982e-05
8.84821e-06
4.07453e-05
9.9517e-05
0.000115639
0.00010935
4.90568e-05
1.01988e-05
3.0145e-06
9.50017e-06
3.6692e-05
8.18444e-05
0.000120005
0.000146846
0.000167146
0.000181743
0.000189748
0.000192401
0.000192687
0.000193836
0.000198283
0.000206261
0.000214345
0.000216099
0.000205804
0.000181595
0.000145755
0.000105486
7.26388e-05
5.64586e-05
6.0292e-05
8.82129e-05
0.000133233
0.00014504
5.38132e-05
1.18975e-05
8.91927e-06
3.92891e-05
0.000102148
0.000114636
9.56144e-05
9.65381e-05
3.82645e-05
5.70514e-06
1.25792e-06
1.08099e-05
4.40417e-05
9.39117e-05
0.000133228
0.000159013
0.00017898
0.000195539
0.000207745
0.000216227
0.000223082
0.000229714
0.000235665
0.000238694
0.000235687
0.00022385
0.000201503
0.000168627
0.00012867
9.0982e-05
6.70724e-05
6.31972e-05
8.39342e-05
0.000129669
0.000151402
5.66941e-05
1.22121e-05
9.15966e-06
3.99755e-05
9.91695e-05
0.000110677
7.67158e-05
3.87024e-05
2.90579e-05
1.15928e-05
1.40092e-06
6.93263e-06
3.72951e-05
9.80913e-05
0.000141381
0.000158128
0.000173527
0.000197718
0.000225192
0.000246628
0.000257961
0.000260565
0.000257385
0.000250393
0.000240021
0.000225356
0.000204389
0.000174948
0.000137739
0.000100417
7.50196e-05
6.96988e-05
9.08515e-05
0.0001394
0.000157661
5.62875e-05
1.22316e-05
9.38691e-06
4.54263e-05
0.000109456
0.000112132
7.76415e-05
3.10829e-05
9.54633e-06
4.47798e-06
1.776e-06
1.01345e-05
5.41559e-05
0.000127718
0.000153736
0.000148916
0.000152588
0.000177668
0.000219567
0.000259908
0.000280717
0.000280322
0.000267127
0.000248732
0.000228784
0.000208041
0.000185783
0.000160773
0.000132703
0.000104951
8.56736e-05
8.42691e-05
0.000109531
0.000156362
0.000160578
5.43505e-05
1.20248e-05
9.20509e-06
5.07731e-05
0.000112688
9.05634e-05
4.74066e-05
1.87407e-05
4.59528e-06
1.05419e-06
3.42171e-06
2.37936e-05
0.000110793
0.000139153
0.000137478
0.000124466
0.00012201
0.000139718
0.00017956
0.00023042
0.000266921
0.000275668
0.000263501
0.000241896
0.000218197
0.000195092
0.000172204
0.000148298
0.000123932
0.000103007
9.18145e-05
9.78761e-05
0.000128202
0.000169601
0.000161803
5.33586e-05
1.1879e-05
8.7539e-06
4.98904e-05
0.000104585
8.61261e-05
4.57697e-05
1.7742e-05
4.83687e-06
1.57701e-06
5.99679e-06
3.55954e-05
0.000124119
0.000120607
0.000113398
0.000102368
9.60245e-05
0.000102787
0.000128247
0.000172983
0.000220935
0.00024663
0.00024488
0.000226297
0.000201622
0.000177531
0.000157108
0.000140655
0.000126801
0.000115218
0.000110226
0.000120264
0.000150372
0.000183171
0.000166109
5.44969e-05
1.17763e-05
8.55858e-06
4.87802e-05
0.000112671
0.000107657
7.66231e-05
4.01779e-05
1.509e-05
2.25727e-06
3.44333e-06
1.56022e-05
7.14765e-05
0.00010945
0.000111302
0.000100288
8.81914e-05
8.29146e-05
9.06773e-05
0.000116867
0.000162716
0.000210568
0.000232767
0.000227426
0.000207242
0.000181944
0.000156564
0.000133986
0.000117091
0.000108858
0.000112265
0.000130873
0.000163742
0.000192243
0.000175671
5.83693e-05
1.20249e-05
8.5397e-06
4.49932e-05
0.000118054
0.000121221
9.37069e-05
6.9221e-05
4.55968e-05
1.96031e-05
3.722e-06
1.88581e-06
1.38641e-05
6.08514e-05
0.000109894
0.000116661
0.000103431
8.59691e-05
7.60281e-05
7.98109e-05
0.000101449
0.000143035
0.000188833
0.000207859
0.000197029
0.00017433
0.000153673
0.000139751
0.000131059
0.000126314
0.000129343
0.000146044
0.000175257
0.000198709
0.000175848
5.91839e-05
1.19694e-05
8.53406e-06
4.08675e-05
0.00011374
0.00011705
7.92496e-05
5.76713e-05
5.52094e-05
5.64315e-05
3.1671e-05
7.50302e-06
1.46336e-07
8.49065e-06
4.23628e-05
9.55289e-05
0.000121008
0.000115505
9.40064e-05
7.68461e-05
7.3929e-05
8.83331e-05
0.000123358
0.000170654
0.000196105
0.000183845
0.000153824
0.000128012
0.000115531
0.000117142
0.000132198
0.000159324
0.000190248
0.00020718
0.000178665
5.9158e-05
1.17877e-05
8.97692e-06
4.09617e-05
0.000116279
9.64896e-05
5.82849e-05
4.43567e-05
4.28078e-05
5.03396e-05
6.04874e-05
3.89178e-05
9.37918e-06
1.59812e-06
1.50849e-05
7.24572e-05
0.000162793
0.000186877
0.000160733
0.000116729
8.54272e-05
7.44575e-05
8.15148e-05
0.000106012
0.000142495
0.000168498
0.000166656
0.000147876
0.000130294
0.000124108
0.000132962
0.000156908
0.000187883
0.000206798
0.000178007
5.78929e-05
1.17499e-05
9.88765e-06
4.97484e-05
0.000118187
5.35812e-05
3.51329e-05
3.68801e-05
4.49773e-05
5.52213e-05
6.70228e-05
6.60001e-05
3.4519e-05
8.1278e-06
2.57932e-06
2.25917e-05
8.73485e-05
0.000198851
0.000220791
0.000165528
0.000113491
8.34926e-05
7.26637e-05
7.75439e-05
9.61076e-05
0.000120879
0.000135147
0.000134055
0.00013145
0.000138644
0.000157879
0.000183876
0.000206425
0.000212938
0.000169857
5.44311e-05
1.13669e-05
1.03739e-05
8.09787e-05
5.28412e-05
2.19454e-05
2.33134e-05
4.28759e-05
6.65753e-05
7.78585e-05
7.85147e-05
6.96324e-05
4.68301e-05
2.23123e-05
1.38453e-05
4.05275e-05
0.000136688
0.0002442
0.000274988
0.000226355
0.000154682
0.000101399
7.23168e-05
6.10736e-05
6.41952e-05
8.16743e-05
0.000108093
0.000123579
0.000121773
0.000120931
0.000133985
0.000161989
0.000192761
0.000207346
0.000177417
5.6543e-05
1.1571e-05
9.707e-06
9.01705e-05
2.45811e-05
1.45057e-05
3.14908e-05
7.37137e-05
8.46732e-05
8.08622e-05
6.97913e-05
5.39353e-05
3.71022e-05
2.44865e-05
2.48748e-05
6.36817e-05
0.000203082
0.00033692
0.000342926
0.000303412
0.000233761
0.000164476
0.000112132
7.92003e-05
6.25984e-05
6.00849e-05
7.24599e-05
9.96722e-05
0.000128874
0.00014518
0.000156218
0.000172226
0.000191295
0.000200798
0.000167896
5.60058e-05
1.18533e-05
8.78816e-06
7.70718e-05
4.86304e-05
2.69022e-05
2.7771e-05
4.29637e-05
6.38993e-05
7.51169e-05
7.87341e-05
7.68704e-05
6.40671e-05
4.41519e-05
3.12285e-05
3.77448e-05
8.01683e-05
0.000160975
0.000221274
0.000243284
0.000232437
0.0001973
0.000151803
0.000109654
7.85404e-05
6.05683e-05
5.55844e-05
6.35765e-05
8.28071e-05
0.00010702
0.000131441
0.00015594
0.000178139
0.000190248
0.000166978
5.69849e-05
1.19722e-05
8.60189e-06
4.24147e-05
9.80543e-05
5.06058e-05
1.78056e-05
1.27163e-05
2.34667e-05
4.59684e-05
5.11183e-05
4.86412e-05
5.56317e-05
7.77599e-05
0.000115934
0.000162277
0.000208626
0.000246053
0.000261655
0.000254913
0.000232277
0.000200318
0.000164349
0.000128755
9.69189e-05
7.2098e-05
5.77761e-05
5.68654e-05
7.07361e-05
9.49103e-05
0.000119118
0.000142334
0.000166335
0.000183502
0.000166074
5.68788e-05
1.20944e-05
9.10233e-06
3.80621e-05
8.51976e-05
6.29437e-05
2.11769e-05
6.00515e-06
9.61929e-06
3.17868e-05
8.14485e-05
7.93535e-05
6.07776e-05
5.7405e-05
7.39112e-05
0.000120299
0.000216973
0.000355089
0.000402078
0.000405914
0.000388274
0.000309713
0.000232901
0.000170527
0.000121506
8.44211e-05
5.96521e-05
4.867e-05
5.35943e-05
7.68608e-05
0.000113102
0.000145331
0.000169906
0.000185515
0.000161994
5.45007e-05
1.20295e-05
9.47323e-06
5.4945e-05
9.2586e-05
4.59952e-05
2.12656e-05
5.04802e-06
2.63248e-06
1.5413e-05
5.34622e-05
0.0001132
0.000108067
8.59955e-05
8.6868e-05
0.000123342
0.000210435
0.000340208
0.000411078
0.000419003
0.000424134
0.000413182
0.000337445
0.000254285
0.000180019
0.000120601
7.86957e-05
5.46154e-05
4.77793e-05
5.91666e-05
9.07326e-05
0.000132569
0.00016499
0.000181434
0.000157322
5.25602e-05
1.18824e-05
9.17085e-06
5.52868e-05
8.19789e-05
2.93989e-05
1.2206e-05
4.95528e-06
3.49326e-06
1.94019e-05
6.41194e-05
0.000111899
0.000116525
9.95423e-05
9.26129e-05
0.000115247
0.000190683
0.000324829
0.000406955
0.000417242
0.000425765
0.000400752
0.000348972
0.000290276
0.000226557
0.000163005
0.000109078
7.20591e-05
5.36993e-05
5.36268e-05
7.38918e-05
0.000114211
0.000154206
0.000173971
0.000151051
5.18374e-05
1.19108e-05
8.83603e-06
4.77954e-05
8.70276e-05
4.3947e-05
2.26136e-05
1.09683e-05
4.57659e-07
5.09531e-06
2.66504e-05
6.45394e-05
8.40403e-05
0.000105439
0.000121396
0.000131603
0.000156012
0.00021075
0.000290935
0.000357011
0.000378371
0.000366105
0.00033881
0.000302772
0.000257255
0.000202844
0.000146385
9.91308e-05
6.88784e-05
5.7224e-05
6.49655e-05
9.57418e-05
0.000141206
0.000169597
0.000152658
5.33697e-05
1.21243e-05
8.8558e-06
4.70024e-05
9.05707e-05
4.17005e-05
2.01171e-05
1.44247e-05
9.91227e-06
2.50257e-06
9.75028e-06
4.44061e-05
0.000133567
0.000118295
0.000108483
0.00013164
0.00017809
0.000222511
0.000257182
0.000290029
0.000319371
0.000334438
0.000330269
0.000310445
0.000279174
0.00023792
0.000188432
0.000137502
9.6035e-05
7.15437e-05
6.61733e-05
8.24375e-05
0.000122562
0.000164293
0.000160406
5.603e-05
1.23679e-05
9.1207e-06
4.93309e-05
0.000101285
5.97257e-05
2.9443e-05
1.61173e-05
1.01668e-05
2.32154e-06
1.00392e-06
1.75027e-06
2.20296e-05
0.000108961
0.000168352
0.000148548
0.000152025
0.000189847
0.00024106
0.000274004
0.000289551
0.000301089
0.000309509
0.000307596
0.000291303
0.000262137
0.000222939
0.000176737
0.000130158
9.35833e-05
7.47523e-05
7.75335e-05
0.000107935
0.000159934
0.000171751
5.93533e-05
1.26274e-05
8.88702e-06
5.01154e-05
9.10091e-05
4.37731e-05
2.69962e-05
2.545e-05
2.37407e-05
1.59307e-05
7.73998e-08
1.08087e-06
8.5143e-07
1.41794e-05
7.84523e-05
0.000225362
0.000194178
0.000171609
0.000190698
0.000238004
0.000276422
0.000286867
0.00028586
0.000285877
0.000283524
0.000269377
0.000239341
0.000196545
0.000148812
0.000107341
8.26496e-05
8.12974e-05
0.000111295
0.000169872
0.000183832
6.08395e-05
1.27056e-05
8.6018e-06
4.07107e-05
9.25935e-05
7.23169e-05
3.09533e-05
1.66212e-05
1.71707e-05
1.85733e-05
9.68796e-06
2.30164e-06
3.90491e-07
1.07124e-06
7.14808e-06
5.50004e-05
0.000254954
0.00027137
0.000213854
0.000198562
0.000225739
0.000263874
0.000273084
0.000258844
0.000243759
0.000232988
0.000216354
0.000185121
0.000144999
0.000110463
9.24433e-05
9.83315e-05
0.000137085
0.000193271
0.000186111
5.8213e-05
1.24014e-05
8.9009e-06
5.41226e-05
0.000105338
6.60006e-05
4.52239e-05
3.23132e-05
2.50152e-05
2.61516e-05
2.46412e-05
8.53197e-06
3.60323e-07
3.99149e-07
2.03144e-06
3.2214e-06
3.42358e-05
0.000166221
0.000314064
0.000234704
0.000184571
0.000187851
0.000223122
0.000242625
0.000223835
0.000194229
0.000172143
0.0001542
0.000133773
0.0001157
0.000111026
0.000129774
0.000174348
0.000210521
0.000171808
5.2389e-05
1.16837e-05
8.50629e-06
4.12699e-05
9.9084e-05
7.22898e-05
3.5537e-05
2.29695e-05
2.21785e-05
2.5179e-05
2.82324e-05
2.4209e-05
7.57117e-06
5.81603e-07
1.68218e-06
2.00175e-06
2.79326e-06
1.61359e-05
8.63443e-05
0.000287264
0.000252682
0.000173559
0.000147478
0.000166018
0.000196647
0.000191611
0.00016213
0.000138468
0.000126816
0.000124747
0.000135203
0.000163795
0.000201054
0.000214309
0.000155727
4.74302e-05
1.09466e-05
8.59466e-06
4.81641e-05
0.000108858
8.34257e-05
5.59713e-05
3.76268e-05
2.86683e-05
2.90044e-05
3.43949e-05
3.66283e-05
2.89338e-05
9.77161e-06
4.31576e-06
9.66466e-07
8.13215e-08
7.52104e-07
6.34653e-06
4.19431e-05
0.000174162
0.00025942
0.000173291
0.000121484
0.000119326
0.000146853
0.000166006
0.000157275
0.000146308
0.000149474
0.000169307
0.000200405
0.000224596
0.000219774
0.00014915
4.60257e-05
1.0512e-05
8.60214e-06
4.43176e-05
0.000103491
6.57087e-05
3.85263e-05
3.1556e-05
3.19965e-05
3.37169e-05
3.86504e-05
4.46775e-05
4.49456e-05
3.53867e-05
1.49678e-05
4.06059e-06
1.7477e-06
1.84508e-06
1.08377e-06
2.60512e-06
1.96832e-05
8.25646e-05
0.000230788
0.00020193
0.000126295
0.000101383
0.000114221
0.000141821
0.000158235
0.000168856
0.000187276
0.000209916
0.000221771
0.000208316
0.00013871
4.40966e-05
1.01824e-05
8.6374e-06
4.71476e-05
0.000102495
7.15906e-05
4.65509e-05
3.76327e-05
3.68618e-05
3.96388e-05
4.50421e-05
5.24177e-05
5.75164e-05
5.60035e-05
4.63564e-05
2.6366e-05
4.14564e-06
2.49968e-06
1.83898e-06
2.21908e-06
7.89955e-07
8.34719e-06
3.14883e-05
0.000108855
0.000211442
0.000163237
0.000117503
0.000114663
0.000139025
0.000166683
0.000184994
0.000198596
0.000204988
0.000192113
0.000127782
4.11069e-05
9.69216e-06
8.74994e-06
4.82629e-05
9.80209e-05
6.06463e-05
3.82489e-05
3.47712e-05
4.06869e-05
4.7868e-05
5.41363e-05
6.12165e-05
6.80242e-05
7.13361e-05
6.87884e-05
5.97952e-05
4.35016e-05
1.89212e-05
2.26474e-07
1.93635e-07
2.60366e-07
1.81209e-06
3.20792e-06
1.15548e-05
4.01299e-05
0.000124166
0.000174301
0.000139034
0.000132487
0.000156578
0.00018766
0.000202529
0.000203259
0.000187101
0.000124681
4.08129e-05
9.62465e-06
8.69298e-06
4.89676e-05
9.85387e-05
7.31791e-05
4.81667e-05
3.81667e-05
3.95225e-05
4.71617e-05
5.65875e-05
6.59965e-05
7.4885e-05
8.19437e-05
8.53955e-05
8.3768e-05
7.627e-05
6.2932e-05
4.2925e-05
1.72331e-05
7.49545e-06
3.12004e-06
2.54143e-06
1.52018e-06
1.88159e-06
1.44482e-05
6.58092e-05
0.000155619
0.000144544
0.000135179
0.000154217
0.00018386
0.000193736
0.000178741
0.000127998
4.55857e-05
1.03323e-05
8.55917e-06
4.69502e-05
0.000102622
8.84955e-05
6.15824e-05
4.4191e-05
3.8559e-05
4.13667e-05
4.99816e-05
6.21602e-05
7.5546e-05
8.79599e-05
9.77033e-05
0.000103486
0.000104154
9.86324e-05
8.63931e-05
6.77368e-05
4.26207e-05
1.54388e-05
5.06015e-06
1.87378e-07
1.7059e-06
2.51318e-06
4.61287e-06
4.11961e-05
0.000138039
0.000153675
0.000141292
0.000146358
0.000161949
0.000165536
0.000131523
4.75482e-05
1.07754e-05
8.40524e-06
4.40758e-05
0.000105377
0.000107615
8.76618e-05
6.19988e-05
4.48018e-05
3.80944e-05
3.96435e-05
4.85093e-05
6.3712e-05
8.23123e-05
0.000100353
0.00011501
0.000124822
0.000128718
0.000125444
0.000113899
9.40491e-05
6.71522e-05
3.56367e-05
9.40303e-06
1.64129e-06
1.66437e-06
9.60304e-07
2.94614e-06
3.36524e-05
0.00013265
0.000157046
0.000153738
0.00015028
0.000154518
0.000128329
4.2035e-05
1.02322e-05
8.36329e-06
4.23964e-05
0.000107811
0.000113555
9.7804e-05
8.0975e-05
6.40049e-05
4.88103e-05
4.0441e-05
4.06654e-05
5.00199e-05
6.80697e-05
9.14586e-05
0.000114793
0.000133884
0.000146624
0.000151793
0.000148165
0.000134619
0.00011139
8.13274e-05
4.92982e-05
2.10364e-05
3.68797e-06
2.66581e-06
1.27202e-06
2.28231e-06
2.422e-05
0.000109694
0.000154394
0.000158384
0.000154844
0.000121478
4.07536e-05
1.01252e-05
8.50096e-06
4.25057e-05
0.000108909
0.000107037
8.51768e-05
7.49204e-05
7.41257e-05
6.85579e-05
5.54509e-05
4.65711e-05
4.78419e-05
6.01038e-05
8.18915e-05
0.000108657
0.000134509
0.000155099
0.000167976
0.000171577
0.000164552
0.00014578
0.000115627
7.93541e-05
4.7195e-05
2.50304e-05
9.65226e-06
1.70141e-07
2.30823e-07
2.90908e-06
1.84059e-05
7.86226e-05
0.000131821
0.0001328
0.000107925
4.12779e-05
1.03985e-05
8.76524e-06
4.45262e-05
0.000107418
9.31144e-05
6.64285e-05
5.78834e-05
6.47429e-05
7.5529e-05
7.46547e-05
6.41849e-05
5.93203e-05
6.60972e-05
8.36372e-05
0.000107899
0.000133675
0.000156649
0.000173883
0.00018309
0.000182091
0.000168559
0.000140345
9.94193e-05
5.84706e-05
3.34359e-05
2.41992e-05
1.64919e-05
5.0473e-06
1.17846e-06
9.54372e-07
1.71065e-05
6.70048e-05
0.000112189
0.00010755
4.23658e-05
1.09558e-05
8.96458e-06
4.73523e-05
0.000103767
7.94297e-05
5.41834e-05
4.74324e-05
5.49432e-05
6.98945e-05
8.12708e-05
8.20969e-05
7.90898e-05
8.20697e-05
9.32959e-05
0.000109771
0.0001278
0.000144749
0.000158527
0.000167036
0.000168267
0.0001609
0.000143085
0.000112356
7.22818e-05
3.8871e-05
2.42604e-05
2.38061e-05
2.22002e-05
8.36152e-06
2.06736e-06
2.59887e-06
2.70772e-05
8.24926e-05
0.000105895
4.13644e-05
1.16461e-05
8.95892e-06
4.90783e-05
9.94695e-05
7.19815e-05
4.98087e-05
4.36388e-05
4.87274e-05
6.05237e-05
7.43124e-05
8.60989e-05
9.37849e-05
9.8665e-05
0.000103637
0.000109714
0.00011647
0.000123528
0.000130244
0.000135077
0.00013642
0.000134229
0.000129605
0.000121959
0.000105875
7.61351e-05
4.37984e-05
2.64389e-05
2.26773e-05
1.89199e-05
6.25739e-06
7.00586e-07
1.2353e-05
5.81394e-05
0.000103539
4.12781e-05
1.22659e-05
8.74956e-06
4.80022e-05
9.81558e-05
7.41648e-05
5.21705e-05
4.34661e-05
4.44794e-05
5.1685e-05
6.26542e-05
7.62792e-05
9.07532e-05
0.000102412
0.0001088
0.000110857
0.000111666
0.0001146
0.000121231
0.000130479
0.000140068
0.000148204
0.000153032
0.000151372
0.000139151
0.000114567
8.0373e-05
4.82379e-05
2.98169e-05
2.27217e-05
1.30838e-05
2.74974e-06
5.31044e-06
3.4167e-05
0.000105166
4.16794e-05
1.23876e-05
8.49478e-06
4.59752e-05
9.88062e-05
8.10217e-05
5.76941e-05
4.50708e-05
4.24527e-05
4.73167e-05
5.71975e-05
6.99225e-05
8.38586e-05
9.6324e-05
0.000102987
0.000101175
9.6835e-05
9.97992e-05
0.000112551
0.00013034
0.000146269
0.00015809
0.00016831
0.000177059
0.000176199
0.000154818
0.000113536
6.87626e-05
3.78548e-05
2.23725e-05
1.28146e-05
4.44114e-06
6.24364e-06
4.35789e-05
0.000112602
3.57938e-05
1.14905e-05
8.31843e-06
4.52342e-05
9.92739e-05
8.31411e-05
6.09493e-05
4.79517e-05
4.31138e-05
4.51059e-05
5.29591e-05
6.4099e-05
7.51126e-05
8.17475e-05
7.6745e-05
6.34539e-05
5.91913e-05
7.05324e-05
0.000101871
0.000160111
0.000239979
0.000309728
0.000337482
0.000318397
0.000268232
0.000202872
0.000134254
7.58733e-05
3.76566e-05
1.82967e-05
1.00346e-05
6.62846e-06
1.2583e-05
6.87429e-05
8.62235e-05
2.86182e-05
1.00196e-05
8.26748e-06
4.61627e-05
9.84043e-05
7.77043e-05
5.87132e-05
5.09395e-05
4.77206e-05
4.62065e-05
4.775e-05
5.2188e-05
5.64477e-05
5.61678e-05
4.80415e-05
4.03413e-05
4.51846e-05
6.81703e-05
0.000120172
0.000205193
0.000285229
0.000326808
0.000331532
0.000311325
0.000273174
0.000220137
0.000157145
9.55052e-05
4.9058e-05
2.25201e-05
1.09173e-05
8.54973e-06
1.84043e-05
7.73362e-05
7.01848e-05
2.59646e-05
9.31089e-06
8.28712e-06
4.77849e-05
9.5333e-05
6.93816e-05
5.26268e-05
5.09004e-05
5.44814e-05
5.42463e-05
5.12609e-05
5.0063e-05
5.08327e-05
5.00921e-05
4.35361e-05
3.05482e-05
2.48777e-05
3.47884e-05
6.41854e-05
0.000128699
0.000224323
0.000295139
0.00032134
0.000314306
0.000285329
0.000240799
0.000185646
0.000127158
7.57455e-05
3.96668e-05
1.97617e-05
1.24151e-05
1.87129e-05
6.20704e-05
6.59416e-05
2.59944e-05
9.1337e-06
8.28729e-06
4.9145e-05
9.2022e-05
6.34321e-05
4.68412e-05
4.68308e-05
5.64148e-05
6.40121e-05
6.2426e-05
5.70957e-05
5.38039e-05
5.23845e-05
4.86983e-05
3.81271e-05
2.31335e-05
1.93133e-05
3.21521e-05
6.74216e-05
0.000145933
0.00024421
0.000292682
0.000297905
0.00028169
0.000251127
0.000206491
0.000150781
9.56856e-05
5.49124e-05
3.18513e-05
2.27182e-05
2.84238e-05
6.64153e-05
8.11149e-05
3.08304e-05
9.37008e-06
8.22532e-06
4.92047e-05
9.09783e-05
6.25784e-05
4.52565e-05
4.33368e-05
5.25989e-05
6.6666e-05
7.42457e-05
7.12745e-05
6.43755e-05
5.9591e-05
5.67943e-05
5.15041e-05
3.79185e-05
1.88814e-05
1.33028e-05
2.53584e-05
5.87849e-05
0.000137114
0.000238915
0.000273231
0.000260699
0.000235813
0.000208056
0.000173907
0.000128216
7.91813e-05
4.47532e-05
3.03837e-05
3.63366e-05
7.54512e-05
9.79925e-05
3.46441e-05
9.10951e-06
8.16568e-06
4.86126e-05
9.08383e-05
6.18735e-05
4.51758e-05
4.18718e-05
4.74199e-05
6.08104e-05
7.71733e-05
8.66547e-05
8.50239e-05
7.75312e-05
7.07711e-05
6.59991e-05
6.00946e-05
4.72136e-05
2.45476e-05
1.08522e-05
1.71229e-05
4.1817e-05
9.99632e-05
0.000200938
0.000255158
0.000240917
0.000204176
0.000168825
0.00014027
0.000112953
8.02784e-05
5.43245e-05
5.08217e-05
8.2222e-05
0.000128754
4.46876e-05
9.4835e-06
8.19781e-06
4.85145e-05
8.84108e-05
5.58847e-05
4.24626e-05
4.25195e-05
4.72409e-05
5.63678e-05
7.22354e-05
9.11328e-05
0.000104367
0.000106471
9.94733e-05
8.93876e-05
7.96908e-05
6.97726e-05
5.61931e-05
3.48994e-05
1.56275e-05
1.51877e-05
3.32046e-05
7.48992e-05
0.000162017
0.000261832
0.000270661
0.000213372
0.000141874
9.23983e-05
6.8463e-05
5.95723e-05
6.58051e-05
0.00010109
0.000142051
4.78439e-05
9.50879e-06
8.35908e-06
4.97439e-05
8.21307e-05
4.5683e-05
3.57154e-05
4.15176e-05
5.17129e-05
5.98018e-05
6.94706e-05
8.40904e-05
0.000100767
0.000113124
0.000115957
0.000108622
9.5998e-05
8.33058e-05
7.21255e-05
6.04129e-05
4.40381e-05
2.4504e-05
1.55713e-05
2.28841e-05
4.32208e-05
7.75316e-05
0.000130101
0.000179546
0.000170319
0.000118659
8.10784e-05
7.13793e-05
8.80821e-05
0.000128645
0.000132581
4.07568e-05
8.6588e-06
8.46728e-06
5.10907e-05
7.4556e-05
3.79284e-05
2.94698e-05
3.77534e-05
5.58192e-05
7.23256e-05
8.13198e-05
8.64647e-05
9.13854e-05
9.62043e-05
9.90476e-05
9.80576e-05
9.36766e-05
8.86907e-05
8.5213e-05
8.29666e-05
8.02357e-05
7.46082e-05
6.21231e-05
4.43297e-05
3.12031e-05
2.87808e-05
3.63482e-05
5.24454e-05
7.60304e-05
9.5039e-05
9.39591e-05
9.10577e-05
0.000107003
0.000139244
0.000138187
4.3302e-05
8.38592e-06
8.33854e-06
5.04095e-05
7.14683e-05
3.60387e-05
2.69002e-05
3.38371e-05
5.32032e-05
7.74285e-05
9.6895e-05
0.000108345
0.000112652
0.00011147
0.000105659
9.63431e-05
8.84092e-05
8.6587e-05
9.144e-05
0.000100554
0.00010953
0.000113023
0.000108082
9.57509e-05
7.88141e-05
6.01485e-05
4.41825e-05
3.65117e-05
4.12688e-05
5.87502e-05
7.9945e-05
9.07031e-05
0.000100574
0.000122008
0.00013713
5.0756e-05
8.95095e-06
8.12158e-06
4.89601e-05
7.3734e-05
3.7792e-05
2.63475e-05
3.13362e-05
5.10839e-05
7.76672e-05
9.82936e-05
0.000112867
0.000123823
0.000124822
0.000101899
7.49297e-05
6.69465e-05
7.50154e-05
9.71671e-05
0.000134964
0.000184901
0.000227231
0.000238749
0.000215972
0.000173004
0.000124638
8.02024e-05
4.6679e-05
2.9486e-05
3.03542e-05
4.79421e-05
7.85181e-05
0.00011101
0.000137388
0.000136808
4.60913e-05
9.14235e-06
8.07702e-06
5.06742e-05
7.27102e-05
3.65794e-05
2.45571e-05
2.75028e-05
4.59185e-05
7.36055e-05
9.10904e-05
9.87444e-05
0.000101465
8.78686e-05
5.76553e-05
4.67826e-05
5.94397e-05
0.000102048
0.000184834
0.00027106
0.000313098
0.000313456
0.000292095
0.00025992
0.000219737
0.000172437
0.000121289
7.43848e-05
4.1951e-05
2.89886e-05
3.52501e-05
6.23559e-05
0.000107671
0.000137985
0.000129718
4.32455e-05
9.22923e-06
8.12007e-06
5.59476e-05
6.11763e-05
3.05493e-05
2.31202e-05
2.6934e-05
4.43249e-05
7.27495e-05
9.16562e-05
9.822e-05
9.80673e-05
9.17724e-05
6.8378e-05
4.20068e-05
3.90037e-05
5.84167e-05
0.000109861
0.000197789
0.000275911
0.000314472
0.000319546
0.00030288
0.000271331
0.000227694
0.000174125
0.000117079
6.91835e-05
4.09677e-05
3.34149e-05
4.37607e-05
7.30293e-05
0.00011597
0.000130149
4.70235e-05
9.99483e-06
8.09666e-06
6.1324e-05
4.75886e-05
2.39276e-05
2.2067e-05
3.01019e-05
4.82127e-05
7.5727e-05
9.64114e-05
0.000106274
0.000108014
0.000102275
8.45658e-05
5.23891e-05
3.2273e-05
3.49468e-05
6.01561e-05
0.000125269
0.000233563
0.000310439
0.000330665
0.000318727
0.000291202
0.000253192
0.000205496
0.00015029
9.63622e-05
5.69437e-05
3.85207e-05
3.98429e-05
6.1248e-05
0.00010437
0.000126496
4.57514e-05
9.84558e-06
8.00324e-06
6.2451e-05
4.15231e-05
2.02469e-05
2.07066e-05
3.35646e-05
5.25363e-05
7.64894e-05
9.79133e-05
0.000112019
0.000119196
0.000119673
0.000112489
9.09505e-05
5.1509e-05
2.75463e-05
2.89736e-05
5.13531e-05
0.000110135
0.000221148
0.000309191
0.00032773
0.000310184
0.000278517
0.000237103
0.000185033
0.00012577
7.38413e-05
4.33331e-05
3.59325e-05
5.25754e-05
0.000100502
0.000134527
4.78872e-05
9.87324e-06
7.87723e-06
6.04823e-05
4.32921e-05
1.94214e-05
1.83227e-05
3.33554e-05
5.63608e-05
7.79684e-05
9.82333e-05
0.000115237
0.000127502
0.000134203
0.000134287
0.000126235
0.000103643
6.08144e-05
2.85072e-05
2.39339e-05
3.86524e-05
7.7758e-05
0.000159996
0.000256525
0.00029219
0.000280504
0.000252867
0.00022039
0.000181429
0.000129993
7.60223e-05
4.5018e-05
4.20324e-05
7.07588e-05
0.000124211
4.8686e-05
9.83941e-06
7.82905e-06
5.87605e-05
5.12902e-05
2.11886e-05
1.63766e-05
2.80845e-05
5.59201e-05
8.23576e-05
0.000103521
0.000122924
0.000140384
0.000154382
0.000163112
0.00016448
0.000156054
0.000130988
8.15217e-05
3.65154e-05
2.25317e-05
3.01481e-05
5.64026e-05
0.000116168
0.0002191
0.000286538
0.000277318
0.000230105
0.000171548
0.000119172
7.83474e-05
5.16639e-05
4.73271e-05
7.63076e-05
0.000137722
5.51799e-05
1.05059e-05
7.88213e-06
6.29463e-05
4.9701e-05
2.09051e-05
1.5589e-05
2.47888e-05
5.5528e-05
9.08211e-05
0.000115164
0.000135101
0.00015402
0.000171539
0.00018554
0.000192759
0.000189828
0.000174812
0.000145809
9.92868e-05
5.01853e-05
2.61186e-05
2.56286e-05
4.07933e-05
7.49901e-05
0.000143966
0.000229204
0.000236797
0.000169637
9.58219e-05
5.97306e-05
5.08275e-05
6.40421e-05
0.000112519
0.000134069
4.01854e-05
8.8363e-06
7.91972e-06
7.14899e-05
3.84664e-05
1.72836e-05
1.57014e-05
2.67076e-05
5.71917e-05
9.40263e-05
0.000121915
0.000144737
0.000165319
0.000184064
0.000199996
0.000210781
0.000212987
0.000203542
0.000182968
0.00015491
0.000118862
7.4429e-05
3.90966e-05
2.58759e-05
2.94476e-05
4.50243e-05
7.41711e-05
0.000117036
0.000138688
0.000104672
6.90362e-05
6.15345e-05
8.50064e-05
0.000136837
0.000126268
3.51208e-05
7.93865e-06
7.86197e-06
7.52224e-05
3.17447e-05
1.38908e-05
1.48596e-05
3.23521e-05
6.24206e-05
9.15155e-05
0.00011653
0.000139396
0.000160574
0.000179184
0.000193488
0.000201106
0.000199852
0.000189584
0.000173138
0.00015431
0.000135072
0.000115013
9.03913e-05
6.08432e-05
3.78049e-05
2.89808e-05
3.22059e-05
4.43773e-05
6.52602e-05
8.95324e-05
9.36465e-05
8.88057e-05
0.000106531
0.000137798
0.000103734
2.98422e-05
6.73946e-06
7.83513e-06
7.12198e-05
3.6706e-05
1.46869e-05
1.276e-05
2.85372e-05
6.02686e-05
8.68032e-05
0.000108111
0.000127683
0.000145715
0.000161028
0.000171798
0.000176178
0.000173596
0.000165982
0.000156893
0.000148963
0.000142542
0.000136076
0.000126239
0.000108855
8.27356e-05
5.46409e-05
3.51175e-05
2.72354e-05
2.84325e-05
3.75279e-05
6.0548e-05
0.000102988
0.000141498
0.000152505
0.000124343
4.03744e-05
8.27871e-06
7.91082e-06
6.83594e-05
4.69348e-05
1.74767e-05
1.17525e-05
2.03815e-05
4.99156e-05
8.24754e-05
0.000105413
0.000125079
0.000142899
0.000157332
0.000165915
0.00016657
0.000159982
0.000150636
0.000143375
0.000140016
0.000139726
0.000140895
0.000142146
0.000141901
0.00013733
0.000123955
9.84544e-05
6.65347e-05
4.10611e-05
2.77693e-05
2.67432e-05
4.1661e-05
7.99996e-05
0.000125708
0.000127668
4.96212e-05
9.06036e-06
7.93626e-06
7.07581e-05
4.83013e-05
1.86179e-05
1.18884e-05
1.77788e-05
4.21982e-05
7.34319e-05
9.62379e-05
0.000115508
0.00013302
0.000146751
0.000152862
0.00014818
0.000136501
0.00012791
0.000128481
0.000137375
0.000149501
0.000158087
0.000157981
0.00014903
0.000135413
0.000121521
0.000108922
9.57771e-05
7.81471e-05
5.48672e-05
3.44081e-05
3.2617e-05
5.16219e-05
9.10965e-05
0.000126535
5.78323e-05
1.00707e-05
7.85275e-06
7.12332e-05
5.13559e-05
2.09922e-05
1.29646e-05
1.70138e-05
3.77279e-05
6.80125e-05
9.15425e-05
0.000110812
0.000127906
0.000140705
0.000144066
0.000133978
0.00011798
0.00010944
0.000113429
0.000128697
0.000151667
0.000177423
0.000200416
0.000215327
0.000218079
0.000207575
0.000186225
0.000157006
0.000119464
7.292e-05
3.19771e-05
1.83714e-05
2.68468e-05
6.10743e-05
0.000119531
5.72088e-05
1.03458e-05
7.78744e-06
6.52801e-05
7.39769e-05
3.3648e-05
1.77904e-05
1.49421e-05
2.36604e-05
4.98823e-05
8.0301e-05
0.00010278
0.000121752
0.000133766
0.000130202
0.000111548
9.52718e-05
9.23075e-05
0.000102197
0.000120208
0.00013851
0.000149632
0.00015209
0.000150322
0.000149761
0.000152931
0.00015773
0.000157282
0.00014188
0.00010385
5.42367e-05
2.87376e-05
3.20507e-05
6.9013e-05
0.000128512
4.90001e-05
1.0283e-05
7.78242e-06
6.17172e-05
9.60357e-05
6.09075e-05
3.04834e-05
1.82425e-05
1.63238e-05
2.54266e-05
5.54383e-05
8.56406e-05
0.000106626
0.000126809
0.00013476
0.000116716
9.13324e-05
8.1361e-05
8.85691e-05
0.000110714
0.000144002
0.000179523
0.000205658
0.000216294
0.000213432
0.000202931
0.000189365
0.000172281
0.000145146
0.000101179
5.24061e-05
2.62538e-05
2.50534e-05
5.25458e-05
0.000124932
5.18077e-05
1.05091e-05
7.79003e-06
6.51243e-05
9.52096e-05
7.19112e-05
4.69569e-05
2.72318e-05
1.81662e-05
1.76125e-05
3.07825e-05
6.55724e-05
8.71495e-05
0.000106268
0.000113797
9.37529e-05
7.24121e-05
6.62895e-05
7.32764e-05
8.95692e-05
0.000109504
0.000125928
0.000135741
0.000142368
0.000151126
0.00016356
0.000174827
0.000175515
0.000157292
0.000117856
7.00573e-05
4.0392e-05
3.91107e-05
7.69625e-05
0.000137279
4.4598e-05
1.00246e-05
7.81958e-06
7.12749e-05
7.95003e-05
5.87969e-05
5.5197e-05
4.3383e-05
2.66959e-05
1.8732e-05
1.98445e-05
3.94464e-05
7.69512e-05
9.90002e-05
0.000118863
0.000117956
9.08417e-05
7.34755e-05
7.49509e-05
9.13754e-05
0.000117693
0.00014461
0.000160995
0.000163205
0.000157541
0.000153
0.000153465
0.000155104
0.000147189
0.00011816
7.31799e-05
4.12288e-05
3.56615e-05
6.33338e-05
0.000138332
5.01443e-05
9.9785e-06
7.79356e-06
7.54781e-05
5.64431e-05
3.9255e-05
4.34396e-05
4.7296e-05
3.47058e-05
2.27351e-05
2.03549e-05
3.60477e-05
8.11004e-05
0.000105049
0.000114096
9.17821e-05
6.42753e-05
5.33067e-05
5.55053e-05
6.73623e-05
8.54364e-05
0.000104437
0.000121056
0.000136589
0.00015158
0.000162921
0.000166954
0.000161601
0.000145167
0.000116913
8.29746e-05
5.91142e-05
6.00992e-05
0.000102911
0.000148125
4.48257e-05
9.74473e-06
7.6114e-06
7.53937e-05
4.07569e-05
2.9108e-05
3.86482e-05
4.96016e-05
4.1949e-05
2.75685e-05
2.10703e-05
2.85995e-05
7.56681e-05
0.00011298
0.00013655
0.000150475
0.000130308
9.28877e-05
7.3194e-05
7.1218e-05
7.87529e-05
8.78292e-05
9.42612e-05
0.000100917
0.000112596
0.000130377
0.000148835
0.000156904
0.000144953
0.00011392
7.97213e-05
6.06021e-05
6.64338e-05
0.000111663
0.000155895
4.74285e-05
9.31433e-06
7.25165e-06
7.51592e-05
3.20837e-05
2.0144e-05
2.41358e-05
2.93929e-05
2.70705e-05
2.24295e-05
2.52826e-05
5.77221e-05
0.000103851
0.000118755
0.000115214
8.58249e-05
6.11793e-05
5.23235e-05
5.45056e-05
6.51757e-05
8.13305e-05
9.63763e-05
0.000106329
0.000114839
0.000124671
0.000132728
0.00013498
0.000131233
0.000122922
0.000110878
9.85413e-05
9.58789e-05
0.000116878
0.000161584
0.00014974
4.33661e-05
9.35324e-06
7.18784e-06
6.81952e-05
5.62673e-05
2.47605e-05
1.63723e-05
1.69051e-05
2.03421e-05
2.25779e-05
2.91894e-05
6.09359e-05
0.000103576
0.000125971
0.000151834
0.000165139
0.000133487
8.06027e-05
5.50433e-05
4.9486e-05
5.37948e-05
6.21173e-05
7.08516e-05
8.22739e-05
0.000102427
0.000130996
0.000151236
0.000147438
0.000127157
0.000106848
9.73927e-05
0.00010502
0.000135047
0.000171019
0.000134175
3.75179e-05
7.83722e-06
7.70965e-06
6.30992e-05
0.000101992
4.30541e-05
1.72603e-05
8.80445e-06
7.2945e-06
1.54201e-05
4.58243e-05
7.35303e-05
9.55905e-05
0.000112246
0.000110949
8.92258e-05
6.89727e-05
6.00071e-05
5.90839e-05
6.25925e-05
6.87769e-05
7.51739e-05
7.81386e-05
7.91446e-05
8.40651e-05
9.5068e-05
0.00010761
0.000115661
0.000119475
0.000123656
0.000133249
0.000151665
0.000173913
0.000179777
0.000128639
3.78027e-05
8.53075e-06
8.39441e-06
6.24447e-05
0.000119024
8.32975e-05
3.71947e-05
1.63504e-05
8.69302e-06
9.39734e-06
2.72078e-05
5.12484e-05
6.97549e-05
9.75783e-05
0.000130566
0.000155095
0.000140228
9.11564e-05
5.88998e-05
4.57753e-05
4.32849e-05
4.79293e-05
5.73024e-05
6.76756e-05
7.87248e-05
9.59692e-05
0.000121826
0.000143326
0.000144607
0.000135106
0.000132588
0.00014498
0.000167563
0.00017876
0.000133438
3.80352e-05
7.64093e-06
8.82146e-06
7.77373e-05
9.21454e-05
5.65616e-05
4.34427e-05
2.3764e-05
1.04476e-05
5.16095e-06
1.38721e-05
3.36482e-05
4.93389e-05
9.34926e-05
0.000145274
0.000140708
0.000117613
0.000109898
0.000108249
9.65919e-05
7.62363e-05
6.18741e-05
5.73618e-05
5.87159e-05
6.17102e-05
6.6242e-05
7.50473e-05
8.9771e-05
0.000109135
0.000129779
0.000150316
0.000170605
0.000184565
0.000178807
0.000121784
3.70242e-05
8.34641e-06
8.72994e-06
0.000110534
3.75403e-05
1.50096e-05
1.64483e-05
1.79275e-05
1.16694e-05
9.69899e-06
3.38522e-05
5.03987e-05
7.40038e-05
0.000109834
0.000132517
0.0001257
9.8728e-05
7.56006e-05
6.41438e-05
5.89065e-05
5.53813e-05
5.31751e-05
5.41051e-05
5.90783e-05
6.60983e-05
7.29435e-05
8.20857e-05
9.88496e-05
0.000124686
0.000151237
0.000168514
0.000177502
0.000181222
0.000176616
0.000146049
4.96156e-05
9.1136e-06
8.41776e-06
8.72174e-05
1.96319e-05
3.38488e-06
3.94576e-06
1.03383e-05
1.29757e-05
2.63497e-05
4.48492e-05
6.01273e-05
7.62329e-05
9.48707e-05
0.000116746
0.000143138
0.000171007
0.000191883
0.000191027
0.000152761
0.000100376
6.66165e-05
5.31509e-05
5.27166e-05
5.85817e-05
6.26701e-05
6.1758e-05
6.1234e-05
6.6787e-05
8.10157e-05
0.000104192
0.000133505
0.000162321
0.000178432
0.000140659
4.18225e-05
9.02875e-06
8.73224e-06
9.82243e-05
3.263e-05
1.43578e-05
1.06521e-05
1.19236e-05
1.52566e-05
2.38603e-05
2.91339e-05
3.20404e-05
3.57284e-05
4.21194e-05
5.17552e-05
6.24774e-05
6.9453e-05
7.00091e-05
6.67574e-05
6.29266e-05
5.99357e-05
5.76724e-05
5.3643e-05
4.94078e-05
5.04642e-05
6.02905e-05
8.02908e-05
0.000108979
0.000141369
0.000169986
0.000187165
0.000191439
0.00018509
0.00016452
0.000110257
3.90108e-05
8.2195e-06
9.30379e-06
7.79172e-05
0.000128148
9.37739e-05
4.92776e-05
3.05678e-05
2.21022e-05
1.7146e-05
1.59604e-05
2.04202e-05
3.13316e-05
4.15333e-05
4.41175e-05
4.03725e-05
3.93945e-05
4.80964e-05
6.36218e-05
7.36405e-05
7.34704e-05
7.19282e-05
6.89899e-05
5.78889e-05
4.00903e-05
3.08628e-05
3.04858e-05
3.54293e-05
4.43001e-05
5.78966e-05
7.82965e-05
0.00010646
0.000138122
0.000163946
0.000167775
5.27536e-05
1.02105e-05
9.36978e-06
9.9636e-05
0.000111601
7.72837e-05
6.2562e-05
4.66117e-05
3.1383e-05
2.18851e-05
1.8876e-05
2.34671e-05
3.05957e-05
3.83621e-05
5.37666e-05
7.90678e-05
0.000100795
0.000103581
9.41308e-05
8.12306e-05
7.08718e-05
6.88175e-05
8.18979e-05
0.000115452
0.000154558
0.000168649
0.000165873
0.000165682
0.000173453
0.00018316
0.000188237
0.000186389
0.000176483
0.000148575
8.88704e-05
3.33896e-05
8.11238e-06
9.17506e-06
9.90725e-05
0.00010019
6.6179e-05
5.99599e-05
6.19489e-05
5.3343e-05
3.90459e-05
2.92776e-05
2.44804e-05
2.31618e-05
2.55125e-05
3.91401e-05
9.98577e-05
0.000119631
4.1896e-05
2.49926e-05
2.8681e-05
6.71596e-05
0.000135912
7.78317e-05
5.30018e-05
4.70147e-05
4.57961e-05
4.4248e-05
4.40894e-05
4.85186e-05
5.91393e-05
7.75726e-05
0.000106786
0.000147679
0.000183683
0.000143875
3.63374e-05
8.3806e-06
8.75126e-06
0.000122339
7.43427e-05
4.50094e-05
3.15942e-05
2.09311e-05
1.50492e-05
2.0232e-05
3.98892e-05
6.258e-05
7.12012e-05
7.58913e-05
8.35223e-05
8.73283e-05
8.452e-05
7.89425e-05
7.39665e-05
7.27601e-05
7.65199e-05
8.38824e-05
9.43017e-05
0.00010716
0.000119149
0.000130343
0.000141262
0.000149079
0.000154733
0.00016149
0.000161129
0.000144267
0.000120523
9.68095e-05
6.61187e-05
2.73465e-05
6.49547e-06
8.74745e-06
0.000103641
7.35635e-05
6.18498e-05
4.48244e-05
2.52389e-05
1.4067e-05
1.12647e-05
2.15607e-05
5.03437e-05
8.67174e-05
0.000112967
0.000127085
0.000134286
0.000138395
0.000141639
0.000144638
0.000149125
0.000156758
0.000166989
0.000179511
0.000198481
0.000217596
0.000187871
0.000100868
6.71184e-05
6.95734e-05
8.82649e-05
0.000109034
0.000132229
0.00016469
0.000176496
6.97892e-05
1.89758e-05
2.40065e-06
8.21691e-06
9.60379e-05
4.98345e-05
5.43427e-05
8.09875e-05
0.000106482
0.000113762
8.70196e-05
6.36016e-05
5.57062e-05
5.85992e-05
6.93167e-05
8.98208e-05
0.000110288
0.000112552
0.000104164
9.39505e-05
8.44473e-05
7.73439e-05
7.32761e-05
7.14282e-05
7.09081e-05
7.19192e-05
7.58162e-05
8.48819e-05
0.000103032
0.000132038
0.000158046
0.00014832
9.79049e-05
5.71814e-05
3.41439e-05
2.0033e-05
1.1599e-05
9.32746e-07
8.84092e-06
6.38499e-05
5.62445e-05
6.24641e-05
6.85807e-05
7.65647e-05
8.45024e-05
9.34292e-05
0.000104502
0.000117864
0.000131075
0.000141593
0.00014961
0.000155113
0.000159087
0.000162349
0.000164846
0.000166037
0.000164926
0.000160742
0.000153729
0.000144914
0.000135219
0.000125091
0.000114761
0.000104064
9.21276e-05
7.84622e-05
6.33204e-05
4.84408e-05
3.61173e-05
2.78139e-05
2.79948e-05
5.79878e-05
4.14231e-06
1.32153e-05
4.03403e-05
4.16765e-05
5.02624e-05
5.49341e-05
6.06361e-05
6.42244e-05
6.70328e-05
6.79202e-05
6.81941e-05
6.78217e-05
6.71054e-05
6.59641e-05
6.45796e-05
6.29507e-05
6.12208e-05
5.9439e-05
5.77149e-05
5.61042e-05
5.46785e-05
5.34766e-05
5.2547e-05
5.19342e-05
5.16929e-05
5.18443e-05
5.23835e-05
5.40253e-05
5.72835e-05
6.13168e-05
6.57036e-05
6.98616e-05
7.45257e-05
7.45841e-05
5.76011e-05
5.36918e-06
)
;
boundaryField
{
frontAndBack
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
1050
(
5.94938e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.51348e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.83772e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.91441e-06
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
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
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
2.13171e-07
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
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
0
0
0
0
0
0
0
0
0
0
0
0
7.19438e-10
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.16491e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.73064e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
7.71704e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.1249e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.82345e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.91395e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.16605e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
7.5603e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.11451e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.97914e-07
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
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
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
0
0
0
0
5.13431e-06
1.03249e-06
9.36054e-07
3.35525e-06
4.59049e-06
0
0
0
6.40328e-06
4.45726e-06
2.07106e-06
3.21289e-06
3.89808e-06
0
0
6.73779e-06
1.06076e-06
2.88008e-06
7.34963e-06
9.14232e-06
0
0
5.01667e-07
1.06717e-05
8.86288e-06
4.14821e-06
4.3776e-06
5.56059e-06
0
0
5.78361e-06
0
1.99696e-06
8.53462e-06
9.16041e-06
0
0
0
9.81455e-06
1.01222e-05
3.23993e-06
1.90267e-06
4.30498e-06
0
0
5.17297e-06
0
1.25774e-06
9.21426e-06
7.94121e-06
0
0
0
6.97028e-06
1.07415e-05
2.57275e-06
0
3.23768e-06
0
0
4.72749e-06
0
6.55147e-07
9.50437e-06
6.37897e-06
0
0
0
4.53754e-06
1.05856e-05
2.1242e-06
0
2.36278e-06
0
0
4.4758e-06
0
1.29982e-07
9.38804e-06
4.9941e-06
0
0
0
3.06019e-06
9.82102e-06
1.55833e-06
0
1.81224e-06
0
0
4.34664e-06
0
0
8.87144e-06
3.65943e-06
0
0
0
1.93981e-06
8.80412e-06
8.7548e-07
0
1.47634e-06
3.96734e-07
0
4.30057e-06
0
0
7.96356e-06
2.30684e-06
0
0
0
9.07613e-07
7.71067e-06
2.6221e-07
0
1.3035e-06
1.13953e-06
3.77948e-07
4.29702e-06
0
0
6.756e-06
1.07773e-06
0
0
0
0
6.58179e-06
0
0
1.23131e-06
1.73936e-06
8.49333e-07
4.30748e-06
0
0
5.51239e-06
1.13413e-07
0
0
0
0
5.47949e-06
0
0
1.21515e-06
2.23004e-06
1.22182e-06
4.31781e-06
0
0
4.45462e-06
0
0
0
0
0
4.44969e-06
0
0
1.22139e-06
2.60631e-06
1.49955e-06
4.32084e-06
0
0
3.57479e-06
0
0
0
0
0
3.507e-06
0
0
1.22976e-06
2.8818e-06
1.69107e-06
4.29712e-06
0
0
2.80224e-06
0
0
0
0
0
2.67167e-06
0
0
1.23419e-06
3.05504e-06
1.80116e-06
4.25357e-06
0
0
2.12565e-06
0
0
0
0
0
1.95597e-06
0
0
1.21025e-06
3.13348e-06
1.83625e-06
4.18083e-06
0
0
1.54388e-06
0
0
0
0
0
1.35206e-06
0
0
1.16283e-06
3.12048e-06
1.80113e-06
4.08667e-06
0
0
1.04776e-06
0
0
0
0
0
8.42605e-07
0
0
1.08547e-06
3.02357e-06
1.70428e-06
3.97628e-06
0
0
6.24988e-07
0
0
0
0
0
4.08299e-07
0
0
9.80752e-07
2.84951e-06
1.55337e-06
3.85572e-06
0
0
2.62442e-07
0
0
0
0
0
3.13405e-08
0
0
8.49707e-07
2.60729e-06
1.36039e-06
3.73103e-06
0
0
0
0
0
0
0
0
0
0
0
6.96827e-07
2.30674e-06
1.13767e-06
3.60669e-06
0
0
0
0
0
0
0
0
0
0
0
5.27494e-07
1.95974e-06
9.0011e-07
3.48585e-06
0
0
0
0
0
0
0
0
0
0
0
3.48716e-07
1.57972e-06
6.62942e-07
3.37055e-06
0
0
0
0
0
0
0
0
0
0
0
1.6826e-07
1.1811e-06
4.39611e-07
3.26292e-06
0
0
0
0
0
0
0
0
0
0
0
0
7.76808e-07
2.38479e-07
3.16654e-06
0
0
0
0
0
0
0
0
0
0
0
0
3.74522e-07
5.71166e-08
3.08676e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.03093e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.00931e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.03588e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.12813e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.30629e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.59087e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.96694e-06
0
0
3.54258e-08
0
0
0
0
0
0
0
0
2.35052e-07
0
0
4.26222e-06
0
4.45251e-08
0
0
0
0
0
0
0
0
0
7.90763e-07
0
0
3.74195e-06
0
0
0
0
0
0
0
0
0
0
0
8.66117e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
)
;
}
topAndBottom
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value nonuniform List<scalar>
10500
(
0
0
3.85568e-06
4.923e-06
6.22376e-06
1.0409e-05
1.49914e-05
1.883e-05
1.878e-05
1.36298e-05
1.135e-05
1.20042e-05
1.21572e-05
1.45209e-05
1.69684e-05
2.10675e-05
2.29917e-05
2.12953e-05
2.0532e-05
2.07968e-05
2.07468e-05
1.82722e-05
1.74847e-05
1.79688e-05
2.08715e-05
2.4429e-05
2.73885e-05
2.75695e-05
2.58393e-05
2.40011e-05
2.33514e-05
2.31502e-05
2.38453e-05
2.4673e-05
2.57577e-05
2.65859e-05
2.75859e-05
2.94173e-05
3.25891e-05
3.52344e-05
3.50943e-05
3.20679e-05
2.89868e-05
2.73926e-05
2.78555e-05
3.02079e-05
3.26685e-05
3.33342e-05
3.25076e-05
3.19048e-05
3.11506e-05
2.98402e-05
2.93101e-05
2.88415e-05
2.9102e-05
3.00686e-05
3.21537e-05
3.52238e-05
3.86932e-05
4.01578e-05
3.86117e-05
3.61623e-05
3.45054e-05
3.31252e-05
3.07351e-05
2.90403e-05
2.96479e-05
3.23037e-05
3.56366e-05
3.73787e-05
3.50532e-05
3.0965e-05
2.81666e-05
2.68952e-05
2.83279e-05
3.33205e-05
3.98507e-05
4.00389e-05
3.31591e-05
2.88435e-05
3.04342e-05
3.51144e-05
3.67396e-05
3.35838e-05
3.30997e-05
3.3047e-05
3.33004e-05
3.19502e-05
3.23456e-05
3.24211e-05
3.11388e-05
3.2359e-05
3.16203e-05
3.21109e-05
3.11241e-05
2.97031e-05
2.8321e-05
2.78881e-05
2.87465e-05
3.01997e-05
3.13913e-05
3.17337e-05
3.14425e-05
3.11609e-05
3.1058e-05
3.09906e-05
3.08593e-05
3.04978e-05
2.97526e-05
2.90433e-05
2.86931e-05
2.88655e-05
2.93034e-05
2.94985e-05
2.93358e-05
2.93335e-05
2.951e-05
2.94964e-05
2.8968e-05
2.80126e-05
2.72021e-05
2.70503e-05
2.70981e-05
2.65383e-05
2.55891e-05
2.52786e-05
2.5364e-05
2.48879e-05
2.39514e-05
2.34194e-05
2.3479e-05
2.3817e-05
2.44954e-05
2.51352e-05
2.50693e-05
2.38905e-05
2.31898e-05
2.4022e-05
2.68453e-05
2.89939e-05
2.67829e-05
2.10173e-05
2.08563e-05
2.40333e-05
2.7541e-05
2.88441e-05
2.71333e-05
2.66548e-05
2.07472e-05
4.64048e-06
0
1.29027e-06
1.25565e-05
1.23157e-05
1.64359e-05
1.98009e-05
2.35126e-05
2.47541e-05
2.33927e-05
2.00699e-05
1.99142e-05
2.08498e-05
2.17822e-05
2.42407e-05
2.70125e-05
3.02132e-05
3.1068e-05
3.03565e-05
3.09309e-05
3.12398e-05
3.05634e-05
2.91766e-05
2.95929e-05
3.08103e-05
3.37858e-05
3.62579e-05
3.76636e-05
3.66391e-05
3.54711e-05
3.44086e-05
3.48286e-05
3.51954e-05
3.63011e-05
3.70241e-05
3.82453e-05
3.92348e-05
4.06899e-05
4.25504e-05
4.48019e-05
4.57465e-05
4.43735e-05
4.1606e-05
3.96033e-05
3.90829e-05
4.0296e-05
4.26547e-05
4.43669e-05
4.46128e-05
4.39714e-05
4.32576e-05
4.24602e-05
4.14867e-05
4.11882e-05
4.11282e-05
4.18414e-05
4.30361e-05
4.47415e-05
4.63523e-05
4.72827e-05
4.67553e-05
4.53249e-05
4.51341e-05
4.53812e-05
4.3936e-05
4.14497e-05
4.07106e-05
4.20293e-05
4.44849e-05
4.64134e-05
4.67932e-05
4.40644e-05
4.04064e-05
3.86565e-05
3.84995e-05
4.05354e-05
4.41641e-05
4.68085e-05
4.4184e-05
3.92465e-05
4.01707e-05
4.28916e-05
4.38221e-05
4.53148e-05
4.29938e-05
4.28726e-05
4.22045e-05
4.22959e-05
4.25001e-05
4.06662e-05
4.28551e-05
4.01336e-05
4.22353e-05
4.06614e-05
4.09408e-05
3.95161e-05
3.83923e-05
3.76588e-05
3.77223e-05
3.86324e-05
3.96552e-05
4.02129e-05
4.00255e-05
3.96671e-05
3.96137e-05
3.95938e-05
3.92844e-05
3.87356e-05
3.80111e-05
3.71315e-05
3.64617e-05
3.61373e-05
3.61432e-05
3.62646e-05
3.63226e-05
3.62424e-05
3.60737e-05
3.56348e-05
3.50065e-05
3.42241e-05
3.3306e-05
3.26192e-05
3.21344e-05
3.14873e-05
3.05491e-05
2.9884e-05
2.98118e-05
2.96507e-05
2.9004e-05
2.84903e-05
2.82647e-05
2.7993e-05
2.78051e-05
2.82244e-05
2.86923e-05
2.84975e-05
2.8144e-05
2.87884e-05
3.03188e-05
3.16146e-05
3.19385e-05
2.87963e-05
2.31099e-05
2.56758e-05
2.79173e-05
3.11918e-05
3.14329e-05
2.94945e-05
2.68898e-05
2.00524e-05
5.08285e-06
0
5.95951e-06
1.5663e-05
1.48047e-05
2.00591e-05
2.23184e-05
2.52228e-05
2.52246e-05
2.36374e-05
2.12379e-05
2.21848e-05
2.30706e-05
2.44611e-05
2.68373e-05
2.94171e-05
3.17371e-05
3.20588e-05
3.18867e-05
3.31536e-05
3.36662e-05
3.28036e-05
3.23125e-05
3.34777e-05
3.49146e-05
3.75595e-05
3.90066e-05
3.95548e-05
3.81011e-05
3.73651e-05
3.68395e-05
3.7794e-05
3.85032e-05
3.97949e-05
4.05064e-05
4.16468e-05
4.26154e-05
4.40661e-05
4.57053e-05
4.71761e-05
4.72273e-05
4.53847e-05
4.2976e-05
4.17627e-05
4.17555e-05
4.32759e-05
4.55446e-05
4.6786e-05
4.67008e-05
4.62161e-05
4.5583e-05
4.48181e-05
4.41984e-05
4.40028e-05
4.41351e-05
4.49102e-05
4.59291e-05
4.69818e-05
4.75865e-05
4.71145e-05
4.51116e-05
4.35028e-05
4.50694e-05
4.69428e-05
4.58328e-05
4.37204e-05
4.34844e-05
4.48556e-05
4.72976e-05
4.84957e-05
4.79779e-05
4.52446e-05
4.19357e-05
4.06779e-05
4.09877e-05
4.29915e-05
4.55662e-05
4.59629e-05
4.08336e-05
3.75395e-05
4.22486e-05
4.58144e-05
4.41532e-05
4.53976e-05
4.37067e-05
4.36987e-05
4.32659e-05
4.2744e-05
4.43028e-05
4.12157e-05
4.42645e-05
4.12301e-05
4.33021e-05
4.16521e-05
4.17217e-05
4.03468e-05
3.95463e-05
3.92769e-05
3.95461e-05
4.0352e-05
4.10954e-05
4.12981e-05
4.08447e-05
4.0493e-05
4.06007e-05
4.0601e-05
4.013e-05
3.93907e-05
3.85199e-05
3.7611e-05
3.69488e-05
3.65666e-05
3.64204e-05
3.63689e-05
3.63567e-05
3.63328e-05
3.60713e-05
3.52089e-05
3.40813e-05
3.3095e-05
3.23191e-05
3.19515e-05
3.13221e-05
3.01335e-05
2.88376e-05
2.85192e-05
2.88688e-05
2.86307e-05
2.7982e-05
2.80551e-05
2.83015e-05
2.78047e-05
2.71738e-05
2.70577e-05
2.70957e-05
2.65394e-05
2.72734e-05
2.9068e-05
3.09832e-05
3.11539e-05
2.99903e-05
2.50826e-05
1.98952e-05
2.67719e-05
2.73315e-05
3.05798e-05
2.98622e-05
2.78809e-05
2.30865e-05
1.68312e-05
7.25455e-06
2.09696e-07
8.94538e-06
1.6841e-05
1.58827e-05
2.13139e-05
2.28847e-05
2.53229e-05
2.46745e-05
2.29268e-05
2.14318e-05
2.30386e-05
2.36194e-05
2.52501e-05
2.75294e-05
2.98409e-05
3.16336e-05
3.16759e-05
3.19092e-05
3.36889e-05
3.42795e-05
3.34058e-05
3.34751e-05
3.48487e-05
3.62439e-05
3.86011e-05
3.94633e-05
3.96184e-05
3.80012e-05
3.76596e-05
3.75412e-05
3.87226e-05
3.95161e-05
4.08827e-05
4.15678e-05
4.26021e-05
4.34904e-05
4.48125e-05
4.61797e-05
4.70877e-05
4.64951e-05
4.43061e-05
4.2542e-05
4.22055e-05
4.23509e-05
4.38754e-05
4.60751e-05
4.7082e-05
4.68409e-05
4.65022e-05
4.59262e-05
4.52299e-05
4.48389e-05
4.46414e-05
4.48026e-05
4.54229e-05
4.60884e-05
4.63162e-05
4.5184e-05
4.10303e-05
3.49935e-05
3.36174e-05
3.99299e-05
4.55277e-05
4.54288e-05
4.42842e-05
4.43605e-05
4.51871e-05
4.76955e-05
4.85351e-05
4.73104e-05
4.46986e-05
4.1825e-05
4.08059e-05
4.11332e-05
4.26533e-05
4.35958e-05
3.98215e-05
3.05208e-05
3.14712e-05
4.16959e-05
4.59496e-05
4.16414e-05
4.20058e-05
4.16233e-05
4.1716e-05
4.19683e-05
4.03031e-05
4.41313e-05
3.9534e-05
4.36148e-05
4.03572e-05
4.21257e-05
4.0536e-05
4.0288e-05
3.9305e-05
3.90146e-05
3.92642e-05
3.95414e-05
4.01038e-05
4.0546e-05
4.04136e-05
3.97314e-05
3.94818e-05
3.9831e-05
3.98339e-05
3.9133e-05
3.81357e-05
3.70931e-05
3.61788e-05
3.54864e-05
3.48535e-05
3.42419e-05
3.37824e-05
3.37287e-05
3.39255e-05
3.35001e-05
3.17349e-05
2.93176e-05
2.75558e-05
2.69823e-05
2.74882e-05
2.66393e-05
2.40034e-05
2.13194e-05
2.17333e-05
2.35182e-05
2.35397e-05
2.32293e-05
2.52007e-05
2.6866e-05
2.62966e-05
2.49234e-05
2.35315e-05
2.25655e-05
2.10451e-05
2.34103e-05
2.71551e-05
3.00125e-05
2.84918e-05
2.32565e-05
1.46847e-05
1.23388e-05
2.67257e-05
2.51042e-05
2.81624e-05
2.58616e-05
2.53641e-05
1.84351e-05
1.36577e-05
9.5908e-06
1.11961e-06
1.09399e-05
1.72706e-05
1.63837e-05
2.16668e-05
2.27624e-05
2.47838e-05
2.34283e-05
2.14759e-05
2.11365e-05
2.33523e-05
2.35302e-05
2.53412e-05
2.74649e-05
2.94397e-05
3.0659e-05
3.02469e-05
3.10567e-05
3.35494e-05
3.41856e-05
3.33519e-05
3.38827e-05
3.52607e-05
3.65368e-05
3.86251e-05
3.89872e-05
3.87458e-05
3.69289e-05
3.71522e-05
3.75349e-05
3.8848e-05
3.96142e-05
4.10261e-05
4.1663e-05
4.25566e-05
4.32951e-05
4.43673e-05
4.52591e-05
4.52177e-05
4.32855e-05
4.04933e-05
4.03404e-05
4.17287e-05
4.20121e-05
4.33615e-05
4.55268e-05
4.63735e-05
4.59531e-05
4.57802e-05
4.52766e-05
4.46591e-05
4.45016e-05
4.4245e-05
4.43502e-05
4.45665e-05
4.43921e-05
4.26322e-05
3.80704e-05
3.06361e-05
2.45485e-05
2.24081e-05
2.59468e-05
3.50299e-05
4.138e-05
4.35666e-05
4.47292e-05
4.41706e-05
4.66772e-05
4.73762e-05
4.48818e-05
4.2406e-05
4.05284e-05
3.97314e-05
3.97176e-05
4.01548e-05
3.85176e-05
3.15513e-05
2.34752e-05
2.45861e-05
3.48878e-05
4.31704e-05
3.66697e-05
3.29321e-05
3.59239e-05
3.56207e-05
3.80608e-05
3.40212e-05
4.1544e-05
3.5735e-05
4.04651e-05
3.78292e-05
3.83543e-05
3.73281e-05
3.63294e-05
3.64578e-05
3.7104e-05
3.8281e-05
3.85209e-05
3.85799e-05
3.84149e-05
3.77341e-05
3.68187e-05
3.68686e-05
3.7627e-05
3.76544e-05
3.66184e-05
3.51717e-05
3.37913e-05
3.28826e-05
3.21835e-05
3.11228e-05
2.96298e-05
2.84141e-05
2.82777e-05
2.8698e-05
2.81598e-05
2.60115e-05
2.29976e-05
2.05405e-05
1.91102e-05
1.9257e-05
1.8698e-05
1.64936e-05
1.34174e-05
1.2789e-05
1.41414e-05
1.47565e-05
1.50462e-05
1.85297e-05
2.29936e-05
2.36516e-05
2.21346e-05
1.98395e-05
1.87181e-05
1.61878e-05
1.73464e-05
2.08454e-05
2.67777e-05
2.503e-05
1.69489e-05
7.51768e-06
6.05075e-06
2.404e-05
2.20295e-05
2.51633e-05
2.07847e-05
2.20067e-05
1.60856e-05
1.08956e-05
1.18415e-05
2.00138e-06
1.23224e-05
1.73325e-05
1.65286e-05
2.15326e-05
2.22036e-05
2.37022e-05
2.14222e-05
1.93655e-05
2.03394e-05
2.32437e-05
2.29712e-05
2.49277e-05
2.68051e-05
2.82274e-05
2.84706e-05
2.72139e-05
2.90463e-05
3.27078e-05
3.35084e-05
3.27909e-05
3.37695e-05
3.50574e-05
3.6179e-05
3.79502e-05
3.76373e-05
3.67217e-05
3.45516e-05
3.57788e-05
3.69554e-05
3.83973e-05
3.90465e-05
4.04778e-05
4.10396e-05
4.16981e-05
4.21135e-05
4.26033e-05
4.2373e-05
4.02107e-05
3.57435e-05
3.22933e-05
3.48266e-05
3.97087e-05
4.09317e-05
4.1834e-05
4.38831e-05
4.46936e-05
4.39417e-05
4.39677e-05
4.36134e-05
4.30337e-05
4.31653e-05
4.27408e-05
4.27092e-05
4.20689e-05
4.04921e-05
3.65614e-05
3.08102e-05
2.47102e-05
2.18059e-05
1.98656e-05
1.88877e-05
1.97715e-05
2.5078e-05
3.72237e-05
4.50341e-05
4.22605e-05
4.33405e-05
4.42711e-05
3.94361e-05
3.69348e-05
3.74661e-05
3.736e-05
3.65129e-05
3.57332e-05
3.26356e-05
2.59961e-05
2.06313e-05
1.96838e-05
2.18134e-05
3.21083e-05
3.15017e-05
2.2816e-05
2.82312e-05
2.67962e-05
3.18392e-05
2.66046e-05
3.39103e-05
3.10541e-05
3.36644e-05
3.3729e-05
3.24856e-05
3.24271e-05
3.07796e-05
3.18842e-05
3.35979e-05
3.60936e-05
3.66308e-05
3.60126e-05
3.49015e-05
3.3621e-05
3.26893e-05
3.30943e-05
3.41415e-05
3.42609e-05
3.31528e-05
3.14451e-05
2.96747e-05
2.86185e-05
2.79748e-05
2.69177e-05
2.51217e-05
2.35216e-05
2.32394e-05
2.34635e-05
2.24531e-05
2.05668e-05
1.83772e-05
1.64242e-05
1.46883e-05
1.36998e-05
1.25371e-05
1.13303e-05
9.73569e-06
8.79127e-06
8.61692e-06
8.96097e-06
9.34045e-06
1.13887e-05
1.5957e-05
1.8908e-05
1.92203e-05
1.68798e-05
1.60685e-05
1.26541e-05
1.18892e-05
1.14948e-05
1.87974e-05
2.01408e-05
1.23833e-05
4.59067e-06
2.73354e-06
1.9182e-05
1.81074e-05
2.26314e-05
1.5067e-05
1.65249e-05
1.48576e-05
9.27798e-06
1.384e-05
2.80763e-06
1.32959e-05
1.71536e-05
1.63865e-05
2.10182e-05
2.1235e-05
2.20417e-05
1.87182e-05
1.68596e-05
1.89161e-05
2.26465e-05
2.1977e-05
2.39242e-05
2.54579e-05
2.596e-05
2.47111e-05
2.25108e-05
2.54405e-05
3.04975e-05
3.19798e-05
3.16767e-05
3.31468e-05
3.42671e-05
3.51545e-05
3.64967e-05
3.50619e-05
3.30413e-05
3.04137e-05
3.31375e-05
3.56249e-05
3.74058e-05
3.78338e-05
3.91609e-05
3.95906e-05
3.98146e-05
3.95368e-05
3.88616e-05
3.68489e-05
3.222e-05
2.58606e-05
2.16922e-05
2.47772e-05
3.38446e-05
3.88022e-05
3.9386e-05
4.05361e-05
4.1618e-05
4.04848e-05
4.07266e-05
4.07384e-05
4.00905e-05
4.05609e-05
3.96936e-05
3.95949e-05
3.78614e-05
3.52526e-05
3.0462e-05
2.58369e-05
2.16771e-05
2.02307e-05
1.8266e-05
1.61886e-05
1.36333e-05
1.26308e-05
2.04901e-05
3.76912e-05
4.16057e-05
3.66379e-05
3.59744e-05
3.00432e-05
2.68608e-05
3.12435e-05
3.37626e-05
3.2219e-05
3.03214e-05
2.71657e-05
2.20999e-05
1.80485e-05
1.64752e-05
1.15957e-05
1.39809e-05
1.67824e-05
1.25164e-05
2.08082e-05
1.9961e-05
2.56752e-05
2.14945e-05
2.59215e-05
2.53726e-05
2.64229e-05
2.79294e-05
2.68021e-05
2.71342e-05
2.58133e-05
2.69204e-05
2.90042e-05
3.24113e-05
3.39278e-05
3.314e-05
3.12702e-05
2.95524e-05
2.86807e-05
2.92569e-05
3.02882e-05
3.04146e-05
2.95634e-05
2.81033e-05
2.62429e-05
2.48726e-05
2.39792e-05
2.30968e-05
2.16841e-05
2.0357e-05
2.01249e-05
2.02902e-05
1.89033e-05
1.70381e-05
1.54155e-05
1.39847e-05
1.25037e-05
1.12232e-05
9.82985e-06
8.92519e-06
8.0734e-06
7.35653e-06
6.65643e-06
6.75981e-06
7.08382e-06
7.40239e-06
9.31281e-06
1.2083e-05
1.47153e-05
1.36748e-05
1.34871e-05
9.40689e-06
7.92853e-06
3.60462e-06
7.72015e-06
9.76271e-06
5.91446e-06
2.09115e-06
8.71888e-07
1.41232e-05
1.29731e-05
2.0012e-05
9.14891e-06
9.07113e-06
1.34349e-05
8.79198e-06
1.55586e-05
3.55433e-06
1.39743e-05
1.67724e-05
1.59742e-05
2.01424e-05
1.98354e-05
1.98283e-05
1.56764e-05
1.43412e-05
1.67916e-05
2.13792e-05
2.06018e-05
2.21982e-05
2.33468e-05
2.28417e-05
2.01598e-05
1.74333e-05
2.03447e-05
2.5802e-05
2.86289e-05
2.96693e-05
3.19171e-05
3.28579e-05
3.32719e-05
3.41096e-05
3.11064e-05
2.79877e-05
2.50687e-05
2.88468e-05
3.29096e-05
3.57154e-05
3.59947e-05
3.68742e-05
3.70102e-05
3.65906e-05
3.53273e-05
3.33437e-05
3.01093e-05
2.4615e-05
1.89277e-05
1.4996e-05
1.49708e-05
2.25947e-05
3.32691e-05
3.63876e-05
3.51131e-05
3.58731e-05
3.50829e-05
3.56763e-05
3.65413e-05
3.58671e-05
3.68391e-05
3.51743e-05
3.5147e-05
3.27794e-05
3.00672e-05
2.54911e-05
2.25289e-05
1.95865e-05
1.8658e-05
1.66481e-05
1.42222e-05
1.07146e-05
7.0543e-06
7.27539e-06
1.96432e-05
3.23247e-05
3.15168e-05
2.36897e-05
1.53502e-05
1.3383e-05
2.03396e-05
2.80457e-05
2.81481e-05
2.49264e-05
2.20909e-05
1.85275e-05
1.50762e-05
1.36683e-05
6.55501e-06
5.82834e-06
7.9685e-07
0
6.66545e-06
1.35421e-05
2.14169e-05
1.79245e-05
2.12655e-05
2.05977e-05
2.11196e-05
2.22519e-05
2.18063e-05
2.23363e-05
2.17591e-05
2.26534e-05
2.44013e-05
2.77059e-05
3.02193e-05
3.01857e-05
2.82344e-05
2.63052e-05
2.5389e-05
2.59824e-05
2.696e-05
2.69824e-05
2.62622e-05
2.52164e-05
2.36416e-05
2.21477e-05
2.08505e-05
1.98409e-05
1.8865e-05
1.82285e-05
1.82978e-05
1.85898e-05
1.7178e-05
1.53326e-05
1.38721e-05
1.25429e-05
1.11648e-05
9.90233e-06
8.57452e-06
7.78541e-06
7.1354e-06
6.62889e-06
5.90619e-06
5.90991e-06
6.23025e-06
5.83463e-06
5.59128e-06
6.21539e-06
8.61872e-06
8.88694e-06
9.87052e-06
5.83403e-06
4.75769e-06
0
0
0
0
5.3514e-07
8.85496e-08
9.60939e-06
7.03545e-06
1.62855e-05
4.46709e-06
1.96377e-06
1.11379e-05
9.16917e-06
1.69782e-05
4.25738e-06
1.44205e-05
1.61838e-05
1.52625e-05
1.88857e-05
1.80114e-05
1.72334e-05
1.27555e-05
1.20452e-05
1.40716e-05
1.92524e-05
1.89043e-05
1.98729e-05
2.05661e-05
1.95875e-05
1.61633e-05
1.34338e-05
1.50908e-05
1.90725e-05
2.24813e-05
2.58085e-05
2.97643e-05
3.09129e-05
3.03924e-05
3.0875e-05
2.66403e-05
2.30297e-05
2.01525e-05
2.34987e-05
2.81491e-05
3.26623e-05
3.35337e-05
3.3678e-05
3.31822e-05
3.21512e-05
3.01749e-05
2.73704e-05
2.38843e-05
1.87942e-05
1.46905e-05
1.14934e-05
9.97593e-06
1.22436e-05
2.20342e-05
3.11041e-05
2.98271e-05
2.73922e-05
2.64497e-05
2.81473e-05
3.08147e-05
3.06117e-05
3.26438e-05
3.0531e-05
3.01985e-05
2.77649e-05
2.55772e-05
2.17603e-05
1.99875e-05
1.77803e-05
1.69461e-05
1.4887e-05
1.22342e-05
8.35494e-06
4.04637e-06
9.15979e-07
4.638e-06
1.15575e-05
1.30989e-05
8.46766e-06
2.3292e-06
0
5.93191e-06
1.79133e-05
2.37562e-05
2.04635e-05
1.7567e-05
1.47294e-05
1.14424e-05
1.06949e-05
1.99812e-06
3.65958e-06
1.38348e-06
0
0
0
1.66155e-05
1.54333e-05
1.79187e-05
1.77578e-05
1.76815e-05
1.82817e-05
1.78811e-05
1.83942e-05
1.83183e-05
1.9153e-05
2.04219e-05
2.29162e-05
2.56051e-05
2.66597e-05
2.54199e-05
2.36403e-05
2.2704e-05
2.32839e-05
2.43549e-05
2.43563e-05
2.35083e-05
2.2605e-05
2.14011e-05
2.00777e-05
1.86002e-05
1.73304e-05
1.64581e-05
1.65144e-05
1.70978e-05
1.75569e-05
1.6252e-05
1.4453e-05
1.30217e-05
1.16799e-05
1.02708e-05
9.01784e-06
7.76646e-06
7.06379e-06
6.46686e-06
6.10085e-06
5.49812e-06
5.46926e-06
5.81733e-06
5.24797e-06
4.21318e-06
3.26649e-06
3.71379e-06
3.72204e-06
4.98501e-06
2.46652e-06
2.17091e-06
0
0
0
0
4.76852e-07
0
6.14147e-06
1.19362e-06
1.10894e-05
1.70633e-06
0
7.90421e-06
1.00579e-05
1.8125e-05
4.94779e-06
1.46666e-05
1.5355e-05
1.4155e-05
1.72426e-05
1.58262e-05
1.44958e-05
1.01866e-05
9.97625e-06
1.10194e-05
1.62939e-05
1.68333e-05
1.73733e-05
1.73222e-05
1.65777e-05
1.32809e-05
1.08691e-05
1.10483e-05
1.26945e-05
1.49972e-05
1.95456e-05
2.58501e-05
2.85414e-05
2.68784e-05
2.69106e-05
2.27027e-05
1.92339e-05
1.65905e-05
1.8486e-05
2.20364e-05
2.73876e-05
2.98943e-05
2.99312e-05
2.85901e-05
2.69796e-05
2.48123e-05
2.17181e-05
1.85602e-05
1.4044e-05
1.1218e-05
8.77681e-06
7.01453e-06
6.43032e-06
1.03096e-05
2.0132e-05
2.3633e-05
2.03185e-05
1.61773e-05
1.67895e-05
2.22263e-05
2.38803e-05
2.76118e-05
2.66386e-05
2.58904e-05
2.35161e-05
2.17776e-05
1.89002e-05
1.7749e-05
1.60181e-05
1.51154e-05
1.29898e-05
1.01308e-05
6.01519e-06
1.77189e-06
0
0
0
0
0
0
0
0
4.5113e-06
1.59412e-05
1.6132e-05
1.34912e-05
1.05466e-05
6.83439e-06
7.49945e-06
0
7.83879e-07
2.36986e-06
2.87738e-07
0
0
4.7243e-06
1.27807e-05
1.43435e-05
1.57191e-05
1.54117e-05
1.56727e-05
1.51579e-05
1.54408e-05
1.54735e-05
1.62478e-05
1.71628e-05
1.87366e-05
2.07778e-05
2.23341e-05
2.21649e-05
2.1054e-05
2.03724e-05
2.10348e-05
2.23012e-05
2.24184e-05
2.13817e-05
2.03346e-05
1.92694e-05
1.82196e-05
1.68654e-05
1.54883e-05
1.45047e-05
1.49608e-05
1.61669e-05
1.67933e-05
1.56141e-05
1.39039e-05
1.24608e-05
1.11016e-05
9.63202e-06
8.36708e-06
7.12267e-06
6.48016e-06
5.89784e-06
5.61957e-06
5.16821e-06
5.13973e-06
5.52304e-06
4.95349e-06
3.79923e-06
2.34926e-06
1.57256e-06
1.0416e-06
1.34193e-06
9.63169e-07
1.00016e-06
0
0
0
0
2.22029e-07
0
3.82738e-06
0
5.07005e-06
0
0
4.31283e-06
1.12087e-05
1.9072e-05
5.63056e-06
1.47295e-05
1.42233e-05
1.24623e-05
1.53078e-05
1.33467e-05
1.18215e-05
7.93533e-06
8.04484e-06
7.88723e-06
1.27681e-05
1.42177e-05
1.50247e-05
1.39828e-05
1.36783e-05
1.11461e-05
9.24009e-06
8.38846e-06
8.14328e-06
8.63699e-06
1.24021e-05
1.97176e-05
2.52178e-05
2.35686e-05
2.2365e-05
1.92027e-05
1.64629e-05
1.41838e-05
1.45928e-05
1.62861e-05
2.05019e-05
2.40379e-05
2.51378e-05
2.36277e-05
2.14019e-05
1.93455e-05
1.61911e-05
1.37072e-05
9.77958e-06
7.98293e-06
6.47181e-06
4.81907e-06
3.4455e-06
2.78859e-06
7.3345e-06
1.06704e-05
1.02712e-05
6.97412e-06
5.02108e-06
9.82482e-06
1.40604e-05
2.00166e-05
2.23683e-05
2.22953e-05
2.02809e-05
1.85959e-05
1.64846e-05
1.56019e-05
1.41734e-05
1.31516e-05
1.09164e-05
7.87223e-06
3.65521e-06
0
0
0
0
0
0
0
0
0
0
4.39567e-06
8.8416e-06
8.42863e-06
5.41648e-06
8.41663e-07
3.76307e-06
0
0
2.23988e-06
1.40166e-06
5.12743e-07
0
1.17948e-06
7.08334e-06
1.08383e-05
1.31142e-05
1.36847e-05
1.37941e-05
1.32285e-05
1.32706e-05
1.32029e-05
1.38277e-05
1.45043e-05
1.53927e-05
1.65354e-05
1.7842e-05
1.83844e-05
1.82223e-05
1.81819e-05
1.9124e-05
2.06059e-05
2.08867e-05
1.97334e-05
1.85045e-05
1.73088e-05
1.63744e-05
1.529e-05
1.40406e-05
1.29436e-05
1.35016e-05
1.53025e-05
1.60818e-05
1.49781e-05
1.34592e-05
1.20151e-05
1.06621e-05
9.12883e-06
7.8565e-06
6.56289e-06
5.93345e-06
5.3471e-06
5.11499e-06
4.80919e-06
4.79449e-06
5.21235e-06
4.68648e-06
3.65419e-06
2.12916e-06
9.84714e-07
3.40841e-07
2.46517e-07
6.38411e-07
9.45356e-07
0
0
0
0
0
0
2.3218e-06
0
0
0
0
8.97062e-07
1.24758e-05
1.98012e-05
6.39408e-06
1.46052e-05
1.26676e-05
9.96099e-06
1.32887e-05
1.05946e-05
9.32466e-06
5.85019e-06
6.19767e-06
4.77518e-06
9.02305e-06
1.09117e-05
1.27285e-05
1.10274e-05
1.07835e-05
9.22324e-06
7.99932e-06
6.63276e-06
5.23979e-06
4.2617e-06
6.0896e-06
1.23676e-05
2.00635e-05
2.06101e-05
1.81415e-05
1.57311e-05
1.40754e-05
1.24006e-05
1.17533e-05
1.19839e-05
1.40186e-05
1.67813e-05
1.843e-05
1.77876e-05
1.54391e-05
1.38227e-05
1.07066e-05
9.05041e-06
6.10473e-06
5.16324e-06
4.4776e-06
2.99227e-06
1.51832e-06
0
0
0
0
0
0
0
1.5333e-06
8.77947e-06
1.47802e-05
1.79272e-05
1.74176e-05
1.58209e-05
1.41822e-05
1.33939e-05
1.21158e-05
1.09605e-05
8.55634e-06
5.37326e-06
1.38098e-06
0
0
0
0
0
0
0
0
0
0
3.55717e-07
0
0
0
0
0
0
0
1.83222e-06
2.74726e-06
2.99697e-06
2.35471e-06
4.72811e-06
6.02662e-06
8.49912e-06
1.00211e-05
1.17499e-05
1.2238e-05
1.1748e-05
1.15902e-05
1.13689e-05
1.1795e-05
1.22936e-05
1.27655e-05
1.32026e-05
1.39795e-05
1.4729e-05
1.52881e-05
1.60068e-05
1.74119e-05
1.91003e-05
1.94822e-05
1.82631e-05
1.70594e-05
1.56392e-05
1.46052e-05
1.36797e-05
1.27235e-05
1.16084e-05
1.20975e-05
1.43648e-05
1.5237e-05
1.40312e-05
1.29144e-05
1.15577e-05
1.02786e-05
8.68671e-06
7.422e-06
6.04991e-06
5.38092e-06
4.76615e-06
4.54312e-06
4.36238e-06
4.3603e-06
4.80792e-06
4.31723e-06
3.48965e-06
1.99833e-06
8.33293e-07
1.07798e-07
0
3.41301e-07
1.06366e-06
0
0
0
0
0
0
1.343e-06
0
0
0
0
0
1.38547e-05
2.03426e-05
6.96458e-06
1.42935e-05
1.04838e-05
6.70559e-06
1.13036e-05
7.60261e-06
6.97779e-06
3.73147e-06
4.4325e-06
1.66083e-06
5.35748e-06
6.94988e-06
1.00928e-05
8.63032e-06
8.11847e-06
7.24563e-06
6.78504e-06
5.31995e-06
3.26542e-06
1.40069e-06
1.26035e-06
5.20539e-06
1.31458e-05
1.6954e-05
1.49002e-05
1.26504e-05
1.17351e-05
1.08127e-05
9.59382e-06
9.06086e-06
9.26497e-06
1.04084e-05
1.11602e-05
1.11727e-05
9.28779e-06
8.6554e-06
6.04848e-06
5.03271e-06
3.32176e-06
2.97796e-06
2.7211e-06
1.37491e-06
0
0
0
0
0
0
0
0
0
0
3.0258e-06
9.94781e-06
1.29855e-05
1.27462e-05
1.15709e-05
1.08642e-05
9.61214e-06
8.32875e-06
5.7292e-06
2.57032e-06
0
0
0
0
0
0
1.4353e-06
9.90851e-07
0
0
0
2.18933e-06
3.10303e-06
0
0
1.10747e-06
0
9.19389e-07
0
2.92393e-06
4.825e-06
5.19008e-06
5.57521e-06
6.65865e-06
9.12302e-06
1.00393e-05
9.39814e-06
9.52046e-06
1.06113e-05
1.05047e-05
1.02173e-05
9.82767e-06
1.00489e-05
1.04028e-05
1.06374e-05
1.06462e-05
1.09775e-05
1.16844e-05
1.2584e-05
1.38343e-05
1.57397e-05
1.7598e-05
1.78749e-05
1.64908e-05
1.57603e-05
1.42381e-05
1.30495e-05
1.20366e-05
1.1353e-05
1.0317e-05
1.06787e-05
1.3223e-05
1.39978e-05
1.21765e-05
1.19257e-05
1.08992e-05
9.87228e-06
8.25308e-06
7.01533e-06
5.5542e-06
4.80267e-06
4.12172e-06
3.86886e-06
3.78512e-06
3.77969e-06
4.24496e-06
3.73931e-06
3.15952e-06
1.66731e-06
6.7063e-07
0
0
0
1.10588e-06
0
0
0
0
0
0
8.36263e-07
0
0
0
7.10905e-07
0
1.53431e-05
2.0691e-05
7.75812e-06
1.38071e-05
7.37366e-06
3.27673e-06
9.22003e-06
4.4477e-06
4.60976e-06
1.3101e-06
2.68132e-06
0
1.8904e-06
2.62914e-06
6.71892e-06
6.41792e-06
5.88807e-06
5.2852e-06
5.37387e-06
4.14325e-06
1.66998e-06
0
0
0
5.49385e-06
1.13995e-05
1.18249e-05
1.01302e-05
9.48662e-06
9.16611e-06
7.79071e-06
6.98533e-06
6.17986e-06
5.99644e-06
5.29488e-06
5.22744e-06
3.83711e-06
4.36754e-06
2.8259e-06
2.18501e-06
1.36408e-06
1.31548e-06
1.16043e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
4.44425e-06
7.04628e-06
7.69194e-06
7.36246e-06
6.17233e-06
4.85972e-06
2.23606e-06
0
0
0
0
0
0
2.39781e-06
3.60722e-06
3.05006e-06
1.06749e-06
0
4.43184e-07
3.26315e-06
5.72072e-06
6.50527e-06
3.99979e-06
7.53811e-06
6.99632e-07
3.68548e-06
4.31779e-06
5.62698e-06
7.52756e-06
7.38218e-06
8.70461e-06
8.91789e-06
1.04557e-05
1.32865e-05
1.2073e-05
9.64684e-06
8.91647e-06
9.27992e-06
9.06111e-06
8.48864e-06
8.5048e-06
8.73771e-06
8.833e-06
8.6065e-06
8.65245e-06
9.25396e-06
1.02212e-05
1.16835e-05
1.39657e-05
1.58641e-05
1.555e-05
1.36187e-05
1.40416e-05
1.28763e-05
1.1733e-05
1.04645e-05
9.85423e-06
8.90014e-06
9.13587e-06
1.17124e-05
1.1887e-05
8.36471e-06
9.67365e-06
9.5929e-06
9.29697e-06
7.77598e-06
6.5959e-06
5.04682e-06
4.1853e-06
3.38525e-06
3.05607e-06
3.03221e-06
2.98163e-06
3.4295e-06
2.79046e-06
2.51451e-06
8.86721e-07
2.83392e-07
0
0
0
9.54845e-07
0
0
0
0
0
0
9.17217e-07
8.36076e-07
0
0
1.93846e-06
0
1.69193e-05
2.08619e-05
8.68421e-06
1.30364e-05
2.33149e-06
2.37159e-07
6.75612e-06
1.10602e-06
1.97567e-06
0
6.78653e-07
0
0
0
2.5222e-06
3.70936e-06
3.85842e-06
3.47997e-06
3.68847e-06
2.88199e-06
1.41621e-07
0
0
0
0
3.99998e-06
7.21563e-06
7.41568e-06
7.17726e-06
7.32334e-06
6.11838e-06
5.31575e-06
4.14402e-06
3.20665e-06
1.36583e-06
8.51566e-07
0
1.23056e-06
7.91383e-07
3.42753e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.28221e-06
8.33635e-07
9.37687e-09
0
0
0
0
0
8.81147e-09
2.76422e-06
5.10361e-06
6.29842e-06
5.83599e-06
4.07432e-06
1.47908e-06
2.04734e-06
4.26956e-06
6.64139e-06
9.36357e-06
6.48333e-06
9.5048e-06
5.61159e-06
5.79248e-06
7.0455e-06
8.0689e-06
9.80679e-06
9.67114e-06
1.10266e-05
1.16183e-05
1.20234e-05
1.4305e-05
1.59382e-05
1.29873e-05
9.22181e-06
8.09103e-06
8.01291e-06
7.32149e-06
7.10204e-06
7.23051e-06
7.23939e-06
6.87938e-06
6.75546e-06
7.25273e-06
8.13397e-06
9.54145e-06
1.19792e-05
1.36297e-05
1.18503e-05
8.82122e-06
1.06712e-05
1.09135e-05
1.04821e-05
9.03671e-06
8.24666e-06
7.21952e-06
7.32701e-06
9.65333e-06
8.46618e-06
2.80571e-06
4.80158e-06
6.4993e-06
8.12089e-06
7.16012e-06
6.12087e-06
4.4949e-06
3.51187e-06
2.52451e-06
2.05986e-06
2.04434e-06
1.86483e-06
2.21657e-06
1.24355e-06
1.28632e-06
0
0
0
0
0
4.8371e-07
0
0
0
0
0
0
1.69507e-06
4.02994e-06
0
3.80615e-06
3.22405e-06
0
1.85772e-05
2.08611e-05
9.53527e-06
1.20451e-05
0
0
3.66616e-06
0
0
0
0
0
0
0
0
0
1.36126e-06
1.6923e-06
1.74082e-06
1.34893e-06
0
0
0
0
0
0
4.44952e-08
2.87564e-06
4.11443e-06
5.02845e-06
4.37612e-06
3.78067e-06
2.63551e-06
1.33474e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.10048e-07
1.10185e-06
0
0
0
0
0
0
0
0
1.13838e-07
7.60805e-07
2.71683e-06
5.47192e-06
7.80169e-06
9.13873e-06
9.00294e-06
7.71209e-06
5.04766e-06
4.49367e-06
5.63753e-06
7.41137e-06
1.06995e-05
7.84779e-06
1.04876e-05
7.83311e-06
7.49226e-06
8.59042e-06
9.72726e-06
1.12856e-05
1.17232e-05
1.28528e-05
1.40199e-05
1.42545e-05
1.53304e-05
1.72941e-05
1.79194e-05
1.28844e-05
8.42582e-06
7.05297e-06
6.31294e-06
5.81417e-06
5.83085e-06
5.78576e-06
5.33798e-06
5.10393e-06
5.50845e-06
6.22086e-06
7.37743e-06
9.73053e-06
1.07815e-05
6.8243e-06
2.92724e-06
4.28879e-06
6.80693e-06
8.66006e-06
7.72198e-06
6.58846e-06
5.21417e-06
5.11845e-06
6.99716e-06
4.15943e-06
0
0
4.05499e-08
5.0363e-06
6.09612e-06
5.51709e-06
3.85906e-06
2.757e-06
1.49785e-06
8.26427e-07
7.54968e-07
3.42595e-07
5.00106e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.75784e-06
6.61004e-06
0
8.01829e-06
4.46768e-06
0
2.02907e-05
2.07036e-05
1.02549e-05
1.09301e-05
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
1.5788e-06
2.23656e-06
2.17624e-06
1.32929e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
6.95797e-07
2.30843e-06
3.81284e-06
4.24005e-06
3.35995e-06
6.60059e-07
0
0
0
1.20998e-06
2.00819e-06
2.23661e-06
3.24743e-06
5.41912e-06
8.08012e-06
1.02952e-05
1.16762e-05
1.19004e-05
1.13408e-05
9.16977e-06
7.93949e-06
7.67438e-06
8.51244e-06
1.17686e-05
8.9744e-06
1.13866e-05
9.30454e-06
9.01457e-06
9.71532e-06
1.09301e-05
1.23702e-05
1.33347e-05
1.44957e-05
1.58594e-05
1.66631e-05
1.68912e-05
1.79651e-05
2.06823e-05
1.86785e-05
1.21561e-05
7.07103e-06
5.46093e-06
4.65619e-06
4.50388e-06
4.42218e-06
3.90585e-06
3.58276e-06
3.90007e-06
4.39384e-06
5.16526e-06
7.2659e-06
7.5619e-06
2.04144e-06
0
0
0
4.44826e-06
6.15932e-06
4.9283e-06
2.93056e-06
2.44218e-06
3.89488e-06
1.466e-07
0
0
0
0
3.49618e-06
4.56457e-06
3.08352e-06
1.88602e-06
2.56492e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.39343e-06
9.23255e-06
0
1.23667e-05
5.58635e-06
0
2.20342e-05
2.04022e-05
1.08544e-05
9.6519e-06
0
0
0
0
0
2.61011e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.16214e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
7.28916e-07
1.84809e-06
3.37891e-06
5.16754e-06
6.48176e-06
7.15269e-06
6.73966e-06
5.78583e-06
4.74051e-06
4.62682e-06
4.78882e-06
4.75515e-06
4.74928e-06
5.90682e-06
8.145e-06
1.06144e-05
1.25867e-05
1.38384e-05
1.42427e-05
1.43269e-05
1.31208e-05
1.21701e-05
1.0666e-05
1.02992e-05
1.30438e-05
1.01817e-05
1.24015e-05
1.0582e-05
1.05141e-05
1.07748e-05
1.19888e-05
1.33798e-05
1.46373e-05
1.60366e-05
1.74089e-05
1.86529e-05
1.90114e-05
1.91313e-05
2.11393e-05
2.34222e-05
1.87578e-05
1.01016e-05
5.21073e-06
3.67253e-06
3.24547e-06
3.10851e-06
2.53077e-06
2.1173e-06
2.34371e-06
2.57866e-06
2.87339e-06
4.68416e-06
4.30316e-06
0
0
0
0
0
2.85696e-06
3.14907e-06
5.33634e-07
0
6.21358e-07
0
0
0
0
0
0
2.47775e-06
2.02786e-06
8.65364e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.40348e-06
1.2511e-05
0
1.67657e-05
6.49714e-06
1.46257e-06
2.37742e-05
1.99745e-05
1.13401e-05
8.35085e-06
3.52508e-07
0
0
1.44255e-06
0
3.35961e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.23013e-06
1.32171e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.82935e-07
4.1351e-07
8.96158e-07
1.51481e-06
2.18836e-06
3.16431e-06
4.52975e-06
6.27314e-06
7.80968e-06
8.8766e-06
9.2949e-06
9.2734e-06
8.7985e-06
8.51797e-06
8.24426e-06
7.73467e-06
7.55343e-06
8.71723e-06
1.08771e-05
1.30842e-05
1.47527e-05
1.57791e-05
1.6196e-05
1.663e-05
1.62501e-05
1.64179e-05
1.45866e-05
1.31498e-05
1.48916e-05
1.17386e-05
1.36488e-05
1.18647e-05
1.2094e-05
1.18962e-05
1.30346e-05
1.44166e-05
1.58292e-05
1.74702e-05
1.88925e-05
2.0243e-05
2.11364e-05
2.11216e-05
2.19373e-05
2.46841e-05
2.54131e-05
1.67796e-05
7.17957e-06
3.07325e-06
2.10419e-06
1.81995e-06
1.1686e-06
6.50719e-07
7.73637e-07
7.06846e-07
4.46443e-07
2.07118e-06
1.16313e-06
0
0
0
0
0
0
3.76826e-07
0
0
0
0
0
0
0
0
0
0
2.0432e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.31555e-06
2.77205e-06
1.6824e-05
0
2.0937e-05
7.0977e-06
5.62184e-06
2.54727e-05
1.94393e-05
1.17148e-05
7.16954e-06
1.10907e-06
0
1.5186e-06
4.75873e-06
2.11199e-06
5.48938e-06
2.7823e-06
3.24875e-06
1.59039e-06
1.63087e-06
1.29052e-06
3.99237e-07
1.96493e-07
0
0
0
0
3.27232e-07
0
0
3.42317e-07
2.55649e-06
3.12014e-06
1.79433e-06
5.61034e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.94703e-07
1.5223e-06
2.30702e-06
2.5693e-06
2.94939e-06
3.45603e-06
3.97172e-06
4.77365e-06
5.93856e-06
7.50027e-06
9.00608e-06
1.01236e-05
1.08032e-05
1.11828e-05
1.11939e-05
1.12231e-05
1.10966e-05
1.05984e-05
1.0456e-05
1.15746e-05
1.3554e-05
1.5475e-05
1.68598e-05
1.76575e-05
1.80051e-05
1.85779e-05
1.85842e-05
1.98683e-05
1.88122e-05
1.71547e-05
1.76209e-05
1.40158e-05
1.53595e-05
1.3303e-05
1.38403e-05
1.32044e-05
1.41172e-05
1.55196e-05
1.70457e-05
1.88268e-05
2.03644e-05
2.17145e-05
2.28738e-05
2.3599e-05
2.36593e-05
2.51155e-05
2.91173e-05
2.49294e-05
1.30344e-05
3.95202e-06
1.24355e-06
5.82057e-07
0
0
0
0
0
0
0
0
0
0
0
3.35475e-07
0
0
0
0
0
0
0
0
3.7683e-07
7.77392e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
1.84517e-06
0
3.55424e-06
0
1.98876e-06
0
0
2.30529e-07
0
5.35718e-06
1.63263e-06
2.20423e-05
0
2.46946e-05
7.34294e-06
1.0131e-05
2.70856e-05
1.88193e-05
1.19786e-05
6.15572e-06
1.94882e-06
0
9.24662e-07
5.82035e-06
5.00918e-06
6.88713e-06
5.02935e-06
5.56516e-06
4.42928e-06
4.34254e-06
3.98176e-06
3.0605e-06
3.26647e-06
1.70059e-06
1.46151e-06
1.45814e-06
1.65883e-06
2.43458e-06
1.35135e-06
9.77278e-07
1.79279e-06
3.72993e-06
4.3877e-06
3.18504e-06
2.45343e-06
2.05e-06
4.14734e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
8.73342e-07
1.8305e-06
3.4854e-06
4.58148e-06
5.25113e-06
5.38542e-06
5.53188e-06
5.84361e-06
6.1729e-06
6.77575e-06
7.72133e-06
9.03104e-06
1.03749e-05
1.14016e-05
1.21157e-05
1.26324e-05
1.28944e-05
1.31771e-05
1.32989e-05
1.30827e-05
1.31881e-05
1.43011e-05
1.6094e-05
1.77666e-05
1.89491e-05
1.95816e-05
1.98476e-05
2.04628e-05
2.05454e-05
2.24282e-05
2.24538e-05
2.17681e-05
2.13072e-05
1.73276e-05
1.78346e-05
1.50909e-05
1.58469e-05
1.48695e-05
1.53624e-05
1.67672e-05
1.83595e-05
2.01776e-05
2.18081e-05
2.32255e-05
2.44079e-05
2.57895e-05
2.6448e-05
2.64301e-05
2.97507e-05
3.16919e-05
2.18571e-05
8.42321e-06
1.41692e-06
0
0
0
0
0
0
0
0
0
0
3.74549e-07
1.59657e-06
3.01621e-06
3.1149e-06
0
0
0
0
0
7.01143e-07
9.94542e-07
1.83434e-06
2.59958e-06
3.5726e-06
0
0
0
0
0
0
0
0
0
0
1.38979e-06
0
5.39913e-06
0
7.41334e-06
3.21937e-06
6.63255e-06
5.00057e-06
2.07664e-06
5.11318e-06
0
9.60544e-06
5.04064e-07
2.72712e-05
0
2.8106e-05
7.32017e-06
1.48637e-05
2.85603e-05
1.81401e-05
1.21068e-05
5.28347e-06
2.87201e-06
0
6.05272e-07
5.87354e-06
6.51273e-06
7.58696e-06
6.24839e-06
6.68677e-06
6.34096e-06
6.1681e-06
5.99712e-06
5.27399e-06
5.59461e-06
4.70179e-06
4.21612e-06
4.23951e-06
3.86606e-06
4.27959e-06
2.9713e-06
2.43442e-06
3.1383e-06
4.87278e-06
5.48286e-06
4.20319e-06
3.65577e-06
3.83865e-06
3.69294e-06
1.51035e-06
0
0
0
0
0
0
1.64186e-06
6.31471e-07
1.43277e-06
2.68611e-06
2.571e-06
3.29515e-06
3.23966e-06
4.60819e-06
5.84387e-06
7.61408e-06
8.6369e-06
9.10396e-06
8.99367e-06
8.78962e-06
8.80209e-06
8.89396e-06
9.2663e-06
9.97701e-06
1.09964e-05
1.20936e-05
1.29472e-05
1.35764e-05
1.40917e-05
1.44507e-05
1.48668e-05
1.51418e-05
1.52043e-05
1.56053e-05
1.67685e-05
1.84444e-05
1.99537e-05
2.10429e-05
2.16155e-05
2.18361e-05
2.24795e-05
2.24755e-05
2.45748e-05
2.51435e-05
2.60702e-05
2.56009e-05
2.16696e-05
2.1378e-05
1.75034e-05
1.82431e-05
1.70194e-05
1.69515e-05
1.82369e-05
1.98165e-05
2.15981e-05
2.3237e-05
2.47794e-05
2.60273e-05
2.75479e-05
2.94675e-05
2.92796e-05
3.04005e-05
3.50584e-05
3.09849e-05
1.69e-05
4.88988e-06
0
0
0
0
0
0
0
0
0
3.38867e-07
1.88357e-06
3.41097e-06
4.94256e-06
6.17397e-06
4.57215e-06
2.66874e-07
0
0
1.18742e-06
1.86463e-06
2.2361e-06
3.24159e-06
4.0344e-06
5.8422e-06
4.9211e-06
3.74773e-08
0
0
0
0
0
0
1.63913e-07
0
4.55419e-06
0
8.62722e-06
2.57063e-06
1.11102e-05
8.28766e-06
1.14531e-05
1.00283e-05
7.68876e-06
9.95146e-06
0
1.44073e-05
0
3.10923e-05
0
3.10843e-05
7.22052e-06
1.97407e-05
2.98347e-05
1.74291e-05
1.21192e-05
4.60288e-06
3.83611e-06
0
8.23435e-07
5.69034e-06
7.04294e-06
7.8475e-06
6.80842e-06
7.09973e-06
7.35929e-06
7.30769e-06
7.17057e-06
6.73858e-06
7.06207e-06
6.86616e-06
6.27815e-06
6.30832e-06
5.62097e-06
5.85322e-06
4.37592e-06
3.73886e-06
4.37989e-06
6.02821e-06
6.55195e-06
5.08145e-06
4.60643e-06
5.11471e-06
5.64461e-06
4.21579e-06
1.64532e-06
0
0
2.02617e-07
1.7294e-06
1.22542e-06
3.78317e-06
2.95029e-06
3.65509e-06
5.66699e-06
6.07288e-06
7.11737e-06
7.3348e-06
8.8048e-06
1.02843e-05
1.21373e-05
1.32197e-05
1.35747e-05
1.32764e-05
1.27455e-05
1.24229e-05
1.22467e-05
1.23592e-05
1.28055e-05
1.35092e-05
1.43038e-05
1.49273e-05
1.53946e-05
1.58181e-05
1.61686e-05
1.66194e-05
1.69389e-05
1.71687e-05
1.77845e-05
1.89996e-05
2.06225e-05
2.20574e-05
2.31576e-05
2.37965e-05
2.40379e-05
2.47601e-05
2.45834e-05
2.67683e-05
2.72761e-05
2.94937e-05
2.98303e-05
2.65924e-05
2.6115e-05
2.08885e-05
2.12227e-05
1.98148e-05
1.90735e-05
2.00463e-05
2.14854e-05
2.31573e-05
2.47163e-05
2.63361e-05
2.78392e-05
2.9331e-05
3.1823e-05
3.32289e-05
3.25545e-05
3.57423e-05
3.81279e-05
2.76746e-05
1.32632e-05
2.7011e-06
0
0
0
0
0
0
0
4.30717e-07
1.65263e-06
3.45498e-06
5.19159e-06
6.81231e-06
8.04309e-06
8.49789e-06
6.88855e-06
0
0
2.96796e-06
3.31671e-06
3.59366e-06
4.69751e-06
5.41846e-06
7.43949e-06
7.75022e-06
6.93958e-06
0
0
0
0
0
0
3.15424e-06
0
7.651e-06
1.4845e-06
1.1549e-05
6.35275e-06
1.45873e-05
1.26676e-05
1.64185e-05
1.46323e-05
1.33236e-05
1.44694e-05
5.41557e-06
1.98095e-05
0
3.33763e-05
0
3.3802e-05
7.33197e-06
2.46924e-05
3.08312e-05
1.67105e-05
1.19698e-05
4.17761e-06
4.82637e-06
0
1.81824e-06
5.77209e-06
7.15406e-06
7.89694e-06
7.05438e-06
7.2194e-06
7.76829e-06
8.00113e-06
7.7996e-06
7.52097e-06
7.72747e-06
8.08491e-06
7.60701e-06
7.6264e-06
6.87665e-06
7.10263e-06
5.52566e-06
4.86115e-06
5.49209e-06
7.18375e-06
7.65088e-06
5.88671e-06
5.42657e-06
6.25345e-06
7.04792e-06
5.8615e-06
3.35369e-06
2.26793e-06
2.65305e-06
3.87597e-06
5.00186e-06
3.06481e-06
5.79969e-06
5.25919e-06
5.76275e-06
8.10497e-06
9.18661e-06
1.06501e-05
1.13888e-05
1.30029e-05
1.46914e-05
1.6564e-05
1.77402e-05
1.81245e-05
1.78139e-05
1.71502e-05
1.66205e-05
1.62632e-05
1.6158e-05
1.63183e-05
1.66759e-05
1.71302e-05
1.74944e-05
1.77599e-05
1.80305e-05
1.82896e-05
1.8692e-05
1.8963e-05
1.92309e-05
1.99353e-05
2.11422e-05
2.27161e-05
2.41298e-05
2.53157e-05
2.6152e-05
2.64907e-05
2.73911e-05
2.70079e-05
2.92958e-05
2.94352e-05
3.22122e-05
3.35329e-05
3.13058e-05
3.17563e-05
2.55518e-05
2.50719e-05
2.35022e-05
2.20071e-05
2.24154e-05
2.35083e-05
2.4942e-05
2.63385e-05
2.7925e-05
2.97855e-05
3.15079e-05
3.38652e-05
3.67251e-05
3.65397e-05
3.68856e-05
4.11051e-05
3.81236e-05
2.54658e-05
1.17247e-05
1.85381e-06
0
0
0
0
0
7.43857e-07
1.99557e-06
3.27015e-06
5.18683e-06
7.02187e-06
8.81798e-06
9.78069e-06
1.04468e-05
1.25419e-05
3.97584e-06
3.01297e-06
5.18634e-06
5.12345e-06
5.14239e-06
6.27334e-06
6.86724e-06
8.92375e-06
9.384e-06
1.11759e-05
7.12897e-06
9.43209e-07
0
0
1.38632e-06
5.409e-07
6.1576e-06
1.65978e-06
1.05401e-05
4.05754e-06
1.41936e-05
9.73098e-06
1.77951e-05
1.60471e-05
2.10695e-05
1.87429e-05
1.90094e-05
1.87097e-05
1.07981e-05
2.51509e-05
0
3.49748e-05
0
3.6305e-05
7.96782e-06
2.95864e-05
3.14449e-05
1.59988e-05
1.16595e-05
4.03412e-06
5.84789e-06
8.97192e-07
3.89183e-06
6.31605e-06
7.19026e-06
7.86246e-06
7.16504e-06
7.22519e-06
7.82518e-06
8.4072e-06
8.17228e-06
7.9143e-06
7.86036e-06
8.55192e-06
8.28079e-06
8.27669e-06
7.63624e-06
7.98956e-06
6.37005e-06
5.74702e-06
6.44206e-06
8.26696e-06
8.78869e-06
6.64548e-06
6.11025e-06
7.39281e-06
8.28452e-06
7.03898e-06
4.40495e-06
3.45433e-06
5.20009e-06
6.75319e-06
8.55116e-06
5.70723e-06
7.82493e-06
7.64887e-06
8.12759e-06
1.0407e-05
1.19161e-05
1.3723e-05
1.50259e-05
1.69267e-05
1.89084e-05
2.08961e-05
2.21654e-05
2.25967e-05
2.2308e-05
2.16226e-05
2.10501e-05
2.07182e-05
2.0597e-05
2.05642e-05
2.05826e-05
2.06763e-05
2.07855e-05
2.08666e-05
2.09752e-05
2.10885e-05
2.13724e-05
2.15131e-05
2.16901e-05
2.23392e-05
2.34215e-05
2.48703e-05
2.62609e-05
2.75635e-05
2.87176e-05
2.92256e-05
3.04063e-05
2.98592e-05
3.2277e-05
3.2094e-05
3.47538e-05
3.68735e-05
3.51929e-05
3.74244e-05
3.143e-05
3.00841e-05
2.84278e-05
2.61534e-05
2.57112e-05
2.61531e-05
2.71063e-05
2.8216e-05
2.96695e-05
3.18234e-05
3.41303e-05
3.63166e-05
3.9371e-05
4.08594e-05
3.9759e-05
4.20591e-05
4.4015e-05
3.87176e-05
2.58792e-05
1.15132e-05
3.61798e-06
1.85442e-06
9.42088e-07
0
0
3.35487e-06
4.17116e-06
5.35412e-06
7.22819e-06
9.01534e-06
1.09864e-05
1.17957e-05
1.17983e-05
1.65872e-05
9.79806e-06
7.4407e-06
8.06559e-06
7.45326e-06
7.01918e-06
8.072e-06
8.45881e-06
1.04871e-05
1.07633e-05
1.33749e-05
1.34677e-05
8.25881e-06
2.29867e-06
4.06585e-07
4.54114e-06
2.18221e-06
8.97652e-06
3.60941e-06
1.31185e-05
6.72215e-06
1.66538e-05
1.26122e-05
2.08389e-05
1.86256e-05
2.51096e-05
2.20098e-05
2.4506e-05
2.27384e-05
1.6186e-05
2.95856e-05
4.37891e-06
3.65103e-05
6.39834e-06
3.85113e-05
9.90462e-06
3.41981e-05
3.15365e-05
1.52877e-05
1.11852e-05
4.13409e-06
6.89549e-06
2.36166e-06
5.99688e-06
7.14705e-06
7.32393e-06
7.86451e-06
7.2487e-06
7.22918e-06
7.69437e-06
8.62032e-06
8.46393e-06
8.17579e-06
7.74088e-06
8.57366e-06
8.50489e-06
8.47651e-06
7.99961e-06
8.56859e-06
6.92562e-06
6.37355e-06
7.23374e-06
9.1761e-06
9.94471e-06
7.40264e-06
6.63447e-06
8.58097e-06
9.52887e-06
8.05947e-06
5.33693e-06
4.3258e-06
7.14165e-06
8.71075e-06
1.14099e-05
8.82846e-06
1.00409e-05
1.03723e-05
1.12058e-05
1.3131e-05
1.46294e-05
1.65421e-05
1.82446e-05
2.04562e-05
2.27838e-05
2.50742e-05
2.66194e-05
2.72215e-05
2.69511e-05
2.61429e-05
2.54509e-05
2.52011e-05
2.53055e-05
2.53488e-05
2.51869e-05
2.49729e-05
2.48742e-05
2.48627e-05
2.48939e-05
2.48802e-05
2.50217e-05
2.49824e-05
2.49606e-05
2.53946e-05
2.61655e-05
2.73066e-05
2.86028e-05
3.00055e-05
3.15599e-05
3.23058e-05
3.37811e-05
3.32364e-05
3.56476e-05
3.55474e-05
3.75846e-05
4.02932e-05
3.85109e-05
4.20629e-05
3.76822e-05
3.61127e-05
3.48102e-05
3.19396e-05
3.04273e-05
2.98484e-05
2.99336e-05
3.05183e-05
3.17628e-05
3.4103e-05
3.70727e-05
3.94469e-05
4.1981e-05
4.41776e-05
4.35901e-05
4.41727e-05
4.50441e-05
4.7054e-05
4.1841e-05
2.63196e-05
1.30303e-05
8.82849e-06
8.87364e-06
4.8404e-06
2.8351e-06
6.76056e-06
7.40282e-06
8.28261e-06
9.84209e-06
1.14097e-05
1.33354e-05
1.42511e-05
1.33169e-05
1.92401e-05
1.56421e-05
1.25357e-05
1.20178e-05
1.06795e-05
9.50281e-06
1.02947e-05
1.03305e-05
1.21986e-05
1.23117e-05
1.48179e-05
1.78927e-05
1.5577e-05
9.25057e-06
3.57502e-06
7.8044e-06
3.98529e-06
1.15373e-05
5.65354e-06
1.54241e-05
9.30224e-06
1.9043e-05
1.51096e-05
2.38583e-05
2.09171e-05
2.86717e-05
2.4476e-05
2.93432e-05
2.63255e-05
2.19454e-05
3.28108e-05
1.33692e-05
3.80982e-05
1.38926e-05
4.0349e-05
1.46655e-05
3.82179e-05
3.09314e-05
1.45421e-05
1.05874e-05
4.42626e-06
7.95653e-06
3.97995e-06
7.76593e-06
8.18758e-06
7.6112e-06
7.98517e-06
7.395e-06
7.3311e-06
7.53484e-06
8.69874e-06
8.80656e-06
8.48824e-06
7.68173e-06
8.42245e-06
8.47011e-06
8.39645e-06
8.08265e-06
8.95373e-06
7.26794e-06
6.77968e-06
7.93608e-06
9.85683e-06
1.10822e-05
8.26662e-06
7.09762e-06
9.7977e-06
1.08792e-05
8.92036e-06
6.46104e-06
6.35809e-06
9.28896e-06
1.02108e-05
1.31698e-05
1.14042e-05
1.25945e-05
1.4175e-05
1.57926e-05
1.70277e-05
1.78331e-05
1.94082e-05
2.11998e-05
2.35647e-05
2.61272e-05
2.87208e-05
3.07191e-05
3.18281e-05
3.19017e-05
3.10338e-05
3.00367e-05
2.9641e-05
2.99378e-05
3.02629e-05
3.01996e-05
2.9863e-05
2.96672e-05
2.9711e-05
2.98515e-05
2.98596e-05
2.99468e-05
2.97857e-05
2.95739e-05
2.96776e-05
2.9886e-05
3.03941e-05
3.14242e-05
3.28628e-05
3.48134e-05
3.58584e-05
3.74583e-05
3.71897e-05
3.9237e-05
3.97189e-05
4.09533e-05
4.39468e-05
4.19904e-05
4.5501e-05
4.31135e-05
4.20286e-05
4.19471e-05
3.92717e-05
3.68732e-05
3.50675e-05
3.38529e-05
3.35387e-05
3.44784e-05
3.69651e-05
4.03806e-05
4.30299e-05
4.49723e-05
4.68354e-05
4.67673e-05
4.71942e-05
4.6612e-05
4.79948e-05
5.19795e-05
4.27802e-05
2.63573e-05
1.64566e-05
1.50692e-05
1.21902e-05
8.87291e-06
1.16935e-05
1.24691e-05
1.27933e-05
1.34976e-05
1.46661e-05
1.60434e-05
1.71745e-05
1.56144e-05
2.13648e-05
2.08561e-05
1.8265e-05
1.76416e-05
1.54895e-05
1.31352e-05
1.33418e-05
1.2795e-05
1.41189e-05
1.43332e-05
1.64426e-05
2.09053e-05
2.19316e-05
1.72179e-05
8.03959e-06
1.12108e-05
6.06596e-06
1.39362e-05
7.81108e-06
1.76304e-05
1.17598e-05
2.14918e-05
1.74805e-05
2.6948e-05
2.33837e-05
3.19505e-05
2.66239e-05
3.32367e-05
2.91416e-05
2.77376e-05
3.49907e-05
2.16728e-05
3.95479e-05
2.15919e-05
4.189e-05
2.078e-05
4.12973e-05
2.94162e-05
1.37141e-05
9.87327e-06
4.86601e-06
9.0292e-06
5.84079e-06
9.31662e-06
9.42017e-06
8.10142e-06
8.27731e-06
7.67335e-06
7.6019e-06
7.50872e-06
8.69705e-06
9.28257e-06
9.03917e-06
7.93771e-06
8.3974e-06
8.38279e-06
8.24307e-06
7.99587e-06
9.27447e-06
7.51264e-06
7.07474e-06
8.72567e-06
1.03584e-05
1.2122e-05
9.45882e-06
8.06457e-06
1.09509e-05
1.24618e-05
9.85067e-06
9.23616e-06
1.21232e-05
1.30368e-05
1.253e-05
1.45314e-05
1.32394e-05
1.65372e-05
2.0656e-05
2.31446e-05
2.32168e-05
2.23108e-05
2.27309e-05
2.41274e-05
2.64146e-05
2.90803e-05
3.18382e-05
3.41433e-05
3.58009e-05
3.66346e-05
3.62422e-05
3.51384e-05
3.44402e-05
3.46769e-05
3.5165e-05
3.5292e-05
3.50161e-05
3.48512e-05
3.50614e-05
3.54873e-05
3.57519e-05
3.59899e-05
3.59167e-05
3.5778e-05
3.57e-05
3.52241e-05
3.47054e-05
3.51803e-05
3.65368e-05
3.87139e-05
4.00389e-05
4.13966e-05
4.15802e-05
4.2921e-05
4.40782e-05
4.47302e-05
4.75157e-05
4.58457e-05
4.83657e-05
4.73962e-05
4.67348e-05
4.79209e-05
4.65837e-05
4.43177e-05
4.17752e-05
3.92193e-05
3.77029e-05
3.82047e-05
4.0794e-05
4.42689e-05
4.67355e-05
4.80387e-05
4.92773e-05
4.89432e-05
4.97972e-05
4.90755e-05
4.85723e-05
5.33742e-05
5.41669e-05
4.14177e-05
2.72476e-05
2.12972e-05
1.86575e-05
1.5689e-05
1.83872e-05
2.00696e-05
1.99446e-05
1.89605e-05
1.95003e-05
1.96677e-05
2.05091e-05
1.93222e-05
2.40273e-05
2.51146e-05
2.37628e-05
2.49402e-05
2.2555e-05
1.87071e-05
1.78891e-05
1.65067e-05
1.64536e-05
1.71925e-05
1.9258e-05
2.3835e-05
2.67051e-05
2.54488e-05
1.43485e-05
1.5134e-05
8.76554e-06
1.64939e-05
1.03262e-05
2.00709e-05
1.43164e-05
2.42175e-05
2.01233e-05
3.01824e-05
2.63208e-05
3.4982e-05
2.88607e-05
3.62196e-05
3.1185e-05
3.28352e-05
3.63675e-05
2.88363e-05
4.06877e-05
2.86553e-05
4.30758e-05
2.58447e-05
4.32227e-05
2.67368e-05
1.27495e-05
9.07163e-06
5.45113e-06
1.01466e-05
7.97553e-06
1.08224e-05
1.08012e-05
8.85284e-06
8.81707e-06
8.17072e-06
8.13216e-06
7.74556e-06
8.74201e-06
9.83124e-06
9.9636e-06
8.9188e-06
8.83153e-06
8.46341e-06
8.3158e-06
7.92495e-06
9.68648e-06
7.86796e-06
7.56942e-06
1.00606e-05
1.08983e-05
1.2854e-05
1.1461e-05
1.12703e-05
1.25872e-05
1.37597e-05
1.24936e-05
1.60046e-05
2.27355e-05
2.05843e-05
1.65977e-05
1.72352e-05
1.66631e-05
2.20126e-05
2.80443e-05
3.18731e-05
3.18438e-05
2.89633e-05
2.72049e-05
2.74742e-05
2.94338e-05
3.21451e-05
3.49572e-05
3.72838e-05
3.91055e-05
4.04932e-05
4.09603e-05
4.04248e-05
3.98085e-05
3.99403e-05
4.03274e-05
4.04301e-05
4.01803e-05
4.00699e-05
4.04108e-05
4.10831e-05
4.16919e-05
4.22255e-05
4.24098e-05
4.26573e-05
4.28895e-05
4.21864e-05
4.068e-05
4.03925e-05
4.14966e-05
4.34888e-05
4.48206e-05
4.54998e-05
4.5953e-05
4.65318e-05
4.79556e-05
4.83996e-05
5.04983e-05
4.95347e-05
5.09827e-05
5.0748e-05
5.04127e-05
5.18821e-05
5.18183e-05
5.06451e-05
4.85982e-05
4.56091e-05
4.32419e-05
4.32881e-05
4.5682e-05
4.86124e-05
5.02272e-05
5.06504e-05
5.13369e-05
5.0524e-05
5.13347e-05
5.14023e-05
5.01477e-05
5.29559e-05
5.72117e-05
5.36487e-05
4.17519e-05
3.16446e-05
2.60538e-05
2.25454e-05
2.63282e-05
3.0196e-05
3.05219e-05
2.72132e-05
2.65692e-05
2.51866e-05
2.44372e-05
2.45317e-05
2.81216e-05
2.90706e-05
2.81009e-05
3.18799e-05
3.08072e-05
2.63501e-05
2.44827e-05
2.24207e-05
1.9872e-05
2.12606e-05
2.43699e-05
2.81708e-05
3.03019e-05
3.24132e-05
2.25196e-05
2.05323e-05
1.3244e-05
2.00823e-05
1.40727e-05
2.34586e-05
1.76445e-05
2.76541e-05
2.36317e-05
3.36636e-05
2.96846e-05
3.76375e-05
3.12043e-05
3.84351e-05
3.27135e-05
3.67793e-05
3.71463e-05
3.45498e-05
4.14556e-05
3.44632e-05
4.36252e-05
2.99237e-05
4.39622e-05
2.25651e-05
1.14823e-05
8.3019e-06
6.16245e-06
1.14064e-05
1.04088e-05
1.24559e-05
1.22909e-05
9.88928e-06
9.68606e-06
9.00396e-06
9.06629e-06
8.4361e-06
9.07226e-06
1.04769e-05
1.09577e-05
1.11462e-05
1.03013e-05
9.0171e-06
9.28409e-06
8.40746e-06
1.04248e-05
9.09089e-06
9.85995e-06
1.32018e-05
1.2137e-05
1.30075e-05
1.52429e-05
1.91462e-05
1.67849e-05
1.49532e-05
1.57256e-05
2.24372e-05
3.22905e-05
3.13499e-05
2.32534e-05
2.1521e-05
2.18312e-05
2.71516e-05
3.2981e-05
3.73851e-05
3.93793e-05
3.70819e-05
3.3521e-05
3.20701e-05
3.34614e-05
3.61602e-05
3.88102e-05
4.07428e-05
4.22191e-05
4.35695e-05
4.45358e-05
4.48669e-05
4.49948e-05
4.54173e-05
4.56791e-05
4.55285e-05
4.51312e-05
4.4984e-05
4.53164e-05
4.59944e-05
4.67426e-05
4.74714e-05
4.78821e-05
4.84289e-05
4.90616e-05
4.8856e-05
4.7348e-05
4.67383e-05
4.74947e-05
4.87735e-05
4.95803e-05
4.93163e-05
4.96428e-05
4.96428e-05
5.08989e-05
5.13612e-05
5.26559e-05
5.23677e-05
5.31912e-05
5.32627e-05
5.33072e-05
5.45437e-05
5.49361e-05
5.45636e-05
5.35196e-05
5.13319e-05
4.93098e-05
4.92057e-05
5.08383e-05
5.25532e-05
5.29766e-05
5.24791e-05
5.2747e-05
5.16314e-05
5.20793e-05
5.27423e-05
5.19904e-05
5.33393e-05
5.6994e-05
5.78322e-05
5.39368e-05
4.88699e-05
4.09902e-05
3.36272e-05
3.76829e-05
4.3191e-05
4.42671e-05
3.88142e-05
3.57432e-05
3.30267e-05
2.96983e-05
3.03628e-05
3.31412e-05
3.31069e-05
3.18285e-05
3.65249e-05
3.69032e-05
3.38994e-05
3.19968e-05
3.04437e-05
2.56568e-05
2.71318e-05
3.10099e-05
3.38611e-05
3.38528e-05
3.62218e-05
3.03029e-05
2.85545e-05
2.2624e-05
2.71042e-05
2.13505e-05
2.92765e-05
2.32675e-05
3.25014e-05
2.85436e-05
3.73442e-05
3.29387e-05
3.96908e-05
3.3271e-05
3.99416e-05
3.38968e-05
3.95475e-05
3.74816e-05
3.87374e-05
4.18358e-05
3.87602e-05
4.33192e-05
3.33023e-05
4.30512e-05
1.6376e-05
9.80139e-06
7.48372e-06
7.00941e-06
1.30129e-05
1.31538e-05
1.43489e-05
1.39974e-05
1.1287e-05
1.10047e-05
1.03201e-05
1.06127e-05
1.00249e-05
1.02548e-05
1.18279e-05
1.18578e-05
1.4714e-05
1.35112e-05
1.08074e-05
1.44164e-05
1.23844e-05
1.22034e-05
1.38613e-05
1.89464e-05
2.10929e-05
1.57497e-05
1.43173e-05
2.16042e-05
3.08062e-05
2.54885e-05
1.7543e-05
1.88218e-05
2.70371e-05
3.66353e-05
3.94728e-05
3.17815e-05
2.68122e-05
2.66855e-05
3.21804e-05
3.77517e-05
4.12558e-05
4.36449e-05
4.35642e-05
4.08832e-05
3.87797e-05
3.97398e-05
4.20685e-05
4.38522e-05
4.46852e-05
4.5273e-05
4.61003e-05
4.70453e-05
4.79202e-05
4.88507e-05
4.9782e-05
5.00852e-05
4.97369e-05
4.91863e-05
4.89663e-05
4.9195e-05
4.96945e-05
5.03345e-05
5.10353e-05
5.15472e-05
5.21918e-05
5.28407e-05
5.30296e-05
5.22609e-05
5.21114e-05
5.2631e-05
5.30484e-05
5.31013e-05
5.20607e-05
5.21457e-05
5.18013e-05
5.27849e-05
5.33208e-05
5.39883e-05
5.41381e-05
5.47215e-05
5.49435e-05
5.53629e-05
5.63418e-05
5.67505e-05
5.66602e-05
5.61602e-05
5.49413e-05
5.39476e-05
5.39403e-05
5.46055e-05
5.51097e-05
5.4617e-05
5.34598e-05
5.34298e-05
5.21792e-05
5.22712e-05
5.30702e-05
5.32914e-05
5.42465e-05
5.65993e-05
5.83483e-05
5.82459e-05
5.83275e-05
5.68639e-05
5.20926e-05
5.50807e-05
5.84833e-05
5.82221e-05
5.15383e-05
4.52544e-05
4.09701e-05
3.60296e-05
3.58006e-05
3.71942e-05
3.63492e-05
3.51722e-05
3.93939e-05
3.98601e-05
3.89119e-05
3.77238e-05
3.73387e-05
3.32267e-05
3.47459e-05
3.6967e-05
3.83628e-05
3.67042e-05
3.78948e-05
3.46339e-05
3.52012e-05
3.32199e-05
3.70408e-05
3.2671e-05
3.78468e-05
3.20511e-05
3.85905e-05
3.40227e-05
4.05131e-05
3.5284e-05
4.09453e-05
3.46574e-05
4.07333e-05
3.47263e-05
4.12878e-05
3.74207e-05
4.15856e-05
4.1792e-05
4.15429e-05
4.20964e-05
3.5794e-05
3.96264e-05
7.54055e-06
7.63862e-06
7.26161e-06
7.93971e-06
1.51682e-05
1.61693e-05
1.6587e-05
1.6258e-05
1.34884e-05
1.33357e-05
1.27354e-05
1.3428e-05
1.35444e-05
1.41359e-05
1.60769e-05
1.45813e-05
2.02894e-05
2.04842e-05
1.56424e-05
2.24692e-05
2.45626e-05
2.07665e-05
2.17116e-05
3.07596e-05
3.47051e-05
2.49027e-05
2.03009e-05
2.92065e-05
3.95961e-05
3.59706e-05
2.28607e-05
2.39379e-05
3.35378e-05
4.04102e-05
4.30582e-05
3.87545e-05
3.31707e-05
3.2937e-05
3.95169e-05
4.41551e-05
4.53692e-05
4.61571e-05
4.65824e-05
4.60915e-05
4.58924e-05
4.72606e-05
4.85441e-05
4.86275e-05
4.79964e-05
4.76233e-05
4.78717e-05
4.86037e-05
4.97001e-05
5.10626e-05
5.22344e-05
5.25422e-05
5.21279e-05
5.15706e-05
5.13619e-05
5.15177e-05
5.18468e-05
5.23323e-05
5.29241e-05
5.34406e-05
5.40741e-05
5.45987e-05
5.48919e-05
5.46564e-05
5.49779e-05
5.53336e-05
5.52283e-05
5.48314e-05
5.3407e-05
5.34065e-05
5.28794e-05
5.368e-05
5.428e-05
5.45096e-05
5.4948e-05
5.54324e-05
5.57621e-05
5.64749e-05
5.72774e-05
5.759e-05
5.75567e-05
5.72712e-05
5.66207e-05
5.62836e-05
5.63028e-05
5.6388e-05
5.62016e-05
5.51918e-05
5.36257e-05
5.33601e-05
5.20331e-05
5.18636e-05
5.25746e-05
5.36756e-05
5.49248e-05
5.62032e-05
5.77341e-05
5.93014e-05
6.1454e-05
6.22531e-05
6.13249e-05
6.3997e-05
6.49687e-05
6.32212e-05
5.70448e-05
5.01414e-05
4.49595e-05
4.01799e-05
3.91961e-05
3.92238e-05
3.79855e-05
3.74818e-05
4.09933e-05
4.10729e-05
4.13045e-05
4.05996e-05
4.06636e-05
3.83406e-05
4.01964e-05
4.01326e-05
4.03263e-05
3.78697e-05
3.8385e-05
3.62739e-05
3.879e-05
3.91456e-05
4.26673e-05
4.02775e-05
4.33934e-05
3.87139e-05
4.26212e-05
3.73512e-05
4.21674e-05
3.63268e-05
4.13335e-05
3.52134e-05
4.07811e-05
3.50977e-05
4.20839e-05
3.68779e-05
4.33405e-05
4.11522e-05
4.29538e-05
4.00196e-05
3.69922e-05
3.3091e-05
0
5.21349e-06
7.60106e-06
9.73276e-06
1.78573e-05
1.92476e-05
1.92809e-05
1.95826e-05
1.77421e-05
1.82573e-05
1.82944e-05
1.94461e-05
2.07377e-05
2.23584e-05
2.47315e-05
2.48417e-05
2.83837e-05
2.99778e-05
2.87573e-05
3.18496e-05
3.36996e-05
3.33583e-05
3.46689e-05
3.83865e-05
4.02391e-05
3.65796e-05
3.58074e-05
4.02399e-05
4.31594e-05
4.0295e-05
3.37263e-05
3.72208e-05
4.3562e-05
4.46193e-05
4.39955e-05
4.15627e-05
4.04068e-05
4.32024e-05
4.82752e-05
4.92963e-05
4.78609e-05
4.71733e-05
4.7353e-05
4.79914e-05
4.94025e-05
5.10142e-05
5.14215e-05
5.05556e-05
4.9301e-05
4.85382e-05
4.84968e-05
4.90859e-05
5.02718e-05
5.17807e-05
5.29401e-05
5.3161e-05
5.27284e-05
5.22489e-05
5.21181e-05
5.22626e-05
5.24951e-05
5.28723e-05
5.33643e-05
5.38457e-05
5.44173e-05
5.48054e-05
5.51246e-05
5.51819e-05
5.57709e-05
5.60155e-05
5.56392e-05
5.5017e-05
5.34254e-05
5.34824e-05
5.28319e-05
5.35453e-05
5.41807e-05
5.40494e-05
5.47672e-05
5.51293e-05
5.55688e-05
5.64932e-05
5.71253e-05
5.73376e-05
5.72847e-05
5.71318e-05
5.68214e-05
5.68293e-05
5.68771e-05
5.66614e-05
5.60033e-05
5.46073e-05
5.27364e-05
5.22248e-05
5.08106e-05
5.04523e-05
5.11188e-05
5.29618e-05
5.45957e-05
5.52005e-05
5.63287e-05
5.88934e-05
6.18877e-05
6.32234e-05
6.35224e-05
6.53031e-05
6.47062e-05
6.20428e-05
5.61598e-05
5.0048e-05
4.52309e-05
4.12045e-05
4.02086e-05
3.94573e-05
3.81512e-05
3.84011e-05
4.13671e-05
4.11376e-05
4.18646e-05
4.1271e-05
4.14491e-05
3.99094e-05
4.19489e-05
4.06999e-05
4.0372e-05
3.73599e-05
3.7833e-05
3.63937e-05
4.01179e-05
4.10974e-05
4.42546e-05
4.24544e-05
4.46061e-05
4.0569e-05
4.34599e-05
3.81514e-05
4.22647e-05
3.60707e-05
4.06769e-05
3.47792e-05
3.98279e-05
3.48113e-05
4.17764e-05
3.55161e-05
4.40721e-05
3.93059e-05
4.29962e-05
3.68681e-05
3.5912e-05
2.2498e-05
0
3.1758e-06
6.43709e-06
1.20134e-05
1.99818e-05
2.12522e-05
2.16012e-05
2.24649e-05
2.26669e-05
2.38689e-05
2.47035e-05
2.56711e-05
2.68954e-05
2.80966e-05
2.93663e-05
3.0701e-05
3.21029e-05
3.29542e-05
3.33189e-05
3.49881e-05
3.58154e-05
3.63078e-05
3.81106e-05
4.00013e-05
4.01552e-05
3.87831e-05
4.06701e-05
4.32974e-05
4.30129e-05
3.92485e-05
3.76027e-05
4.29975e-05
4.65673e-05
4.4866e-05
4.22724e-05
4.1004e-05
4.28073e-05
4.72106e-05
5.06092e-05
4.9758e-05
4.71673e-05
4.57011e-05
4.58222e-05
4.71845e-05
4.93261e-05
5.08791e-05
5.0795e-05
4.9538e-05
4.8131e-05
4.72841e-05
4.71021e-05
4.76059e-05
4.88257e-05
5.02723e-05
5.11614e-05
5.11671e-05
5.07845e-05
5.05473e-05
5.0622e-05
5.0819e-05
5.09662e-05
5.1207e-05
5.15368e-05
5.19038e-05
5.22852e-05
5.24333e-05
5.28053e-05
5.31992e-05
5.40641e-05
5.41378e-05
5.34389e-05
5.25916e-05
5.0957e-05
5.12874e-05
5.0493e-05
5.12033e-05
5.17762e-05
5.11552e-05
5.23768e-05
5.24124e-05
5.30886e-05
5.41567e-05
5.44177e-05
5.45056e-05
5.43811e-05
5.44169e-05
5.45283e-05
5.49245e-05
5.50538e-05
5.44487e-05
5.30404e-05
5.10732e-05
4.8913e-05
4.80618e-05
4.64614e-05
4.59982e-05
4.71443e-05
4.97539e-05
5.12816e-05
5.14438e-05
5.25546e-05
5.60177e-05
5.93799e-05
6.08585e-05
6.16927e-05
6.20945e-05
5.89827e-05
5.50965e-05
5.01679e-05
4.58963e-05
4.22124e-05
3.96128e-05
3.88511e-05
3.70711e-05
3.61205e-05
3.73844e-05
3.95947e-05
3.90897e-05
4.01219e-05
3.93803e-05
3.97353e-05
3.86647e-05
4.09725e-05
3.81943e-05
3.72899e-05
3.34034e-05
3.4984e-05
3.45643e-05
3.93184e-05
4.03087e-05
4.29616e-05
4.139e-05
4.25997e-05
3.93063e-05
4.12635e-05
3.64347e-05
3.96503e-05
3.30789e-05
3.72397e-05
3.19129e-05
3.60685e-05
3.28828e-05
3.87009e-05
3.17715e-05
4.28317e-05
3.42479e-05
3.97422e-05
3.08997e-05
2.69692e-05
6.3669e-06
8.09098e-06
1.8325e-06
2.35241e-06
1.42193e-05
2.04307e-05
2.04901e-05
2.0595e-05
2.12699e-05
2.1897e-05
2.2931e-05
2.35828e-05
2.41948e-05
2.50593e-05
2.57572e-05
2.67422e-05
2.78684e-05
2.88327e-05
2.90732e-05
2.97747e-05
3.11343e-05
3.08963e-05
3.14943e-05
3.40667e-05
3.40752e-05
3.14433e-05
3.17668e-05
3.64362e-05
3.85322e-05
3.34663e-05
2.89617e-05
3.16125e-05
3.9413e-05
4.19964e-05
3.5604e-05
2.97459e-05
3.08134e-05
3.60522e-05
4.20819e-05
4.43425e-05
4.08961e-05
3.60628e-05
3.33754e-05
3.35798e-05
3.58721e-05
3.86425e-05
3.98027e-05
3.88966e-05
3.72958e-05
3.61525e-05
3.55425e-05
3.52411e-05
3.55434e-05
3.65546e-05
3.73549e-05
3.71552e-05
3.64637e-05
3.62986e-05
3.69202e-05
3.77625e-05
3.82527e-05
3.82449e-05
3.81226e-05
3.80109e-05
3.79424e-05
3.76471e-05
3.71635e-05
3.75176e-05
3.86455e-05
3.99969e-05
3.96457e-05
3.82162e-05
3.69356e-05
3.57406e-05
3.67224e-05
3.61705e-05
3.6676e-05
3.68953e-05
3.54897e-05
3.70861e-05
3.70104e-05
3.779e-05
3.88137e-05
3.83332e-05
3.77902e-05
3.77081e-05
3.82888e-05
3.91144e-05
4.01453e-05
4.03718e-05
3.89356e-05
3.61232e-05
3.33964e-05
3.13746e-05
3.02469e-05
2.85599e-05
2.82341e-05
3.10638e-05
3.41575e-05
3.34775e-05
3.28665e-05
3.49659e-05
3.94162e-05
4.24334e-05
4.39048e-05
4.43865e-05
4.07632e-05
3.33504e-05
2.87093e-05
2.71186e-05
2.71884e-05
2.60104e-05
2.68601e-05
2.65532e-05
2.28368e-05
2.26201e-05
2.60968e-05
2.68188e-05
2.57122e-05
2.71028e-05
2.60421e-05
2.63142e-05
2.65514e-05
2.88729e-05
2.29909e-05
2.02552e-05
1.57415e-05
2.02537e-05
2.31218e-05
2.87155e-05
2.95162e-05
2.97143e-05
2.88967e-05
2.73792e-05
2.62245e-05
2.58819e-05
2.31157e-05
2.39455e-05
1.79485e-05
2.07946e-05
1.72608e-05
1.96911e-05
2.12172e-05
2.26092e-05
1.83627e-05
2.86973e-05
1.82331e-05
2.12075e-05
1.19586e-05
0
0
7.82041e-06
0
2.11379e-05
9.03032e-06
0
7.64123e-07
1.08259e-05
1.65226e-05
1.50597e-05
1.76348e-05
1.99491e-05
1.16728e-05
1.56906e-05
1.25114e-05
1.07296e-05
1.30033e-05
1.53806e-05
1.93849e-05
2.22506e-05
2.53313e-05
2.59735e-05
2.47288e-05
2.16346e-05
1.88552e-05
1.73909e-05
1.80099e-05
1.96796e-05
2.19629e-05
2.36415e-05
2.48694e-05
2.67218e-05
2.75093e-05
2.74669e-05
2.61296e-05
2.52755e-05
2.51323e-05
2.68893e-05
2.8823e-05
3.07109e-05
3.08281e-05
3.00681e-05
2.98117e-05
3.10952e-05
3.22826e-05
3.22686e-05
3.12056e-05
3.08221e-05
3.12787e-05
3.14428e-05
3.14253e-05
3.14033e-05
3.11827e-05
3.1464e-05
3.14744e-05
3.09145e-05
2.97688e-05
2.86765e-05
2.80347e-05
2.83169e-05
2.92527e-05
3.04819e-05
3.14447e-05
3.19559e-05
3.24513e-05
3.30581e-05
3.33468e-05
3.23961e-05
3.09695e-05
3.03511e-05
3.12101e-05
3.24039e-05
3.27371e-05
3.16091e-05
2.92906e-05
2.75992e-05
2.77709e-05
3.01364e-05
3.35182e-05
3.48428e-05
3.29145e-05
3.01418e-05
2.85002e-05
2.78955e-05
2.81115e-05
3.05596e-05
3.55437e-05
3.97337e-05
3.69984e-05
3.0828e-05
3.12781e-05
3.6891e-05
3.94902e-05
3.29185e-05
2.66847e-05
2.59929e-05
2.65362e-05
2.85296e-05
3.07333e-05
3.34215e-05
3.38961e-05
3.28006e-05
3.22552e-05
3.14374e-05
3.09207e-05
3.05527e-05
3.05426e-05
3.00362e-05
2.97884e-05
2.95128e-05
2.95426e-05
2.935e-05
2.89542e-05
2.83018e-05
2.79842e-05
2.81226e-05
2.86643e-05
2.91464e-05
2.93285e-05
2.9111e-05
2.87763e-05
2.8484e-05
2.83534e-05
2.81845e-05
2.78313e-05
2.71774e-05
2.64263e-05
2.57183e-05
2.51427e-05
2.45551e-05
2.39073e-05
2.3179e-05
2.27121e-05
2.28373e-05
2.33975e-05
2.37744e-05
2.31685e-05
2.09266e-05
1.74861e-05
1.57665e-05
1.84699e-05
2.78977e-05
3.53402e-05
2.81e-05
1.7416e-05
1.92059e-05
2.06366e-05
2.08644e-05
2.4106e-05
3.05819e-05
3.23361e-05
2.60564e-05
1.42856e-07
1.83996e-05
1.05204e-05
0
1.30174e-05
2.23901e-05
2.48311e-05
2.39841e-05
2.73083e-05
2.57045e-05
2.34718e-05
2.30664e-05
2.25231e-05
2.22388e-05
2.46394e-05
2.7652e-05
3.02895e-05
3.23648e-05
3.29114e-05
3.22726e-05
3.04671e-05
2.89793e-05
2.83444e-05
2.84142e-05
2.9699e-05
3.1308e-05
3.32967e-05
3.48816e-05
3.62719e-05
3.77148e-05
3.79652e-05
3.80141e-05
3.73134e-05
3.74302e-05
3.80598e-05
4.01372e-05
4.13854e-05
4.21793e-05
4.16965e-05
4.14638e-05
4.15548e-05
4.25526e-05
4.30261e-05
4.29319e-05
4.20414e-05
4.18404e-05
4.21611e-05
4.24225e-05
4.23935e-05
4.22782e-05
4.19897e-05
4.19516e-05
4.15568e-05
4.08209e-05
3.97975e-05
3.91865e-05
3.91198e-05
3.97692e-05
4.0668e-05
4.15587e-05
4.20889e-05
4.23962e-05
4.27291e-05
4.29593e-05
4.27854e-05
4.19089e-05
4.11744e-05
4.09739e-05
4.13634e-05
4.16086e-05
4.11646e-05
3.97695e-05
3.80436e-05
3.73546e-05
3.78976e-05
3.92062e-05
4.0375e-05
3.9411e-05
3.70678e-05
3.63204e-05
3.73849e-05
3.80225e-05
3.8876e-05
4.16916e-05
4.53088e-05
4.60649e-05
4.20502e-05
3.9621e-05
4.31375e-05
4.58879e-05
4.57496e-05
4.0844e-05
3.81456e-05
3.69259e-05
3.75043e-05
3.87005e-05
4.14734e-05
4.18521e-05
4.27487e-05
4.157e-05
4.15098e-05
3.99913e-05
3.95406e-05
3.89032e-05
3.86521e-05
3.78385e-05
3.76846e-05
3.73709e-05
3.72871e-05
3.67411e-05
3.61512e-05
3.55263e-05
3.5322e-05
3.53382e-05
3.55005e-05
3.54915e-05
3.53186e-05
3.49971e-05
3.47225e-05
3.44646e-05
3.41264e-05
3.35234e-05
3.26666e-05
3.16399e-05
3.0636e-05
2.97836e-05
2.90901e-05
2.85346e-05
2.80595e-05
2.75632e-05
2.7232e-05
2.69687e-05
2.68783e-05
2.62208e-05
2.46534e-05
2.10886e-05
1.87647e-05
2.105e-05
2.6722e-05
3.39116e-05
3.64772e-05
2.39318e-05
1.17985e-05
2.53019e-05
2.26672e-05
2.51978e-05
2.7385e-05
3.36756e-05
3.31932e-05
2.19672e-05
4.03513e-07
1.71029e-05
1.50682e-05
4.91485e-06
1.9793e-05
2.53456e-05
2.61964e-05
2.58116e-05
2.98489e-05
2.61648e-05
2.77417e-05
2.42188e-05
2.61885e-05
2.66154e-05
2.87612e-05
3.16893e-05
3.28459e-05
3.43771e-05
3.36349e-05
3.2747e-05
3.08251e-05
3.01599e-05
3.065e-05
3.13346e-05
3.27876e-05
3.45029e-05
3.61626e-05
3.74777e-05
3.86994e-05
3.98356e-05
3.99286e-05
4.01177e-05
3.99324e-05
4.05836e-05
4.15292e-05
4.36139e-05
4.44874e-05
4.46975e-05
4.38869e-05
4.38186e-05
4.40557e-05
4.49535e-05
4.51044e-05
4.49098e-05
4.40431e-05
4.39788e-05
4.41935e-05
4.44303e-05
4.44251e-05
4.42093e-05
4.39509e-05
4.37823e-05
4.3259e-05
4.25353e-05
4.16855e-05
4.13647e-05
4.15706e-05
4.23336e-05
4.31795e-05
4.38757e-05
4.41492e-05
4.42628e-05
4.44319e-05
4.44538e-05
4.40844e-05
4.33048e-05
4.29365e-05
4.29439e-05
4.30258e-05
4.28004e-05
4.20494e-05
4.05367e-05
3.91948e-05
3.89502e-05
3.94537e-05
4.00553e-05
3.98947e-05
3.72305e-05
3.42636e-05
3.52127e-05
3.81961e-05
3.94941e-05
4.047e-05
4.28188e-05
4.4942e-05
4.21785e-05
3.51952e-05
3.8595e-05
4.46834e-05
4.51147e-05
4.25322e-05
4.01618e-05
4.17973e-05
3.88106e-05
3.99417e-05
4.05884e-05
4.37303e-05
4.2636e-05
4.3782e-05
4.26671e-05
4.28203e-05
4.10124e-05
4.05162e-05
3.98206e-05
3.94842e-05
3.85677e-05
3.84699e-05
3.81677e-05
3.80021e-05
3.72744e-05
3.65829e-05
3.59876e-05
3.58488e-05
3.57887e-05
3.5689e-05
3.53368e-05
3.48725e-05
3.44497e-05
3.42375e-05
3.40631e-05
3.36291e-05
3.27646e-05
3.15755e-05
3.03176e-05
2.91866e-05
2.83208e-05
2.7621e-05
2.72037e-05
2.7103e-05
2.70166e-05
2.70237e-05
2.64517e-05
2.57441e-05
2.36387e-05
2.01279e-05
1.45661e-05
1.6207e-05
2.20016e-05
2.82302e-05
3.32973e-05
3.04914e-05
1.11474e-05
0
2.60708e-05
2.05927e-05
2.4634e-05
2.64565e-05
3.08532e-05
2.78277e-05
1.39669e-05
5.42248e-06
1.33975e-05
1.87003e-05
8.49303e-06
2.33497e-05
2.53431e-05
2.59666e-05
2.57948e-05
3.01401e-05
2.55887e-05
3.02101e-05
2.40026e-05
2.79655e-05
2.83152e-05
3.03242e-05
3.29938e-05
3.33281e-05
3.45101e-05
3.30287e-05
3.17677e-05
2.97835e-05
3.01641e-05
3.14242e-05
3.22417e-05
3.36208e-05
3.53812e-05
3.68634e-05
3.79758e-05
3.89935e-05
3.99272e-05
3.99626e-05
4.03775e-05
4.06581e-05
4.15897e-05
4.25244e-05
4.45292e-05
4.52262e-05
4.51775e-05
4.42183e-05
4.42021e-05
4.44678e-05
4.53083e-05
4.53193e-05
4.51038e-05
4.4247e-05
4.42241e-05
4.43516e-05
4.45701e-05
4.45479e-05
4.42587e-05
4.40084e-05
4.37536e-05
4.31822e-05
4.25347e-05
4.18809e-05
4.1773e-05
4.20884e-05
4.28339e-05
4.35876e-05
4.41387e-05
4.42287e-05
4.41558e-05
4.4135e-05
4.39527e-05
4.34656e-05
4.28799e-05
4.28593e-05
4.29007e-05
4.25982e-05
4.19457e-05
4.09119e-05
3.93753e-05
3.85616e-05
3.86013e-05
3.86513e-05
3.7843e-05
3.46207e-05
2.79756e-05
2.38126e-05
2.78465e-05
3.54092e-05
3.81545e-05
3.89178e-05
3.90986e-05
3.62857e-05
2.63482e-05
1.54392e-05
2.87164e-05
4.07764e-05
3.82786e-05
3.19755e-05
3.64138e-05
4.3496e-05
3.90538e-05
4.00869e-05
4.04242e-05
4.37695e-05
4.16635e-05
4.29912e-05
4.21021e-05
4.24382e-05
4.03246e-05
3.96794e-05
3.88596e-05
3.84773e-05
3.75209e-05
3.74907e-05
3.71777e-05
3.68476e-05
3.58243e-05
3.4968e-05
3.44116e-05
3.43726e-05
3.41686e-05
3.35762e-05
3.24708e-05
3.12598e-05
3.04951e-05
3.03525e-05
3.03623e-05
2.97579e-05
2.83222e-05
2.63219e-05
2.44528e-05
2.29352e-05
2.19907e-05
2.12133e-05
2.1215e-05
2.23302e-05
2.37136e-05
2.49234e-05
2.40027e-05
2.22491e-05
1.78319e-05
1.40796e-05
9.48941e-06
1.37169e-05
2.10707e-05
2.77285e-05
3.03794e-05
2.28276e-05
9.515e-06
0
1.84811e-05
1.44274e-05
2.13399e-05
2.32478e-05
2.42395e-05
2.28595e-05
9.76297e-06
7.37545e-06
8.54316e-06
1.82238e-05
1.13797e-05
2.44874e-05
2.41343e-05
2.42601e-05
2.4471e-05
2.9303e-05
2.36753e-05
3.20558e-05
2.3191e-05
2.89468e-05
2.89638e-05
3.09175e-05
3.32785e-05
3.30469e-05
3.37632e-05
3.11808e-05
2.91207e-05
2.73778e-05
2.94761e-05
3.1481e-05
3.23861e-05
3.3604e-05
3.53531e-05
3.66723e-05
3.75357e-05
3.82164e-05
3.88463e-05
3.88372e-05
3.96683e-05
4.05713e-05
4.17722e-05
4.25615e-05
4.44346e-05
4.49958e-05
4.47579e-05
4.36769e-05
4.36579e-05
4.39001e-05
4.47009e-05
4.46165e-05
4.43949e-05
4.35217e-05
4.35323e-05
4.35651e-05
4.37328e-05
4.36239e-05
4.32109e-05
4.29328e-05
4.25744e-05
4.19902e-05
4.1522e-05
4.12059e-05
4.13747e-05
4.17652e-05
4.24178e-05
4.30068e-05
4.33429e-05
4.31514e-05
4.27204e-05
4.22906e-05
4.17192e-05
4.11131e-05
4.09608e-05
4.14961e-05
4.15115e-05
4.04576e-05
3.89229e-05
3.74157e-05
3.60022e-05
3.61797e-05
3.66545e-05
3.57928e-05
3.26132e-05
2.69937e-05
2.07947e-05
1.75269e-05
1.79004e-05
2.29056e-05
2.93614e-05
3.32558e-05
3.01473e-05
2.26424e-05
1.34684e-05
3.06918e-06
8.3207e-06
2.25852e-05
2.80871e-05
2.17435e-05
2.77094e-05
4.18646e-05
3.94041e-05
3.87304e-05
3.89218e-05
4.23978e-05
3.93959e-05
4.06843e-05
4.03068e-05
4.08155e-05
3.83252e-05
3.73141e-05
3.61072e-05
3.56686e-05
3.48185e-05
3.48745e-05
3.45301e-05
3.38849e-05
3.22998e-05
3.10932e-05
3.05384e-05
3.06792e-05
3.03584e-05
2.92189e-05
2.73724e-05
2.55476e-05
2.43854e-05
2.38619e-05
2.36138e-05
2.28661e-05
2.13651e-05
1.92587e-05
1.73323e-05
1.56477e-05
1.45258e-05
1.33872e-05
1.2869e-05
1.37736e-05
1.5918e-05
1.93262e-05
1.92041e-05
1.7188e-05
1.17806e-05
9.80044e-06
6.67106e-06
1.01865e-05
1.8337e-05
2.61768e-05
2.71681e-05
1.69429e-05
9.43726e-06
0
9.1275e-06
4.12489e-06
1.38663e-05
1.93767e-05
1.55438e-05
1.95971e-05
8.5941e-06
9.38287e-06
7.09527e-06
1.60524e-05
1.30332e-05
2.40508e-05
2.14431e-05
1.99458e-05
2.14495e-05
2.72783e-05
2.00064e-05
3.31753e-05
2.23988e-05
2.93437e-05
2.90447e-05
3.09999e-05
3.29678e-05
3.21495e-05
3.20423e-05
2.7854e-05
2.51276e-05
2.41513e-05
2.79272e-05
3.07783e-05
3.20147e-05
3.29708e-05
3.4607e-05
3.56949e-05
3.60975e-05
3.60323e-05
3.61417e-05
3.61783e-05
3.78213e-05
3.97239e-05
4.13838e-05
4.19571e-05
4.35888e-05
4.39876e-05
4.35387e-05
4.23296e-05
4.22493e-05
4.24023e-05
4.31851e-05
4.30222e-05
4.27725e-05
4.18457e-05
4.19381e-05
4.18568e-05
4.18861e-05
4.15515e-05
4.08877e-05
4.04852e-05
3.99549e-05
3.94146e-05
3.92977e-05
3.96081e-05
4.02582e-05
4.07725e-05
4.12499e-05
4.15316e-05
4.14731e-05
4.07941e-05
3.9728e-05
3.85826e-05
3.73814e-05
3.66048e-05
3.69701e-05
3.82424e-05
3.8453e-05
3.65209e-05
3.37179e-05
3.16819e-05
3.0378e-05
3.14905e-05
3.27439e-05
3.16847e-05
2.73247e-05
2.17044e-05
1.78236e-05
1.56724e-05
1.41264e-05
1.38349e-05
1.558e-05
1.93026e-05
1.76004e-05
1.0384e-05
7.25494e-06
2.55673e-06
2.78041e-07
7.82196e-07
5.21323e-06
9.95526e-06
1.6918e-05
3.50941e-05
3.94013e-05
3.62232e-05
3.57902e-05
3.90954e-05
3.63164e-05
3.71635e-05
3.72737e-05
3.77077e-05
3.5225e-05
3.39244e-05
3.20309e-05
3.12501e-05
3.07277e-05
3.0908e-05
3.05976e-05
2.97853e-05
2.78349e-05
2.63293e-05
2.56108e-05
2.5749e-05
2.55052e-05
2.44841e-05
2.28814e-05
2.138e-05
2.03186e-05
1.94454e-05
1.86429e-05
1.75996e-05
1.63149e-05
1.47769e-05
1.33763e-05
1.19817e-05
1.08715e-05
9.6465e-06
8.49408e-06
8.01496e-06
8.27762e-06
1.09485e-05
1.16876e-05
1.09338e-05
6.47301e-06
6.60121e-06
5.97931e-06
7.37852e-06
1.4351e-05
2.36044e-05
2.41815e-05
9.41504e-06
8.87507e-06
0
9.50916e-07
0
6.63681e-06
1.50703e-05
5.6922e-06
1.54388e-05
8.92262e-06
1.12034e-05
4.53222e-06
1.31642e-05
1.35697e-05
2.23981e-05
1.71173e-05
1.36307e-05
1.67887e-05
2.3831e-05
1.48951e-05
3.3177e-05
2.21253e-05
2.91844e-05
2.86669e-05
3.07005e-05
3.21232e-05
3.06187e-05
2.94266e-05
2.3984e-05
2.14234e-05
2.1069e-05
2.53858e-05
2.89888e-05
3.11376e-05
3.17661e-05
3.30035e-05
3.37381e-05
3.34386e-05
3.2051e-05
3.15596e-05
3.17917e-05
3.44282e-05
3.77001e-05
4.03927e-05
4.08577e-05
4.20214e-05
4.21546e-05
4.1416e-05
4.01169e-05
3.99652e-05
3.99327e-05
4.06695e-05
4.04589e-05
4.01348e-05
3.91108e-05
3.9376e-05
3.91956e-05
3.90379e-05
3.83422e-05
3.73341e-05
3.67085e-05
3.58725e-05
3.5379e-05
3.56024e-05
3.67589e-05
3.82313e-05
3.91108e-05
3.94088e-05
3.92465e-05
3.8623e-05
3.74124e-05
3.57968e-05
3.41106e-05
3.23741e-05
3.1189e-05
3.12916e-05
3.26197e-05
3.34125e-05
3.17218e-05
2.84386e-05
2.62152e-05
2.46404e-05
2.54869e-05
2.68739e-05
2.66572e-05
2.28785e-05
1.80734e-05
1.55506e-05
1.40685e-05
1.21224e-05
9.9568e-06
8.13458e-06
8.51698e-06
6.36229e-06
1.86224e-06
3.44191e-06
1.78815e-06
0
0
0
0
3.22297e-06
2.54822e-05
3.63884e-05
3.40231e-05
3.15285e-05
3.36184e-05
3.26527e-05
3.35053e-05
3.35581e-05
3.33168e-05
3.14093e-05
3.05058e-05
2.83025e-05
2.68716e-05
2.64248e-05
2.67421e-05
2.65325e-05
2.58328e-05
2.4016e-05
2.25108e-05
2.16154e-05
2.15027e-05
2.12877e-05
2.0702e-05
1.98151e-05
1.89619e-05
1.81991e-05
1.72679e-05
1.62137e-05
1.50187e-05
1.38572e-05
1.26838e-05
1.16071e-05
1.04475e-05
9.4112e-06
8.26926e-06
6.92555e-06
5.75326e-06
4.454e-06
4.80829e-06
4.87375e-06
5.10711e-06
3.40238e-06
4.83939e-06
5.93014e-06
6.26193e-06
9.33157e-06
1.95878e-05
2.10259e-05
8.88029e-07
8.22735e-06
0
0
0
0
1.00805e-05
0
9.67367e-06
9.53389e-06
1.28415e-05
2.96468e-06
1.02504e-05
1.30973e-05
1.97826e-05
1.228e-05
7.60218e-06
1.0878e-05
1.90756e-05
8.26352e-06
3.08983e-05
2.23366e-05
2.85808e-05
2.78079e-05
3.00665e-05
3.07531e-05
2.85733e-05
2.64552e-05
2.06987e-05
1.87242e-05
1.84408e-05
2.21868e-05
2.59167e-05
2.95431e-05
3.01146e-05
3.04995e-05
3.0733e-05
3.00588e-05
2.74387e-05
2.64757e-05
2.67329e-05
2.96941e-05
3.38238e-05
3.82792e-05
3.93191e-05
3.97807e-05
3.93989e-05
3.82125e-05
3.6946e-05
3.68947e-05
3.66889e-05
3.72229e-05
3.7016e-05
3.65897e-05
3.54006e-05
3.59153e-05
3.5686e-05
3.55391e-05
3.45364e-05
3.32673e-05
3.25542e-05
3.13417e-05
3.07951e-05
3.09156e-05
3.25025e-05
3.48419e-05
3.65452e-05
3.69348e-05
3.64064e-05
3.52435e-05
3.37002e-05
3.19111e-05
3.01455e-05
2.82474e-05
2.66875e-05
2.59372e-05
2.61084e-05
2.66601e-05
2.59837e-05
2.3594e-05
2.18969e-05
2.01803e-05
2.03184e-05
2.05709e-05
2.05599e-05
1.82243e-05
1.4785e-05
1.32234e-05
1.22173e-05
1.03157e-05
7.81972e-06
4.83727e-06
3.58031e-06
1.18279e-06
0
1.95243e-06
8.26969e-07
0
0
0
0
0
1.36654e-05
2.99107e-05
3.19326e-05
2.82993e-05
2.81982e-05
2.8476e-05
3.01013e-05
3.00536e-05
2.87551e-05
2.71758e-05
2.70839e-05
2.53995e-05
2.37152e-05
2.29793e-05
2.32976e-05
2.31734e-05
2.26332e-05
2.11732e-05
1.98708e-05
1.89446e-05
1.8608e-05
1.83746e-05
1.81365e-05
1.78342e-05
1.74759e-05
1.69678e-05
1.61017e-05
1.50021e-05
1.3774e-05
1.26585e-05
1.16237e-05
1.06754e-05
9.64233e-06
8.67143e-06
7.62438e-06
6.2624e-06
4.91012e-06
3.08623e-06
2.17565e-06
1.70974e-06
2.53841e-06
2.79635e-06
4.15626e-06
5.3776e-06
5.68229e-06
4.15926e-06
1.22868e-05
1.60565e-05
6.71003e-07
6.5966e-06
0
0
0
0
4.71947e-06
0
3.53378e-06
1.01783e-05
1.41904e-05
1.13757e-06
7.19259e-06
1.17316e-05
1.66671e-05
8.24441e-06
4.35189e-06
4.70574e-06
1.3924e-05
1.19875e-06
2.54724e-05
2.21155e-05
2.78287e-05
2.64451e-05
2.90863e-05
2.89506e-05
2.62381e-05
2.36166e-05
1.82562e-05
1.67269e-05
1.61801e-05
1.88783e-05
2.19185e-05
2.69292e-05
2.81739e-05
2.76073e-05
2.70585e-05
2.66631e-05
2.36464e-05
2.23794e-05
2.23205e-05
2.46876e-05
2.82343e-05
3.39452e-05
3.67736e-05
3.67888e-05
3.55015e-05
3.36541e-05
3.25595e-05
3.29563e-05
3.29559e-05
3.31208e-05
3.28841e-05
3.24105e-05
3.10439e-05
3.19612e-05
3.14976e-05
3.17404e-05
3.07421e-05
2.92923e-05
2.88284e-05
2.73766e-05
2.67603e-05
2.63945e-05
2.75782e-05
2.99667e-05
3.25284e-05
3.352e-05
3.30322e-05
3.15649e-05
2.9905e-05
2.81882e-05
2.66071e-05
2.48098e-05
2.3097e-05
2.17421e-05
2.07047e-05
2.0206e-05
1.95988e-05
1.83438e-05
1.78659e-05
1.63414e-05
1.63157e-05
1.55305e-05
1.47536e-05
1.33482e-05
1.13961e-05
1.07167e-05
1.0086e-05
8.33873e-06
5.98173e-06
2.77258e-06
1.08858e-06
0
0
3.31727e-07
0
0
0
0
0
0
0
1.97621e-05
2.84802e-05
2.67421e-05
2.47447e-05
2.51273e-05
2.69103e-05
2.69193e-05
2.50612e-05
2.3298e-05
2.34631e-05
2.2638e-05
2.14555e-05
2.05164e-05
2.07648e-05
2.07112e-05
2.02414e-05
1.90699e-05
1.79874e-05
1.71431e-05
1.67185e-05
1.64959e-05
1.64659e-05
1.65113e-05
1.64548e-05
1.61322e-05
1.53572e-05
1.42849e-05
1.30643e-05
1.19637e-05
1.0976e-05
1.00768e-05
9.11335e-06
8.19238e-06
7.22708e-06
5.89011e-06
4.52094e-06
2.577e-06
1.2787e-06
6.31872e-07
1.60719e-06
2.30291e-06
3.4142e-06
4.18415e-06
5.04238e-06
7.91776e-07
2.55924e-06
6.99044e-06
2.11628e-06
4.87962e-06
0
0
0
0
1.73721e-06
3.76074e-06
0
1.08859e-05
1.5318e-05
0
4.23247e-06
9.74083e-06
1.35427e-05
5.29538e-06
4.18461e-06
0
9.18282e-06
0
1.86062e-05
1.96632e-05
2.70387e-05
2.48173e-05
2.76292e-05
2.69418e-05
2.37765e-05
2.10504e-05
1.63941e-05
1.50885e-05
1.41761e-05
1.58263e-05
1.75701e-05
2.32685e-05
2.58629e-05
2.50156e-05
2.35144e-05
2.34529e-05
2.08402e-05
1.94631e-05
1.90365e-05
2.0401e-05
2.22264e-05
2.69655e-05
3.12623e-05
3.19037e-05
2.97327e-05
2.72298e-05
2.64126e-05
2.74431e-05
2.83638e-05
2.83415e-05
2.78123e-05
2.73549e-05
2.60134e-05
2.80956e-05
2.6983e-05
2.75414e-05
2.71393e-05
2.54871e-05
2.55429e-05
2.41055e-05
2.35254e-05
2.26897e-05
2.30993e-05
2.45502e-05
2.7042e-05
2.8564e-05
2.85988e-05
2.72652e-05
2.57237e-05
2.41944e-05
2.28692e-05
2.128e-05
1.95857e-05
1.80241e-05
1.63673e-05
1.52319e-05
1.41914e-05
1.30873e-05
1.37392e-05
1.25187e-05
1.26498e-05
1.16751e-05
1.01965e-05
9.10737e-06
8.10309e-06
8.01531e-06
7.63927e-06
6.05897e-06
3.99141e-06
8.30602e-07
0
0
0
0
0
0
0
0
0
0
0
5.95173e-06
2.17906e-05
2.5462e-05
2.30097e-05
2.28713e-05
2.42087e-05
2.38362e-05
2.21836e-05
2.05045e-05
2.02018e-05
1.96108e-05
1.93923e-05
1.8647e-05
1.89075e-05
1.89552e-05
1.84927e-05
1.7462e-05
1.65282e-05
1.58051e-05
1.53949e-05
1.52209e-05
1.53178e-05
1.55635e-05
1.56917e-05
1.55059e-05
1.48175e-05
1.37948e-05
1.25939e-05
1.14979e-05
1.05211e-05
9.63792e-06
8.71356e-06
7.8286e-06
6.92948e-06
5.6248e-06
4.28311e-06
2.33e-06
9.36287e-07
1.65501e-07
1.08974e-06
1.69258e-06
2.4313e-06
2.08574e-06
3.91283e-06
0
0
0
2.51276e-06
3.50391e-06
0
0
0
0
0
6.52679e-06
0
1.1643e-05
1.62373e-05
0
1.55345e-06
7.38703e-06
1.07348e-05
2.91633e-06
4.73656e-06
0
5.15621e-06
0
1.19947e-05
1.47905e-05
2.55259e-05
2.33752e-05
2.55089e-05
2.49231e-05
2.13308e-05
1.86708e-05
1.47939e-05
1.36201e-05
1.23549e-05
1.31534e-05
1.33473e-05
1.88073e-05
2.28456e-05
2.2766e-05
2.07413e-05
2.0529e-05
1.859e-05
1.72378e-05
1.66653e-05
1.7155e-05
1.73614e-05
1.94365e-05
2.27962e-05
2.3691e-05
2.11914e-05
1.87083e-05
1.82443e-05
1.93563e-05
2.12151e-05
2.19617e-05
2.08785e-05
2.01367e-05
1.90064e-05
2.41118e-05
2.28631e-05
2.26264e-05
2.3432e-05
2.17213e-05
2.24093e-05
2.12398e-05
2.08353e-05
1.97373e-05
1.95122e-05
1.98033e-05
2.13582e-05
2.26116e-05
2.29902e-05
2.20917e-05
2.09512e-05
1.97043e-05
1.85936e-05
1.71937e-05
1.56024e-05
1.40963e-05
1.22352e-05
1.09969e-05
9.94787e-06
8.45928e-06
9.6024e-06
8.6786e-06
8.74575e-06
8.07986e-06
6.42682e-06
5.46157e-06
4.92133e-06
5.06001e-06
4.78605e-06
3.32338e-06
1.63728e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
1.12027e-05
2.12787e-05
2.22634e-05
2.09808e-05
2.18516e-05
2.05026e-05
1.94556e-05
1.86606e-05
1.78298e-05
1.67687e-05
1.71545e-05
1.69774e-05
1.74442e-05
1.76479e-05
1.71849e-05
1.61787e-05
1.5312e-05
1.47067e-05
1.43673e-05
1.42689e-05
1.44581e-05
1.48319e-05
1.50824e-05
1.50017e-05
1.43883e-05
1.34207e-05
1.22417e-05
1.11471e-05
1.01638e-05
9.27977e-06
8.37454e-06
7.51388e-06
6.66534e-06
5.39001e-06
4.08293e-06
2.1445e-06
7.52392e-07
0
6.45116e-07
8.09432e-07
1.12443e-06
0
1.74066e-06
0
0
0
2.83921e-06
2.42972e-06
0
0
0
9.34089e-07
0
7.52826e-06
0
1.24949e-05
1.69642e-05
0
0
4.82098e-06
8.35673e-06
7.09309e-07
5.00866e-06
0
1.93423e-06
0
6.66865e-06
9.04081e-06
2.24388e-05
2.21727e-05
2.28317e-05
2.28104e-05
1.90911e-05
1.64464e-05
1.32493e-05
1.22089e-05
1.06693e-05
1.08295e-05
9.55217e-06
1.39488e-05
1.87955e-05
2.02204e-05
1.86473e-05
1.79379e-05
1.65515e-05
1.52504e-05
1.47876e-05
1.46947e-05
1.39888e-05
1.36492e-05
1.49583e-05
1.55276e-05
1.34097e-05
1.14433e-05
1.07047e-05
1.08978e-05
1.14557e-05
1.27162e-05
1.21017e-05
1.03585e-05
7.6188e-06
1.77488e-05
1.92311e-05
1.71065e-05
1.89796e-05
1.77799e-05
1.91462e-05
1.84912e-05
1.8392e-05
1.72667e-05
1.66484e-05
1.61211e-05
1.66496e-05
1.72202e-05
1.75426e-05
1.70021e-05
1.63145e-05
1.53435e-05
1.43362e-05
1.30145e-05
1.15043e-05
1.01298e-05
8.20689e-06
6.84171e-06
6.08871e-06
4.39707e-06
5.36105e-06
4.75122e-06
4.54325e-06
4.04825e-06
2.57875e-06
1.75809e-06
1.51077e-06
1.69135e-06
1.41726e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
4.48673e-07
1.43771e-06
1.40318e-05
1.91804e-05
1.86029e-05
1.89099e-05
1.68097e-05
1.66297e-05
1.70982e-05
1.61408e-05
1.46234e-05
1.49027e-05
1.52925e-05
1.61597e-05
1.65994e-05
1.61554e-05
1.51031e-05
1.42372e-05
1.37303e-05
1.34894e-05
1.34844e-05
1.37537e-05
1.42218e-05
1.45599e-05
1.45642e-05
1.40137e-05
1.31006e-05
1.19411e-05
1.08481e-05
9.84778e-06
8.95434e-06
8.05388e-06
7.2084e-06
6.39592e-06
5.14417e-06
3.86313e-06
1.93015e-06
5.76471e-07
0
1.24969e-07
0
0
0
0
0
0
0
3.09013e-06
1.56228e-06
0
0
0
2.52394e-06
0
8.13612e-06
1.10919e-06
1.34305e-05
1.75175e-05
0
0
2.14232e-06
6.34945e-06
0
4.94527e-06
0
0
0
2.82083e-06
3.61538e-06
1.80048e-05
2.07181e-05
2.00767e-05
2.02906e-05
1.70793e-05
1.44867e-05
1.17103e-05
1.07794e-05
9.08291e-06
8.7706e-06
6.27948e-06
9.24942e-06
1.3713e-05
1.64339e-05
1.6557e-05
1.54556e-05
1.44598e-05
1.3208e-05
1.30167e-05
1.26206e-05
1.15344e-05
9.72162e-06
9.33417e-06
9.6646e-06
8.33925e-06
6.91977e-06
5.74114e-06
5.06388e-06
4.00925e-06
4.4227e-06
4.18461e-06
2.4687e-06
0
5.51002e-06
1.37809e-05
1.13404e-05
1.32549e-05
1.3381e-05
1.54748e-05
1.5622e-05
1.59399e-05
1.50496e-05
1.42062e-05
1.32684e-05
1.30891e-05
1.31011e-05
1.32827e-05
1.29888e-05
1.26343e-05
1.18545e-05
1.0879e-05
9.57662e-06
8.10507e-06
6.82889e-06
4.89321e-06
3.17076e-06
2.36652e-06
7.91256e-07
1.16698e-06
6.91312e-07
2.07922e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.42527e-06
3.4564e-06
5.42072e-06
1.27155e-05
1.25218e-05
1.259e-05
1.30077e-05
1.40556e-05
1.53248e-05
1.46313e-05
1.31214e-05
1.28599e-05
1.36116e-05
1.49162e-05
1.56812e-05
1.52888e-05
1.41542e-05
1.32369e-05
1.28057e-05
1.26753e-05
1.27752e-05
1.31214e-05
1.36669e-05
1.40725e-05
1.41493e-05
1.36515e-05
1.27919e-05
1.16468e-05
1.05588e-05
9.53471e-06
8.62875e-06
7.72192e-06
6.8851e-06
6.09572e-06
4.86203e-06
3.59057e-06
1.63415e-06
3.29224e-07
0
0
0
0
0
0
0
0
0
3.47384e-06
8.5124e-07
1.58154e-07
0
4.32361e-07
3.81686e-06
0
8.63103e-06
2.69634e-06
1.44642e-05
1.79055e-05
0
0
0
4.58786e-06
0
4.57481e-06
0
0
0
1.14192e-07
0
1.28012e-05
1.83733e-05
1.76293e-05
1.72255e-05
1.4985e-05
1.28044e-05
1.02384e-05
9.31097e-06
7.5651e-06
6.90755e-06
3.44279e-06
5.24328e-06
8.2485e-06
1.09095e-05
1.33459e-05
1.25445e-05
1.19375e-05
1.08843e-05
1.09916e-05
1.05623e-05
9.35923e-06
6.81068e-06
5.4308e-06
5.60421e-06
4.68636e-06
3.26552e-06
1.80007e-06
3.64973e-07
0
0
0
0
0
0
3.46313e-06
4.87661e-06
6.8604e-06
8.63112e-06
1.1251e-05
1.24028e-05
1.32263e-05
1.28787e-05
1.19624e-05
1.0891e-05
1.03424e-05
1.00581e-05
1.01693e-05
1.00485e-05
9.89556e-06
9.22962e-06
8.26261e-06
6.96767e-06
5.50602e-06
4.29211e-06
2.37624e-06
3.5121e-07
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.06025e-06
5.26672e-06
6.20708e-06
8.25019e-06
8.03121e-06
6.34822e-06
8.5596e-06
1.16e-05
1.34468e-05
1.30707e-05
1.18865e-05
1.10295e-05
1.19891e-05
1.36555e-05
1.4801e-05
1.44999e-05
1.32711e-05
1.22597e-05
1.18833e-05
1.18678e-05
1.20794e-05
1.25014e-05
1.31158e-05
1.35761e-05
1.37179e-05
1.32639e-05
1.24587e-05
1.13225e-05
1.02473e-05
9.19498e-06
8.27865e-06
7.35612e-06
6.52411e-06
5.74564e-06
4.52589e-06
3.24231e-06
1.21478e-06
0
0
0
0
0
0
0
0
0
0
4.3223e-06
2.82531e-07
1.36298e-06
0
1.11643e-06
4.90298e-06
5.99754e-07
9.09117e-06
4.26667e-06
1.55988e-05
1.81424e-05
0
0
0
2.99622e-06
0
3.9334e-06
0
0
0
0
0
7.55767e-06
1.48542e-05
1.54222e-05
1.39944e-05
1.24066e-05
1.11839e-05
8.86357e-06
7.83749e-06
6.10374e-06
5.21419e-06
8.98184e-07
2.10199e-06
3.45984e-06
4.52973e-06
8.28785e-06
8.45269e-06
8.40903e-06
8.01952e-06
8.36293e-06
8.16048e-06
6.93944e-06
4.1507e-06
2.31142e-06
2.29679e-06
1.18373e-06
0
0
0
0
0
0
0
0
0
0
0
2.07097e-06
4.56116e-06
7.2301e-06
8.74313e-06
1.00588e-05
1.04788e-05
9.75753e-06
8.71054e-06
8.04722e-06
7.67336e-06
7.79026e-06
7.78753e-06
7.74355e-06
7.1395e-06
6.17075e-06
4.87438e-06
3.4009e-06
2.2377e-06
3.57886e-07
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.83486e-06
6.08881e-06
9.15578e-06
7.98917e-06
7.47578e-06
6.46376e-06
6.01853e-06
8.46263e-06
1.13893e-05
1.16977e-05
1.05208e-05
9.34799e-06
1.0363e-05
1.23499e-05
1.38846e-05
1.37133e-05
1.23957e-05
1.12584e-05
1.09215e-05
1.1023e-05
1.13504e-05
1.18474e-05
1.25252e-05
1.30307e-05
1.32319e-05
1.28128e-05
1.20655e-05
1.09327e-05
9.88511e-06
8.80109e-06
7.88322e-06
6.93637e-06
6.10896e-06
5.32589e-06
4.11896e-06
2.79576e-06
6.24384e-07
0
0
0
0
0
1.83778e-06
0
0
0
0
6.12791e-06
0
2.86429e-06
0
1.71181e-06
5.62182e-06
2.85067e-06
9.59092e-06
5.93589e-06
1.68318e-05
1.82373e-05
0
0
0
1.61328e-06
0
3.08121e-06
0
0
0
0
0
3.37154e-06
1.03454e-05
1.30111e-05
1.11918e-05
9.41589e-06
9.32172e-06
7.52069e-06
6.38684e-06
4.71214e-06
3.68691e-06
0
0
0
0
2.46491e-06
3.38686e-06
3.63054e-06
4.35516e-06
5.01412e-06
5.1772e-06
3.84125e-06
1.16183e-06
0
0
0
0
0
0
0
0
0
3.34028e-07
4.44194e-07
0
5.77615e-07
1.93695e-06
0
1.17175e-06
4.41767e-06
5.4259e-06
6.57674e-06
7.52958e-06
7.39728e-06
6.51637e-06
5.92921e-06
5.60907e-06
5.7886e-06
5.86824e-06
5.87656e-06
5.29891e-06
4.3204e-06
3.01305e-06
1.5179e-06
4.26441e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.16106e-06
1.70107e-06
1.42538e-06
1.20208e-06
1.63311e-07
7.33445e-07
9.39764e-07
8.17222e-07
0
8.99169e-07
3.84353e-06
6.87295e-06
1.01887e-05
1.15445e-05
1.09345e-05
9.03107e-06
6.10104e-06
5.24286e-06
8.47208e-06
1.03511e-05
8.96962e-06
7.71741e-06
8.61274e-06
1.09411e-05
1.28558e-05
1.28418e-05
1.14552e-05
1.01753e-05
9.8737e-06
1.0098e-05
1.05462e-05
1.11166e-05
1.18531e-05
1.23922e-05
1.26467e-05
1.22483e-05
1.15678e-05
1.04299e-05
9.43767e-06
8.31675e-06
7.41786e-06
6.43669e-06
5.62159e-06
4.81077e-06
3.61831e-06
2.21977e-06
0
0
0
0
0
0
3.27271e-06
2.59496e-06
0
0
0
9.17002e-06
2.36006e-07
4.74455e-06
0
2.2809e-06
6.00197e-06
4.85255e-06
1.01608e-05
7.77109e-06
1.81547e-05
1.82017e-05
0
0
0
5.62636e-07
0
2.10373e-06
0
0
0
0
0
1.3666e-06
5.41641e-06
9.84361e-06
8.91674e-06
6.63307e-06
7.14491e-06
6.10316e-06
4.93992e-06
3.41133e-06
2.30325e-06
0
0
0
0
0
0
0
1.60895e-08
1.31131e-06
1.85614e-06
8.59726e-09
0
0
0
0
0
0
0
0
5.79876e-07
2.48239e-06
4.27146e-06
3.85789e-06
2.17788e-06
3.34262e-06
5.00394e-06
4.2853e-06
1.91855e-07
1.44323e-06
3.50734e-06
3.56974e-06
4.06527e-06
4.58893e-06
4.10194e-06
3.76386e-06
3.61807e-06
3.91072e-06
4.05353e-06
4.07655e-06
3.49585e-06
2.50256e-06
1.18161e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.44049e-07
1.57938e-06
3.39659e-06
3.65584e-06
3.21207e-06
2.95378e-06
2.13913e-06
2.65838e-06
2.81985e-06
2.67387e-06
1.85835e-06
2.59181e-06
5.10218e-06
7.84762e-06
1.09178e-05
1.30994e-05
1.4236e-05
1.43748e-05
1.14447e-05
6.63828e-06
5.28303e-06
8.42255e-06
7.7298e-06
6.03982e-06
6.64272e-06
9.32874e-06
1.16137e-05
1.1764e-05
1.03361e-05
8.91538e-06
8.66267e-06
9.02572e-06
9.60567e-06
1.02461e-05
1.10332e-05
1.15797e-05
1.18724e-05
1.14611e-05
1.08752e-05
9.71406e-06
8.83955e-06
7.66671e-06
6.83499e-06
5.80142e-06
5.02814e-06
4.15474e-06
2.97903e-06
1.46778e-06
0
0
0
0
1.23283e-06
1.28589e-06
4.41096e-06
4.5515e-06
3.68749e-06
5.12903e-06
1.96063e-06
1.30512e-05
1.70519e-06
7.10731e-06
0
2.92496e-06
6.1528e-06
6.67363e-06
1.07821e-05
9.7813e-06
1.95571e-05
1.80507e-05
0
0
0
0
0
1.08941e-06
0
0
0
0
0
1.04106e-06
1.60346e-06
5.62998e-06
6.62798e-06
4.35441e-06
4.9524e-06
4.56957e-06
3.45645e-06
2.21387e-06
1.00928e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9.5667e-08
0
3.86388e-07
1.99214e-06
4.33857e-06
6.02901e-06
6.90016e-06
6.29794e-06
5.56579e-06
5.922e-06
6.85936e-06
6.96686e-06
5.97325e-06
4.5155e-07
1.59822e-06
2.06718e-06
1.08237e-06
1.15566e-06
1.20821e-06
1.3176e-06
1.48835e-06
1.95348e-06
2.15112e-06
2.15601e-06
1.54103e-06
5.34781e-07
0
0
0
0
0
0
0
0
0
0
0
0
8.16068e-07
1.26988e-06
1.66357e-06
1.25521e-06
1.79743e-06
2.04385e-06
2.80508e-06
3.92082e-06
5.49476e-06
5.73771e-06
5.19333e-06
4.90546e-06
4.15706e-06
4.58448e-06
4.73512e-06
4.66229e-06
3.99614e-06
4.47315e-06
6.60763e-06
9.07195e-06
1.18366e-05
1.40973e-05
1.56601e-05
1.67475e-05
1.69412e-05
1.4736e-05
7.94093e-06
6.11647e-06
6.88578e-06
4.42672e-06
4.43837e-06
7.41168e-06
1.00355e-05
1.03177e-05
8.86366e-06
7.30688e-06
7.13292e-06
7.66235e-06
8.39052e-06
9.08396e-06
9.89215e-06
1.03638e-05
1.06445e-05
1.01328e-05
9.72717e-06
8.51292e-06
7.91329e-06
6.65335e-06
6.00775e-06
4.87987e-06
4.23276e-06
3.22802e-06
2.09526e-06
4.76582e-07
0
0
0
0
2.42797e-06
2.47853e-06
5.53424e-06
6.01078e-06
6.43263e-06
9.84565e-06
6.61376e-06
1.72881e-05
4.53196e-06
1.00415e-05
0
3.80665e-06
6.1813e-06
8.22666e-06
1.14016e-05
1.1959e-05
2.10308e-05
1.78002e-05
0
0
0
0
0
1.07728e-07
0
0
0
0
0
8.90727e-07
1.21155e-06
8.72652e-07
3.4531e-06
2.17529e-06
2.92534e-06
2.96573e-06
1.92441e-06
1.1363e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.30712e-06
4.76404e-06
4.77234e-06
4.74044e-06
5.32491e-06
6.99471e-06
8.36873e-06
8.77929e-06
8.14127e-06
7.94996e-06
8.45187e-06
8.7498e-06
8.64051e-06
8.68379e-06
6.26615e-06
1.0253e-06
1.27405e-06
0
0
0
0
0
0
4.23697e-10
0
0
0
0
0
0
0
0
0
0
4.95839e-09
6.91556e-07
1.27787e-06
2.05373e-06
2.96747e-06
3.85445e-06
4.01106e-06
4.36418e-06
3.97402e-06
4.35603e-06
4.75484e-06
5.29408e-06
6.28048e-06
7.72756e-06
8.12455e-06
7.54158e-06
7.22902e-06
6.40053e-06
6.65433e-06
6.73774e-06
6.74613e-06
6.19203e-06
6.4793e-06
8.28966e-06
1.05817e-05
1.31459e-05
1.52127e-05
1.67802e-05
1.8042e-05
1.88375e-05
1.97524e-05
1.64879e-05
7.97329e-06
6.13604e-06
3.29959e-06
2.15206e-06
5.17727e-06
8.05359e-06
8.37573e-06
6.8437e-06
5.08452e-06
4.99903e-06
5.71093e-06
6.58454e-06
7.25586e-06
7.97435e-06
8.13669e-06
8.26223e-06
7.46973e-06
7.43506e-06
6.16087e-06
6.18202e-06
4.79509e-06
4.60154e-06
3.29217e-06
2.96449e-06
1.69668e-06
6.97745e-07
0
0
0
0
0
3.43611e-06
3.52516e-06
6.81216e-06
7.36143e-06
8.40023e-06
1.34252e-05
1.06473e-05
2.15435e-05
8.28369e-06
1.35666e-05
8.3177e-07
5.16325e-06
6.21698e-06
9.47795e-06
1.19834e-05
1.4345e-05
2.25665e-05
1.74728e-05
0
0
0
0
0
0
0
0
0
0
0
4.58787e-07
2.67156e-06
0
0
0
8.10099e-07
1.24691e-06
3.53125e-07
2.27953e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.16732e-07
4.80432e-06
7.71277e-06
8.35892e-06
8.37685e-06
8.42691e-06
9.24222e-06
1.01809e-05
1.03315e-05
9.71747e-06
9.67237e-06
1.05475e-05
1.08576e-05
1.04497e-05
1.01022e-05
1.03125e-05
6.1449e-06
1.3634e-06
2.25734e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
0
5.80202e-07
1.66591e-06
2.4321e-06
3.25812e-06
4.07296e-06
5.09484e-06
6.14361e-06
7.08985e-06
7.07624e-06
7.44362e-06
7.14507e-06
7.34429e-06
7.76676e-06
8.35661e-06
9.12394e-06
1.04535e-05
1.10881e-05
1.05024e-05
1.01621e-05
9.11424e-06
9.07724e-06
8.97292e-06
8.99399e-06
8.46056e-06
8.58191e-06
1.00478e-05
1.23462e-05
1.48878e-05
1.68363e-05
1.82021e-05
1.93517e-05
2.02869e-05
2.10278e-05
2.22279e-05
1.5776e-05
7.34094e-06
3.26297e-06
2.10187e-07
2.79164e-06
5.78004e-06
6.03253e-06
4.25242e-06
1.99079e-06
1.86917e-06
2.7199e-06
3.66819e-06
4.13544e-06
4.53674e-06
4.02639e-06
3.76736e-06
2.39186e-06
2.84854e-06
1.54136e-06
2.66047e-06
1.19281e-06
1.87878e-06
2.58679e-07
5.5185e-07
0
0
0
0
0
0
0
4.43889e-06
4.37327e-06
8.32971e-06
8.82451e-06
1.02331e-05
1.65357e-05
1.37196e-05
2.55817e-05
1.24055e-05
1.76041e-05
3.53222e-06
7.30469e-06
6.43766e-06
1.05046e-05
1.25338e-05
1.70225e-05
2.41494e-05
1.70929e-05
0
0
0
0
0
0
0
0
0
0
0
0
3.39536e-06
1.45093e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.22199e-06
1.16917e-06
1.86956e-06
3.61086e-06
7.43164e-06
9.6084e-06
1.08107e-05
1.12581e-05
1.13097e-05
1.14304e-05
1.18696e-05
1.18097e-05
1.12139e-05
1.11416e-05
1.21636e-05
1.28494e-05
1.25755e-05
1.17386e-05
1.1751e-05
1.14545e-05
5.44095e-06
1.4345e-06
0
0
0
0
0
0
0
0
0
0
0
0
5.74668e-08
1.57982e-06
2.78442e-06
3.80566e-06
4.60943e-06
5.50092e-06
6.45648e-06
7.72982e-06
8.97757e-06
1.02046e-05
1.02909e-05
1.0815e-05
1.07535e-05
1.09153e-05
1.12246e-05
1.21399e-05
1.28719e-05
1.40478e-05
1.4922e-05
1.43425e-05
1.39729e-05
1.26029e-05
1.21409e-05
1.16732e-05
1.15639e-05
1.09055e-05
1.082e-05
1.18574e-05
1.42442e-05
1.69116e-05
1.90628e-05
2.03091e-05
2.11945e-05
2.20268e-05
2.21862e-05
2.38112e-05
2.33421e-05
1.32851e-05
5.04671e-06
0
6.18186e-07
3.4903e-06
3.70809e-06
1.53555e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.37508e-07
0
5.63567e-06
5.03646e-06
1.00706e-05
1.04982e-05
1.2252e-05
2.00218e-05
1.60818e-05
2.92848e-05
1.64699e-05
2.19876e-05
6.78736e-06
1.05345e-05
7.15953e-06
1.14059e-05
1.31083e-05
2.00567e-05
2.57486e-05
1.66889e-05
0
0
0
0
0
0
0
0
0
0
0
0
3.28487e-06
3.77796e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.86218e-06
5.98939e-06
4.66964e-06
4.4014e-06
6.79653e-06
9.68424e-06
1.11315e-05
1.25599e-05
1.34913e-05
1.38801e-05
1.36787e-05
1.36456e-05
1.33667e-05
1.27506e-05
1.25956e-05
1.35438e-05
1.45269e-05
1.46688e-05
1.3958e-05
1.30158e-05
1.3982e-05
1.13466e-05
4.67739e-06
5.14082e-07
0
0
0
0
0
0
0
0
0
0
5.23204e-08
2.40887e-06
3.81872e-06
4.91093e-06
5.8294e-06
6.6119e-06
7.52348e-06
8.52437e-06
9.97888e-06
1.13753e-05
1.28978e-05
1.32904e-05
1.41092e-05
1.44074e-05
1.4839e-05
1.50851e-05
1.63327e-05
1.74751e-05
1.85706e-05
1.96724e-05
1.91509e-05
1.88047e-05
1.71529e-05
1.62009e-05
1.5175e-05
1.46995e-05
1.37132e-05
1.3305e-05
1.38161e-05
1.61637e-05
1.89936e-05
2.15061e-05
2.2973e-05
2.37258e-05
2.44442e-05
2.40576e-05
2.45263e-05
2.77728e-05
2.19134e-05
9.9038e-06
9.42262e-07
0
1.46578e-06
2.00233e-06
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
2.7024e-06
1.08878e-06
7.31883e-06
5.63525e-06
1.19546e-05
1.23708e-05
1.44156e-05
2.43464e-05
1.83208e-05
3.26824e-05
2.01828e-05
2.64794e-05
1.0486e-05
1.49633e-05
8.92058e-06
1.22742e-05
1.38303e-05
2.34463e-05
2.73114e-05
1.62902e-05
0
0
0
3.94603e-07
1.87419e-07
0
0
0
0
0
0
0
2.76301e-06
4.58769e-06
2.81763e-06
7.33875e-07
0
0
0
0
0
0
0
0
0
0
0
0
0
6.22574e-07
7.5995e-06
9.23283e-06
7.29284e-06
6.53926e-06
9.61573e-06
1.18542e-05
1.26484e-05
1.4008e-05
1.52889e-05
1.60934e-05
1.59579e-05
1.56047e-05
1.51095e-05
1.44343e-05
1.41705e-05
1.49149e-05
1.60147e-05
1.64301e-05
1.64502e-05
1.4888e-05
1.51816e-05
1.59366e-05
1.01176e-05
3.67688e-06
0
0
0
0
0
0
0
0
0
8.39712e-07
2.6138e-06
4.75527e-06
6.0051e-06
6.97887e-06
7.80239e-06
8.54006e-06
9.45844e-06
1.04345e-05
1.19806e-05
1.34592e-05
1.5166e-05
1.58856e-05
1.70177e-05
1.76863e-05
1.8529e-05
1.90601e-05
2.03884e-05
2.21306e-05
2.33419e-05
2.47364e-05
2.44888e-05
2.43448e-05
2.27388e-05
2.15128e-05
1.98738e-05
1.87292e-05
1.71509e-05
1.62297e-05
1.6129e-05
1.8137e-05
2.10119e-05
2.3783e-05
2.56174e-05
2.65637e-05
2.73382e-05
2.71063e-05
2.59197e-05
2.92924e-05
2.97733e-05
1.78772e-05
5.46453e-06
0
1.46811e-07
1.53759e-06
2.18397e-07
0
0
0
0
0
0
0
0
0
0
1.61297e-06
0
1.12844e-06
0
0
0
0
3.8914e-06
0
2.89352e-06
0
5.57991e-06
2.69133e-06
9.93129e-06
6.43094e-06
1.39576e-05
1.44519e-05
1.64964e-05
2.91855e-05
2.09432e-05
3.58423e-05
2.34075e-05
3.07657e-05
1.44485e-05
2.03717e-05
1.22965e-05
1.32284e-05
1.4983e-05
2.71053e-05
2.87586e-05
1.59225e-05
0
0
0
9.91984e-07
6.84118e-07
0
0
0
0
0
0
0
2.09824e-06
4.59085e-06
4.08366e-06
3.72609e-06
8.19114e-07
0
0
4.13054e-07
0
0
0
2.97795e-07
1.69796e-06
6.11799e-07
0
0
1.01006e-06
3.3715e-06
1.03463e-05
1.16984e-05
9.46173e-06
8.55438e-06
1.21542e-05
1.41041e-05
1.43815e-05
1.54322e-05
1.68624e-05
1.80031e-05
1.81826e-05
1.7763e-05
1.71239e-05
1.63882e-05
1.59884e-05
1.64486e-05
1.75161e-05
1.79665e-05
1.86022e-05
1.75183e-05
1.64823e-05
1.83498e-05
1.59729e-05
8.13623e-06
2.55995e-06
2.63689e-07
0
0
0
0
0
2.77226e-07
1.62605e-06
3.36719e-06
5.09379e-06
7.04335e-06
8.15871e-06
9.05013e-06
9.81246e-06
1.05037e-05
1.14428e-05
1.2356e-05
1.39044e-05
1.54163e-05
1.71928e-05
1.81579e-05
1.95182e-05
2.05344e-05
2.16397e-05
2.27314e-05
2.40545e-05
2.61589e-05
2.75249e-05
2.91672e-05
2.94389e-05
2.96957e-05
2.86023e-05
2.77524e-05
2.5925e-05
2.39588e-05
2.15348e-05
1.98838e-05
1.91026e-05
2.03792e-05
2.2993e-05
2.58201e-05
2.79595e-05
2.93191e-05
3.01064e-05
3.09596e-05
2.9091e-05
3.02915e-05
3.52584e-05
2.74669e-05
1.26858e-05
3.95986e-06
1.60522e-06
3.34623e-06
2.79004e-06
0
0
0
0
4.41131e-07
1.15028e-06
2.55919e-06
1.94229e-06
4.1796e-06
4.23906e-06
7.12064e-06
7.02615e-06
7.99936e-06
7.88808e-06
6.39759e-06
8.98521e-06
5.48235e-06
1.23615e-05
6.21185e-06
1.25509e-05
1.53797e-06
9.77796e-06
5.04797e-06
1.39643e-05
8.0112e-06
1.62161e-05
1.69083e-05
1.86321e-05
3.3784e-05
2.41377e-05
3.87327e-05
2.62398e-05
3.44385e-05
1.84242e-05
2.62343e-05
1.73562e-05
1.44609e-05
1.70836e-05
3.08529e-05
2.99755e-05
1.56017e-05
0
0
0
4.30293e-07
9.82895e-07
0
0
0
0
0
0
0
1.45026e-06
4.16751e-06
4.42022e-06
4.82411e-06
3.41083e-06
4.63066e-07
2.40385e-06
2.53617e-06
6.11018e-07
4.68128e-07
6.24403e-07
1.99674e-06
3.45474e-06
1.6326e-06
1.32576e-06
4.27264e-06
2.37643e-06
6.55262e-06
1.24635e-05
1.39281e-05
1.18288e-05
1.08064e-05
1.45886e-05
1.65367e-05
1.65108e-05
1.70548e-05
1.83912e-05
1.97244e-05
2.02996e-05
2.0091e-05
1.94834e-05
1.87718e-05
1.8223e-05
1.8332e-05
1.92195e-05
1.95581e-05
2.02481e-05
2.0407e-05
1.85415e-05
1.95909e-05
2.08769e-05
1.38976e-05
6.29218e-06
3.03418e-06
2.21872e-06
2.05839e-06
2.16056e-06
2.23692e-06
2.68769e-06
3.4067e-06
4.64961e-06
6.12934e-06
7.64623e-06
9.39997e-06
1.03929e-05
1.12397e-05
1.19855e-05
1.26412e-05
1.36373e-05
1.44825e-05
1.5938e-05
1.74385e-05
1.91946e-05
2.03086e-05
2.178e-05
2.31271e-05
2.43345e-05
2.59151e-05
2.73496e-05
2.95885e-05
3.10525e-05
3.27194e-05
3.34784e-05
3.41432e-05
3.36077e-05
3.36362e-05
3.26354e-05
3.0284e-05
2.70413e-05
2.46092e-05
2.31521e-05
2.3292e-05
2.51272e-05
2.77393e-05
3.00809e-05
3.20061e-05
3.27328e-05
3.43667e-05
3.42159e-05
3.2639e-05
3.80222e-05
3.67902e-05
2.24038e-05
1.21506e-05
1.00138e-05
9.98335e-06
7.1386e-06
3.87682e-06
1.68343e-06
1.78818e-06
2.22733e-06
4.27551e-06
4.69254e-06
6.20295e-06
6.07809e-06
8.66959e-06
9.67643e-06
1.20101e-05
1.29834e-05
1.32183e-05
1.50011e-05
1.26403e-05
1.66411e-05
1.21728e-05
1.91909e-05
1.29722e-05
2.11025e-05
1.08736e-05
1.63766e-05
8.99498e-06
1.95253e-05
1.14828e-05
1.91002e-05
2.00597e-05
2.1483e-05
3.7697e-05
2.77825e-05
4.11861e-05
2.89622e-05
3.70977e-05
2.20852e-05
3.17898e-05
2.3391e-05
1.62664e-05
2.06692e-05
3.44095e-05
3.08035e-05
1.5323e-05
0
0
0
0
1.15119e-06
0
0
0
0
0
0
0
9.01536e-07
3.54924e-06
4.24843e-06
5.15753e-06
4.6107e-06
1.43395e-06
5.14248e-06
5.29157e-06
2.38823e-06
1.7275e-06
2.02576e-06
4.27632e-06
5.30341e-06
2.15949e-06
5.04544e-06
9.39085e-06
5.01134e-06
9.71778e-06
1.41254e-05
1.61972e-05
1.53182e-05
1.39746e-05
1.72417e-05
1.92801e-05
1.9212e-05
1.91114e-05
2.00529e-05
2.13926e-05
2.23271e-05
2.25613e-05
2.22584e-05
2.17958e-05
2.11526e-05
2.08559e-05
2.13616e-05
2.1464e-05
2.17359e-05
2.28774e-05
2.14899e-05
2.08835e-05
2.40884e-05
2.02377e-05
1.14046e-05
6.49298e-06
5.39541e-06
5.42453e-06
5.8226e-06
6.21235e-06
6.93992e-06
7.68896e-06
8.74835e-06
9.75487e-06
1.07338e-05
1.21492e-05
1.2957e-05
1.37679e-05
1.45385e-05
1.5178e-05
1.62852e-05
1.70961e-05
1.83421e-05
1.97613e-05
2.14055e-05
2.25714e-05
2.40461e-05
2.56824e-05
2.69549e-05
2.8787e-05
3.0417e-05
3.27091e-05
3.42655e-05
3.57879e-05
3.6795e-05
3.77612e-05
3.75228e-05
3.79923e-05
3.84396e-05
3.67246e-05
3.32537e-05
3.05208e-05
2.86929e-05
2.74576e-05
2.77933e-05
2.97839e-05
3.222e-05
3.47944e-05
3.57454e-05
3.71129e-05
3.9308e-05
3.75212e-05
4.00523e-05
4.37927e-05
3.35181e-05
2.40076e-05
2.48833e-05
2.31995e-05
1.40157e-05
8.53968e-06
5.84432e-06
5.68626e-06
5.76951e-06
7.66162e-06
8.00248e-06
9.60155e-06
1.0617e-05
1.38763e-05
1.62394e-05
1.79857e-05
1.93552e-05
1.85876e-05
2.09853e-05
1.83608e-05
2.27719e-05
1.84625e-05
2.52181e-05
1.87143e-05
2.73778e-05
1.89381e-05
2.45441e-05
1.53244e-05
2.59204e-05
1.75639e-05
2.31693e-05
2.42134e-05
2.57399e-05
4.08978e-05
3.16183e-05
4.30519e-05
3.17748e-05
3.87341e-05
2.52205e-05
3.61986e-05
2.9189e-05
1.90117e-05
2.57522e-05
3.74251e-05
3.10382e-05
1.50514e-05
0
0
0
0
1.22691e-06
0
0
0
0
0
0
0
5.03062e-07
2.93916e-06
3.70887e-06
5.12203e-06
5.16834e-06
1.73584e-06
6.59138e-06
7.85267e-06
4.32864e-06
3.62042e-06
2.74953e-06
7.53609e-06
7.9185e-06
2.426e-06
7.4991e-06
1.33571e-05
1.00425e-05
1.33239e-05
1.55364e-05
1.86236e-05
2.10723e-05
1.93595e-05
2.08059e-05
2.2631e-05
2.27062e-05
2.18825e-05
2.20644e-05
2.31685e-05
2.43533e-05
2.51925e-05
2.55285e-05
2.57062e-05
2.51782e-05
2.44963e-05
2.43445e-05
2.39557e-05
2.35312e-05
2.48593e-05
2.48861e-05
2.31262e-05
2.58493e-05
2.62639e-05
1.79053e-05
1.12628e-05
9.57987e-06
9.75863e-06
1.04239e-05
1.11709e-05
1.24156e-05
1.35938e-05
1.47182e-05
1.52145e-05
1.5229e-05
1.59469e-05
1.6369e-05
1.70924e-05
1.78966e-05
1.85442e-05
1.9819e-05
2.06736e-05
2.15607e-05
2.27632e-05
2.41572e-05
2.52421e-05
2.66278e-05
2.84527e-05
2.98233e-05
3.16909e-05
3.34817e-05
3.57806e-05
3.74351e-05
3.87587e-05
3.97543e-05
4.08477e-05
4.08062e-05
4.11213e-05
4.2449e-05
4.19751e-05
3.89678e-05
3.69029e-05
3.56394e-05
3.33743e-05
3.15557e-05
3.23632e-05
3.47765e-05
3.79307e-05
3.94779e-05
4.02738e-05
4.28996e-05
4.33985e-05
4.33075e-05
4.76491e-05
4.26415e-05
3.72794e-05
4.20339e-05
4.01007e-05
2.4234e-05
1.3868e-05
9.72299e-06
9.11858e-06
8.97562e-06
1.06463e-05
1.12207e-05
1.29583e-05
1.58617e-05
2.02825e-05
2.42958e-05
2.61377e-05
2.73238e-05
2.57523e-05
2.72696e-05
2.45055e-05
2.82272e-05
2.43529e-05
3.05739e-05
2.43262e-05
3.23828e-05
2.4971e-05
3.15729e-05
2.28915e-05
3.19488e-05
2.49559e-05
2.85207e-05
2.92824e-05
3.10918e-05
4.34525e-05
3.52969e-05
4.43187e-05
3.45745e-05
3.96963e-05
2.79785e-05
3.91059e-05
3.36866e-05
2.284e-05
3.15808e-05
3.95514e-05
3.04335e-05
1.47172e-05
0
0
0
0
1.03705e-06
0
0
0
0
0
0
0
2.95325e-07
2.48182e-06
3.06471e-06
4.86766e-06
5.41189e-06
1.79124e-06
7.38981e-06
9.55372e-06
6.58242e-06
7.80596e-06
3.27331e-06
1.14083e-05
1.2843e-05
4.57965e-06
1.07961e-05
1.56871e-05
1.64873e-05
1.821e-05
1.73004e-05
2.1184e-05
2.80099e-05
2.74247e-05
2.62255e-05
2.71114e-05
2.72867e-05
2.56796e-05
2.47089e-05
2.52805e-05
2.65554e-05
2.80661e-05
2.93383e-05
3.06103e-05
3.06375e-05
2.98424e-05
2.88206e-05
2.74347e-05
2.61373e-05
2.69263e-05
2.81849e-05
2.68848e-05
2.7598e-05
3.08404e-05
2.56584e-05
1.73607e-05
1.43239e-05
1.4254e-05
1.4967e-05
1.60373e-05
1.79076e-05
2.01155e-05
2.21469e-05
2.29627e-05
2.22339e-05
2.19071e-05
2.1625e-05
2.21357e-05
2.28785e-05
2.35378e-05
2.49774e-05
2.59622e-05
2.63348e-05
2.70867e-05
2.79957e-05
2.87636e-05
2.99648e-05
3.17876e-05
3.32355e-05
3.49749e-05
3.67947e-05
3.89814e-05
4.06491e-05
4.1774e-05
4.25752e-05
4.35703e-05
4.37e-05
4.37543e-05
4.51414e-05
4.56685e-05
4.3298e-05
4.22386e-05
4.26387e-05
4.05963e-05
3.68287e-05
3.60839e-05
3.84042e-05
4.18272e-05
4.3839e-05
4.43848e-05
4.5958e-05
4.79084e-05
4.75243e-05
5.02519e-05
4.79126e-05
4.66189e-05
5.33565e-05
5.33215e-05
3.54726e-05
2.00306e-05
1.35895e-05
1.2184e-05
1.20085e-05
1.32773e-05
1.44227e-05
1.64509e-05
2.14881e-05
2.7164e-05
3.23959e-05
3.52514e-05
3.65212e-05
3.5096e-05
3.50123e-05
3.19261e-05
3.4054e-05
3.03566e-05
3.54498e-05
2.98412e-05
3.67213e-05
2.99717e-05
3.66186e-05
2.97084e-05
3.68008e-05
3.1543e-05
3.4084e-05
3.44835e-05
3.62886e-05
4.53478e-05
3.84619e-05
4.5054e-05
3.70588e-05
4.01857e-05
3.05911e-05
4.08705e-05
3.6644e-05
2.71685e-05
3.70388e-05
4.05014e-05
2.86795e-05
1.42023e-05
0
0
0
0
2.31665e-08
0
0
0
0
0
0
0
3.4468e-07
2.25976e-06
2.62956e-06
4.69163e-06
5.42926e-06
2.09709e-06
8.26956e-06
9.98072e-06
9.6106e-06
1.56323e-05
5.82521e-06
1.3937e-05
1.86418e-05
1.33514e-05
1.92437e-05
1.96986e-05
2.17907e-05
2.35165e-05
2.07991e-05
2.41721e-05
3.23298e-05
3.4495e-05
3.27052e-05
3.27826e-05
3.30444e-05
3.07114e-05
2.8309e-05
2.80651e-05
2.92732e-05
3.13773e-05
3.36038e-05
3.60446e-05
3.70595e-05
3.6885e-05
3.5368e-05
3.24528e-05
3.01585e-05
3.00394e-05
3.15731e-05
3.19131e-05
3.10561e-05
3.35149e-05
3.32275e-05
2.60628e-05
1.99124e-05
1.83761e-05
1.9108e-05
2.09613e-05
2.37019e-05
2.68592e-05
2.97816e-05
3.14842e-05
3.13636e-05
3.06508e-05
2.97616e-05
3.00849e-05
3.05566e-05
3.11341e-05
3.25488e-05
3.36133e-05
3.34277e-05
3.34911e-05
3.36311e-05
3.37174e-05
3.45787e-05
3.60957e-05
3.74011e-05
3.88267e-05
4.04651e-05
4.23257e-05
4.3792e-05
4.4696e-05
4.5233e-05
4.59445e-05
4.61764e-05
4.61557e-05
4.71948e-05
4.81364e-05
4.643e-05
4.59467e-05
4.77793e-05
4.71315e-05
4.29416e-05
4.13139e-05
4.36571e-05
4.67841e-05
4.83817e-05
4.87175e-05
4.90878e-05
5.08804e-05
5.09991e-05
5.22662e-05
5.1275e-05
5.19572e-05
5.69244e-05
5.86538e-05
4.36798e-05
2.616e-05
1.74598e-05
1.4832e-05
1.48376e-05
1.55351e-05
1.749e-05
2.02528e-05
2.72714e-05
3.38296e-05
3.91877e-05
4.24461e-05
4.40551e-05
4.38162e-05
4.31964e-05
4.01266e-05
4.04914e-05
3.66584e-05
4.00013e-05
3.49754e-05
4.03617e-05
3.42903e-05
4.01871e-05
3.50096e-05
4.03988e-05
3.65023e-05
3.86413e-05
3.88202e-05
4.04605e-05
4.6594e-05
4.08935e-05
4.53203e-05
3.89241e-05
4.02179e-05
3.30914e-05
4.19604e-05
3.84609e-05
3.09016e-05
4.13511e-05
3.98498e-05
2.5275e-05
1.33178e-05
0
0
0
0
0
0
0
0
0
0
0
0
8.48686e-07
2.36512e-06
2.7007e-06
5.25311e-06
5.00881e-06
4.93178e-06
1.04951e-05
9.16694e-06
1.29064e-05
2.4906e-05
1.31943e-05
1.62666e-05
2.11007e-05
2.18232e-05
2.96511e-05
2.75964e-05
2.68555e-05
2.77993e-05
2.52519e-05
2.7763e-05
3.47937e-05
3.82387e-05
3.77686e-05
3.83803e-05
3.92309e-05
3.67196e-05
3.30776e-05
3.19326e-05
3.30216e-05
3.54896e-05
3.82271e-05
4.11201e-05
4.27119e-05
4.36329e-05
4.30215e-05
3.91253e-05
3.60364e-05
3.53727e-05
3.61668e-05
3.75247e-05
3.67637e-05
3.66138e-05
3.80139e-05
3.53308e-05
2.9359e-05
2.55039e-05
2.56782e-05
2.86892e-05
3.24503e-05
3.58558e-05
3.86655e-05
3.99686e-05
4.02518e-05
4.0008e-05
3.92818e-05
3.98983e-05
4.02681e-05
4.06931e-05
4.17333e-05
4.25852e-05
4.2046e-05
4.15434e-05
4.0956e-05
4.01754e-05
4.04635e-05
4.1317e-05
4.20692e-05
4.29306e-05
4.41573e-05
4.54947e-05
4.65522e-05
4.71965e-05
4.74967e-05
4.7872e-05
4.81169e-05
4.82104e-05
4.88674e-05
4.97463e-05
4.86594e-05
4.86019e-05
5.08242e-05
5.12292e-05
4.81352e-05
4.71239e-05
4.96349e-05
5.1912e-05
5.22831e-05
5.20516e-05
5.17332e-05
5.28398e-05
5.30013e-05
5.35905e-05
5.36477e-05
5.50192e-05
5.81474e-05
6.04245e-05
4.92475e-05
3.15993e-05
2.11069e-05
1.69978e-05
1.7185e-05
1.73105e-05
2.03093e-05
2.47164e-05
3.37299e-05
4.05411e-05
4.50344e-05
4.7247e-05
4.84718e-05
4.88046e-05
4.86569e-05
4.63655e-05
4.59233e-05
4.21312e-05
4.37586e-05
3.9124e-05
4.30513e-05
3.76237e-05
4.26528e-05
3.8719e-05
4.28886e-05
3.99359e-05
4.17744e-05
4.18654e-05
4.34944e-05
4.72386e-05
4.2548e-05
4.51253e-05
3.99932e-05
3.97679e-05
3.53261e-05
4.25844e-05
3.94496e-05
3.35549e-05
4.42525e-05
3.66898e-05
1.9293e-05
1.18149e-05
0
0
0
0
0
0
1.46104e-07
0
0
0
0
5.13123e-07
2.45098e-06
3.44513e-06
5.70639e-06
8.8018e-06
3.23466e-06
1.36535e-05
1.67345e-05
4.24498e-06
1.40546e-05
3.09351e-05
2.25662e-05
1.93561e-05
2.21137e-05
2.67251e-05
3.56154e-05
3.51355e-05
3.26016e-05
3.13247e-05
2.88294e-05
3.16762e-05
3.73987e-05
4.04362e-05
4.11319e-05
4.28449e-05
4.44389e-05
4.25783e-05
3.87427e-05
3.70838e-05
3.80763e-05
4.0491e-05
4.29353e-05
4.5277e-05
4.6622e-05
4.77568e-05
4.83943e-05
4.55643e-05
4.29279e-05
4.26213e-05
4.25153e-05
4.31699e-05
4.2674e-05
4.07491e-05
4.10858e-05
4.12673e-05
3.88807e-05
3.65018e-05
3.70229e-05
4.02446e-05
4.39053e-05
4.63591e-05
4.7846e-05
4.77591e-05
4.73214e-05
4.71042e-05
4.66996e-05
4.74066e-05
4.78406e-05
4.82369e-05
4.87672e-05
4.91366e-05
4.85137e-05
4.79593e-05
4.72552e-05
4.61598e-05
4.59108e-05
4.60134e-05
4.60483e-05
4.62958e-05
4.70786e-05
4.79194e-05
4.85758e-05
4.89876e-05
4.91203e-05
4.92229e-05
4.94417e-05
4.97082e-05
5.00868e-05
5.06998e-05
5.01018e-05
5.04926e-05
5.25753e-05
5.31832e-05
5.14622e-05
5.17563e-05
5.41599e-05
5.5432e-05
5.47155e-05
5.39582e-05
5.33888e-05
5.3937e-05
5.37968e-05
5.41417e-05
5.51454e-05
5.67852e-05
5.86928e-05
6.05279e-05
5.24364e-05
3.58859e-05
2.43595e-05
1.8857e-05
1.89241e-05
1.86802e-05
2.34183e-05
3.10015e-05
4.12887e-05
4.67877e-05
4.94345e-05
5.00383e-05
5.06796e-05
5.09218e-05
5.10905e-05
4.93665e-05
4.88448e-05
4.53527e-05
4.60341e-05
4.17177e-05
4.46571e-05
3.96925e-05
4.41506e-05
4.09942e-05
4.44002e-05
4.21016e-05
4.3599e-05
4.37616e-05
4.55689e-05
4.72668e-05
4.34769e-05
4.43695e-05
4.02143e-05
3.88186e-05
3.70552e-05
4.27434e-05
3.96479e-05
3.54767e-05
4.55491e-05
3.02277e-05
9.16976e-06
9.4233e-06
0
0
0
0
0
0
2.40515e-06
0
2.56702e-06
8.55409e-07
4.20158e-06
5.49836e-06
7.4007e-06
7.06854e-06
1.40824e-05
1.93855e-05
6.31091e-06
2.31992e-05
2.85493e-05
2.03961e-06
1.60242e-05
3.40648e-05
2.97063e-05
2.26991e-05
2.38776e-05
3.1566e-05
3.93585e-05
3.99549e-05
3.81389e-05
3.46819e-05
3.20509e-05
3.64819e-05
4.07589e-05
4.21994e-05
4.33254e-05
4.58165e-05
4.75708e-05
4.64533e-05
4.37612e-05
4.24875e-05
4.32925e-05
4.50584e-05
4.65825e-05
4.79457e-05
4.88434e-05
4.9772e-05
5.04603e-05
4.90833e-05
4.8011e-05
4.81765e-05
4.76067e-05
4.71205e-05
4.61192e-05
4.38024e-05
4.30962e-05
4.40447e-05
4.44933e-05
4.51728e-05
4.73427e-05
5.0222e-05
5.23338e-05
5.28722e-05
5.26911e-05
5.16351e-05
5.07451e-05
5.04731e-05
5.03684e-05
5.09482e-05
5.12938e-05
5.16131e-05
5.17786e-05
5.17934e-05
5.11672e-05
5.07172e-05
5.01383e-05
4.92301e-05
4.88198e-05
4.85501e-05
4.82156e-05
4.81641e-05
4.87232e-05
4.92774e-05
4.96933e-05
4.99471e-05
4.99661e-05
4.9882e-05
5.0085e-05
5.04912e-05
5.06657e-05
5.10011e-05
5.0786e-05
5.15643e-05
5.33724e-05
5.38567e-05
5.31565e-05
5.44054e-05
5.64518e-05
5.70016e-05
5.57068e-05
5.46858e-05
5.4058e-05
5.41648e-05
5.36272e-05
5.38746e-05
5.57077e-05
5.75509e-05
5.86565e-05
5.9705e-05
5.29863e-05
3.80768e-05
2.7529e-05
2.13403e-05
2.06597e-05
2.0857e-05
3.01599e-05
4.03107e-05
4.82849e-05
5.05244e-05
5.14281e-05
5.10198e-05
5.13844e-05
5.14375e-05
5.17578e-05
5.02741e-05
4.98212e-05
4.65809e-05
4.69052e-05
4.28455e-05
4.52506e-05
4.05743e-05
4.4756e-05
4.20996e-05
4.50178e-05
4.31982e-05
4.43375e-05
4.47569e-05
4.67806e-05
4.64806e-05
4.36798e-05
4.26776e-05
3.94967e-05
3.72884e-05
3.80635e-05
4.22482e-05
3.90063e-05
3.71012e-05
4.40793e-05
1.99683e-05
0
5.79198e-06
0
0
0
0
1.38242e-06
0
8.31067e-06
4.21734e-06
1.07495e-05
1.06883e-05
1.46588e-05
1.612e-05
1.82818e-05
1.84672e-05
2.43286e-05
3.02542e-05
2.56911e-05
3.18501e-05
3.65336e-05
2.13098e-05
3.02607e-05
3.76962e-05
3.42627e-05
3.22579e-05
3.51134e-05
4.00596e-05
4.27117e-05
4.21717e-05
4.09821e-05
3.73514e-05
3.70817e-05
4.20153e-05
4.36291e-05
4.32439e-05
4.43843e-05
4.71646e-05
4.86823e-05
4.77634e-05
4.60606e-05
4.54216e-05
4.60854e-05
4.7262e-05
4.81578e-05
4.89261e-05
4.95337e-05
5.02462e-05
5.06979e-05
5.00565e-05
4.98922e-05
5.00404e-05
4.92249e-05
4.83356e-05
4.69836e-05
4.46895e-05
4.37484e-05
4.48883e-05
4.67428e-05
4.94397e-05
5.23588e-05
5.4307e-05
5.50152e-05
5.44923e-05
5.36448e-05
5.23385e-05
5.14414e-05
5.12558e-05
5.13537e-05
5.18563e-05
5.21254e-05
5.23906e-05
5.23627e-05
5.21982e-05
5.15933e-05
5.1223e-05
5.07228e-05
4.99952e-05
4.95851e-05
4.92013e-05
4.87642e-05
4.86449e-05
4.91392e-05
4.95454e-05
4.98326e-05
4.99651e-05
4.98825e-05
4.96603e-05
4.98718e-05
5.03598e-05
5.03225e-05
5.043e-05
5.05831e-05
5.16378e-05
5.30937e-05
5.34759e-05
5.35496e-05
5.53491e-05
5.70283e-05
5.70403e-05
5.54072e-05
5.42946e-05
5.36736e-05
5.32254e-05
5.21649e-05
5.2455e-05
5.51163e-05
5.71925e-05
5.74471e-05
5.72988e-05
5.09733e-05
3.97196e-05
3.71747e-05
3.60076e-05
3.45135e-05
3.52881e-05
4.32501e-05
4.8154e-05
5.12568e-05
5.11964e-05
5.13142e-05
5.03184e-05
5.0647e-05
5.04408e-05
5.08982e-05
4.95416e-05
4.92552e-05
4.62895e-05
4.64978e-05
4.26908e-05
4.47419e-05
4.03345e-05
4.43736e-05
4.2138e-05
4.46096e-05
4.32449e-05
4.39683e-05
4.48927e-05
4.69381e-05
4.4096e-05
4.27422e-05
3.88808e-05
3.73563e-05
3.47832e-05
3.81846e-05
4.04257e-05
3.74216e-05
3.79854e-05
3.71777e-05
6.26654e-06
9.10978e-06
2.25385e-06
0
0
2.90183e-06
6.38288e-06
1.25088e-05
1.14862e-05
1.74108e-05
1.65099e-05
2.06305e-05
2.16035e-05
2.44506e-05
2.56905e-05
2.69643e-05
2.92234e-05
3.17111e-05
3.30127e-05
3.3129e-05
3.55018e-05
3.48465e-05
3.22661e-05
3.84753e-05
3.92692e-05
3.45446e-05
3.56746e-05
4.0076e-05
4.30026e-05
4.30372e-05
4.16059e-05
4.04498e-05
3.78185e-05
3.98577e-05
4.41658e-05
4.40585e-05
4.25033e-05
4.37495e-05
4.65379e-05
4.74505e-05
4.64711e-05
4.55108e-05
4.54516e-05
4.61795e-05
4.70641e-05
4.75734e-05
4.78291e-05
4.80611e-05
4.83732e-05
4.84941e-05
4.84911e-05
4.89724e-05
4.89849e-05
4.79162e-05
4.67807e-05
4.51637e-05
4.30425e-05
4.23256e-05
4.3852e-05
4.66143e-05
5.01621e-05
5.30314e-05
5.42082e-05
5.39879e-05
5.27246e-05
5.13931e-05
5.00467e-05
4.93987e-05
4.94583e-05
4.98156e-05
5.02179e-05
5.0367e-05
5.05397e-05
5.02355e-05
4.98712e-05
4.93637e-05
4.91451e-05
4.87897e-05
4.83767e-05
4.8069e-05
4.76544e-05
4.724e-05
4.71812e-05
4.76666e-05
4.79105e-05
4.8071e-05
4.80036e-05
4.77304e-05
4.73583e-05
4.76358e-05
4.80901e-05
4.7631e-05
4.7581e-05
4.83561e-05
4.95943e-05
5.0314e-05
5.07712e-05
5.19106e-05
5.4236e-05
5.52342e-05
5.42905e-05
5.2294e-05
5.1381e-05
5.07986e-05
4.90899e-05
4.6932e-05
4.76785e-05
5.17481e-05
5.40188e-05
5.19542e-05
4.91442e-05
4.4223e-05
4.05914e-05
4.37671e-05
4.42758e-05
4.34652e-05
4.41289e-05
4.79082e-05
4.93349e-05
4.99751e-05
4.78616e-05
4.74143e-05
4.56911e-05
4.63519e-05
4.56763e-05
4.64448e-05
4.52763e-05
4.53951e-05
4.30695e-05
4.32139e-05
3.99801e-05
4.14666e-05
3.77534e-05
4.16176e-05
4.00433e-05
4.16575e-05
4.10907e-05
4.10645e-05
4.32401e-05
4.40748e-05
3.74121e-05
3.79559e-05
2.9801e-05
3.18653e-05
2.98319e-05
3.62882e-05
3.46487e-05
3.41368e-05
3.47747e-05
2.35097e-05
0
1.5377e-05
0
0
7.99862e-06
1.27908e-05
1.59552e-05
1.8801e-05
1.90166e-05
2.08214e-05
2.09062e-05
2.25797e-05
2.3159e-05
2.44534e-05
2.48893e-05
2.60798e-05
2.81674e-05
2.95869e-05
2.95677e-05
3.01751e-05
3.1807e-05
2.72401e-05
2.86968e-05
3.64515e-05
3.26697e-05
2.68472e-05
3.06321e-05
3.69371e-05
3.89778e-05
3.46051e-05
3.12505e-05
3.09783e-05
3.01534e-05
3.49811e-05
4.06386e-05
3.75143e-05
3.29614e-05
3.43444e-05
3.65981e-05
3.5377e-05
3.37496e-05
3.45835e-05
3.64964e-05
3.7892e-05
3.82381e-05
3.77667e-05
3.66503e-05
3.55813e-05
3.4805e-05
3.41377e-05
3.51264e-05
3.6986e-05
3.65364e-05
3.45558e-05
3.30847e-05
3.14431e-05
2.99585e-05
3.03026e-05
3.3091e-05
3.73724e-05
4.16223e-05
4.37358e-05
4.29962e-05
4.05696e-05
3.78659e-05
3.57536e-05
3.46099e-05
3.47798e-05
3.54546e-05
3.63938e-05
3.64989e-05
3.61405e-05
3.59622e-05
3.50594e-05
3.41985e-05
3.39273e-05
3.42353e-05
3.42155e-05
3.4632e-05
3.50088e-05
3.46579e-05
3.45017e-05
3.4936e-05
3.559e-05
3.55116e-05
3.54454e-05
3.4999e-05
3.40731e-05
3.34885e-05
3.40909e-05
3.40846e-05
3.24997e-05
3.23502e-05
3.46494e-05
3.6024e-05
3.45658e-05
3.47336e-05
3.8511e-05
4.22577e-05
4.127e-05
3.73722e-05
3.47705e-05
3.54142e-05
3.48876e-05
3.11692e-05
2.71088e-05
2.79753e-05
3.41002e-05
3.65384e-05
2.87784e-05
2.02663e-05
2.14978e-05
2.96888e-05
3.78092e-05
3.94519e-05
3.94337e-05
4.1372e-05
4.42159e-05
4.01128e-05
3.41675e-05
2.82591e-05
2.72972e-05
2.54486e-05
2.68777e-05
2.60471e-05
2.70734e-05
2.6712e-05
2.70654e-05
2.66488e-05
2.62433e-05
2.50051e-05
2.47284e-05
2.32932e-05
2.64227e-05
2.61152e-05
2.64941e-05
2.58911e-05
2.61775e-05
3.00646e-05
2.65938e-05
1.76792e-05
1.81011e-05
8.06583e-06
1.53889e-05
1.71183e-05
2.19455e-05
1.61679e-05
2.16453e-05
1.44054e-05
0
0
1.40765e-05
0
)
;
}
hot
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
cold
{
type nutUWallFunction;
blending stepwise;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 0;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
88e6781a315891f8552d367eb81fe23fde344e05 | a799dc8bd21971835ce26716b84cb3df81ee92b0 | /src/SVC.cpp | 8e67a29e50f0051cf771f7a45fc6aac1ec52db82 | [] | no_license | vilhena1/mlRFinance | 44a6096382c1c489a91473fe3b5922e5197ac2d7 | 579f277eecd4cf86492c30dd0ec4cbd2bf635445 | refs/heads/master | 2021-01-23T14:11:27.631941 | 2017-09-09T16:18:08 | 2017-09-09T16:18:08 | 102,677,556 | 0 | 0 | null | 2017-09-09T16:18:09 | 2017-09-07T01:45:20 | C++ | UTF-8 | C++ | false | false | 15,820 | cpp | #include <RcppEigen.h>
#include "eiquadprog.h"
#include "KernelMatrix.h"
#include "Utils.h"
#include "progress.hpp"
#include <cmath>
// [[Rcpp::depends(RcppEigen)]]
// [[Rcpp::depends(RcppProgress)]]
/***********************************************************************************************/
/********************************* HEADER FUNCTIONS ****************************************/
/***********************************************************************************************/
//Define the KernelMatrix function
Eigen::MatrixXd KernelMatrixComputation(Eigen::MatrixXd datMat,
std::string stringValue,
Eigen::RowVectorXd parms);
//Define the Solver for Quadratic Programming
Eigen::VectorXd rcppeigen_quadratic_solve(Eigen::MatrixXd & G,
Eigen::VectorXd & g0,
const Eigen::MatrixXd & CE,
const Eigen::VectorXd & ce0,
const Eigen::MatrixXd & CI,
const Eigen::VectorXd & ci0);
//Test if the matrix is Positive Definite
bool IsPositiveDefinite(Eigen::MatrixXd mat);
//nearest positive semidefinite matrix in terms of Frobenius norm
void nearPositiveDefinite(Eigen::MatrixXd &mat,double noise);
//Nearest positive semidefinite matrix (Matrix::nearPD)
Eigen::MatrixXd nearPDefinite(Eigen::MatrixXd mat, int maxit, double eigtol, double conv_tol, double posd_tol, bool keepDiagonal);
//Add some noise to the matrix diagonal
void addNoise(Eigen::MatrixXd &mat,double noise);
//Print Object at Console
void PrintObject(Eigen::MatrixXd mat);
void PrintObject(Eigen::VectorXd vec);
/***********************************************************************************************/
/********************************* SVC FUNCTIONS ****************************************/
/***********************************************************************************************/
//TODO: Deixar mais eficiente a normalização zMat=zMat.array().rowwise()/vecSum.transpose().array();
//' @name WOC-SCM
//' @title WOC-SCM - Support Vector Clustering
//' @description Optimize the Lagrange multiplier for the WOC-SCM:
//'
//' Min (1/2)u^{t}Qu+g^{t}u
//' s.t.
//' 0<=u<=wi*C
//' sum ui=1
//' where g=diag(K) and Q=-2K
//' C is the Cost parameter, wi weights for each observation
//'
//' @param X Numeric matrix with the explanatory variables. Dimension equal NxP
//' @param C Cost parameter. Should be C>=0.
//' @param k Total number of clusters.
//' @param sigma Similarity parameter.
//' @param inter Total number of interations.
//' @param parms Parameters associated with chosen kenel.
//' @return List Support Vectors, Kernel used, parameters and similarity matrix.
//' If the results for the Support Vectors are NaN it means that
//' there is no Support Vector and the Quadratic Programming Problem
//' is unfeasible.
//' @examples
//'
//' A<-matrix(c(1,2,5,6,
//' 5,5,2,1,
//' 8,1,1,7),nrow=4,ncol=3)
//' svc<-WOCSCM(A, 1, 2, 1, 100, "Gaussian", c(0.5))
//' svc
//' @seealso See \code{\link{.CallOctave}}, \code{\link{o_source}}, \code{\link{o_help}}
// @cite Bicego, Manuele, and Mario AT Figueiredo.
// "Soft clustering using weighted one-class support vector machines."
// Pattern Recognition 42.1 (2009): 27-32.
// @bibliography ~/vignettes/bibliography.bib
// [[Rcpp::export]]
Rcpp::List WOCSCM(Eigen::MatrixXd X, double C, int k,double sigma,int inter, std::string kernel, Eigen::RowVectorXd parms){
//Cluster weights
Eigen::VectorXd gammaWeight(k);
gammaWeight.fill(1.0/(double)k);
//Support Vectors
Eigen::VectorXd SV(X.cols());
//Z matrix
Eigen::MatrixXd zMat = Eigen::MatrixXd::Random(X.rows(),k);
zMat = zMat.cwiseAbs();
//Get the row sum
Eigen::VectorXd vecSum = zMat.array().rowwise().sum().eval();
//Normalize zMat
for(int l=0;l<zMat.rows();l++){
zMat.row(l)=zMat.row(l)/vecSum(l);
}
Eigen::MatrixXd simVec(X.rows(),k);
//Initialize logLikelihood
Eigen::VectorXd llVec(inter);
//Create the Kernel Matrix
Eigen::MatrixXd K = KernelMatrixComputation(X,kernel,parms);
//Nearest positive semidefinite matrix in terms of Frobenius norm
//nearPositiveDefinite(K,1e-10);
K = nearPDefinite(K, 1e+6, 1e-06, 1e-07, 1e-08, true);
//Training the WOC-SCM
Eigen::VectorXd g(X.rows());
g = (-1.0)*K.diagonal();
//Quadratic programming matrix
Eigen::MatrixXd Q = (+2.0)*K;
//RHS equality
Eigen::VectorXd ce0(1);
ce0.fill(-1.0);
//LHS equality
Eigen::MatrixXd CE = Eigen::MatrixXd::Ones(1,X.rows());
//RHS: Inequality 1
Eigen::VectorXd ci1 = Eigen::VectorXd::Zero(X.rows());
//LHS: Inequality 1
Eigen::MatrixXd CI1 = Eigen::MatrixXd::Identity(X.rows(),X.rows());
//Intialize the progressbar
Progress p(inter, true);
for(int it=0;it<inter;it++){
//Verify if everything is ok
if (Progress::check_abort()) return -1.0;
//Initialize the loop
for(int c=0;c<k;c++){
//RHS: Inequality 2
Eigen::VectorXd ci2(X.rows());
ci2.fill(C);
//Weighted Cost parameter
ci2=ci2.array()*zMat.col(c).array();
//Append RHS
Eigen::VectorXd ci0(2.0*X.rows());
ci0 << ci1, ci2;
//Append LHS
Eigen::MatrixXd CI(CI1.rows()+CI1.rows(), CI1.cols());
//Diagonal matrix
Eigen::VectorXd me(X.rows());
me.fill(-1.0);
Eigen::MatrixXd mI = me.asDiagonal();
//Vertical concatenation
CI << CI1,
mI;
//Get the solution Support Vectors
SV = rcppeigen_quadratic_solve(Q,g, CE.transpose(),ce0, CI.transpose(), ci0);
//Get the center of the Hypersphere
Eigen::RowVectorXd centerA(X.rows());
centerA = SV.transpose()*X;
//For each line
Eigen::VectorXd dist0 = K.diagonal();
Eigen::VectorXd dist1 = (-2.0)*(SV.transpose()*K).array();
double dist2 = SV.transpose()*K*SV;
Eigen::VectorXd zVec = dist0.array()+dist1.array()+dist2;
zVec=(-1.0)*zVec/sigma;
//For each cluster
zVec = zVec.array().exp()*gammaWeight(c);
//Store the similarity
simVec.col(c) = zVec;
//Store the column
zMat.col(c) = zVec;
}
//M-Step
//Get the row sum
vecSum = zMat.array().rowwise().sum().eval();
//Normalize zMat
for(int l=0;l<zMat.rows();l++){
zMat.row(l)=zMat.row(l)/vecSum(l);
}
//Update gammaWeight
gammaWeight = (1.0/zMat.rows())*zMat.colwise().sum();
//Compute the log-likelihood
double ll=simVec.colwise().sum().array().log().sum();
llVec(it)=ll;
//Increment the progress bar
p.increment();
}
//Return the results
return Rcpp::List::create(Rcpp::Named("LogLikelihood") = llVec,
Rcpp::Named("Zmat") = zMat,
Rcpp::Named("Kernel") = kernel,
Rcpp::Named("Parameters") = parms);
}
double R2Distance(Eigen::MatrixXd K, Eigen::MatrixXd X, Eigen::VectorXd SV, Eigen::RowVectorXd x, std::string kernel, Eigen::RowVectorXd parms){
//Calculate the R2 distance.
double res=0;
double K1 = KernelMatrixComputationValue(x, x, kernel, parms);
Eigen::VectorXd Krow = KernelMatrixComputationPred(X,x,kernel,parms);
double K2 = SV.transpose()*Krow;
double K3 = SV.transpose()*K*SV;
res = K1-2*K2+K3;
return(res);
}
// [[Rcpp::export]]
Rcpp::List CSVC(Eigen::MatrixXd X, double C, std::string kernel, Eigen::RowVectorXd parms){
//Support Vectors
Eigen::VectorXd SV(X.cols());
//Create the Kernel Matrix
Eigen::MatrixXd K = KernelMatrixComputation(X,kernel,parms);
//Nearest positive semidefinite matrix in terms of Frobenius norm
//nearPositiveDefinite(K,1e-10);
K = nearPDefinite(K, 1e+6, 1e-06, 1e-07, 1e-08, true);
//Training the WOC-SCM
Eigen::VectorXd g(X.rows());
g = (-1.0)*K.diagonal();
//Quadratic programming matrix
Eigen::MatrixXd Q = (+2.0)*K;
//RHS equality
Eigen::VectorXd ce0(1);
ce0.fill(-1.0);
//LHS equality
Eigen::MatrixXd CE = Eigen::MatrixXd::Ones(1,X.rows());
//RHS: Inequality 1
Eigen::VectorXd ci1 = Eigen::VectorXd::Zero(X.rows());
//LHS: Inequality 1
Eigen::MatrixXd CI1 = Eigen::MatrixXd::Identity(X.rows(),X.rows());
//RHS: Inequality 2
Eigen::VectorXd ci2(X.rows());
ci2.fill(C);
//Append RHS
Eigen::VectorXd ci0(2.0*X.rows());
ci0 << ci1, ci2;
//Append LHS
Eigen::MatrixXd CI(CI1.rows()+CI1.rows(), CI1.cols());
//Diagonal matrix
Eigen::VectorXd me(X.rows());
me.fill(-1.0);
Eigen::MatrixXd mI = me.asDiagonal();
//Vertical concatenation
CI << CI1,
mI;
//Get the solution Support Vectors
SV = rcppeigen_quadratic_solve(Q,g, CE.transpose(),ce0, CI.transpose(), ci0);
//Get the center of the Hypersphere
Eigen::RowVectorXd centerA(X.rows());
centerA = SV.transpose()*X;
//Find the Support Vectors
double R2 = 0.0;
double cont = 0 ;
for(int i=0;i<X.rows();i++){
//Support Vector 0 < lambda < C
if(SV(i)>1e-5 & SV(i)< C-1e-5){
R2 = R2 + R2Distance(K, X, SV, X.row(i), kernel, parms);
cont = cont+1.0;
}
}
R2 = R2/cont;
//Caculating adjacency matrix
R2 = R2+1e-7;
int inter = (X.rows()*(X.rows()-1)/2);
//Intialize the progressbar
Progress p(inter, true);
//Create the Adjancet Matrix
Eigen::MatrixXd A = Eigen::MatrixXd::Zero(X.rows(),X.rows());
for(int i=0;i<X.rows();i++){
Eigen::RowVectorXd x = X.row(i);
for(int j=(i+1);j<X.rows();j++){
Eigen::RowVectorXd y = X.row(i);
//Number of segments
int iSegments=20;
double k = 1.0/(double) iSegments;
//Boolean connected
int conect = 0;
//Check every point between them
for(int s=0;s<iSegments;s++){
//Calculate the distance
Eigen::RowVectorXd z = x+k*(y-x);
double dist = R2Distance(K, X, SV, z, kernel, parms);
//Increment k
k = k+(1.0/(double)iSegments);
if(dist <= R2){
conect=conect+1;
}
}
if(conect==iSegments){
A(i,j)=1;
A(j,i)=1;
}
//Increment the progress bar
p.increment();
}
}
//Return the results
return Rcpp::List::create(Rcpp::Named("AdjacencyMatrix") = A,
Rcpp::Named("SupportVectors") = SV,
Rcpp::Named("Kernel") = kernel,
Rcpp::Named("Parameters") = parms);
}
//TODO: Deixar mais eficiente a normalização zMat=zMat.array().rowwise()/vecSum.transpose().array();
//' @name WOC-SCM
//' @title WOC-SCM - Support Vector Clustering
//' @description Optimize the Lagrange multiplier for the WOC-SCM:
//'
//' Min (1/2)u^{t}Qu+g^{t}u
//' s.t.
//' 0<=u<=wi*C
//' sum ui=1
//' where g=diag(K) and Q=-2K
//' C is the Cost parameter, wi weights for each observation
//'
//' @param X Numeric matrix with the explanatory variables. Dimension equal NxP
//' @param wMat Weight Numeric matrix. Dimension equal NxN
//' @param C Cost parameter. Should be C>=0.
//' @param k Total number of clusters.
//' @param sigma Similarity parameter (between 0 and 1).
//' @param inter Total number of interations.
//' @param parms Parameters associated with chosen kenel.
//' @return List Support Vectors, Kernel used, parameters and similarity matrix.
//' If the results for the Support Vectors are NaN it means that
//' there is no Support Vector and the Quadratic Programming Problem
//' is unfeasible.
//' @examples
//'
//' A<-matrix(c(1,2,5,6,
//' 5,5,2,1,
//' 8,1,1,7),nrow=4,ncol=3)
//' svc<-WOCSCM(A, 1, 2, 1, 100, "Gaussian", c(0.5))
//' svc
//' @seealso See \code{\link{.CallOctave}}, \code{\link{o_source}}, \code{\link{o_help}}
// @cite Bicego, Manuele, and Mario AT Figueiredo.
// "Soft clustering using weighted one-class support vector machines."
// Pattern Recognition 42.1 (2009): 27-32.
// @bibliography ~/vignettes/bibliography.bib
// [[Rcpp::export]]
Rcpp::List SpatialWOCSCM(Eigen::MatrixXd X,Eigen::MatrixXd wMat, double C, int k,double gamma1, double gamma2,int inter, std::string kernel, Eigen::RowVectorXd parms){
//Cluster weights
Eigen::VectorXd gammaWeight(k);
gammaWeight.fill(1.0/(double)k);
//Support Vectors
Eigen::VectorXd SV(X.cols());
//Z matrix
Eigen::MatrixXd zMat = Eigen::MatrixXd::Random(X.rows(),k);
zMat = zMat.cwiseAbs();
//Get the row sum
Eigen::VectorXd vecSum = zMat.array().rowwise().sum().eval();
//Normalize zMat
for(int l=0;l<zMat.rows();l++){
zMat.row(l)=zMat.row(l)/vecSum(l);
}
Eigen::MatrixXd simVec(X.rows(),k);
//Initialize logLikelihood
Eigen::VectorXd llVec(inter);
//Create the Kernel Matrix
Eigen::MatrixXd K = KernelMatrixComputation(X,kernel,parms);
//Nearest positive semidefinite matrix in terms of Frobenius norm
//nearPositiveDefinite(K,1e-10);
K = nearPDefinite(K, 1e+6, 1e-06, 1e-07, 1e-08, true);
//Training the WOC-SCM
Eigen::VectorXd g(X.rows());
g = (-1.0)*K.diagonal();
//Quadratic programming matrix
Eigen::MatrixXd Q = (+1.0)*K;
//RHS equality
Eigen::VectorXd ce0(1);
ce0.fill(-1.0);
//LHS equality
Eigen::MatrixXd CE = Eigen::MatrixXd::Ones(1,X.rows());
//RHS: Inequality 1
Eigen::VectorXd ci1 = Eigen::VectorXd::Zero(X.rows());
//LHS: Inequality 1
Eigen::MatrixXd CI1 = Eigen::MatrixXd::Identity(X.rows(),X.rows());
//Intialize the progressbar
Progress p(inter, true);
for(int it=0;it<inter;it++){
//Verify if everything is ok
if (Progress::check_abort()) return -1.0;
//Initialize the loop
for(int c=0;c<k;c++){
//RHS: Inequality 2
Eigen::VectorXd ci2(X.rows());
ci2.fill(C);
//Weighted Cost parameter
ci2=ci2.array()*zMat.col(c).array();
//Append RHS
Eigen::VectorXd ci0(2.0*X.rows());
ci0 << ci1, ci2;
//Append LHS
Eigen::MatrixXd CI(CI1.rows()+CI1.rows(), CI1.cols());
//Diagonal matrix
Eigen::VectorXd me(X.rows());
me.fill(-1.0);
Eigen::MatrixXd mI = me.asDiagonal();
//Vertical concatenation
CI << CI1,
mI;
//Get the solution Support Vectors
SV = rcppeigen_quadratic_solve(Q,g, CE.transpose(),ce0, CI.transpose(), ci0);
//Get the center of the Hypersphere
Eigen::RowVectorXd centerA(X.rows());
centerA = SV.transpose()*X;
//For each line
Eigen::VectorXd dist0 = K.diagonal();
Eigen::VectorXd dist1 = (-2.0)*(SV.transpose()*K).array();
double dist2 = SV.transpose()*K*SV;
Eigen::VectorXd zVec1 = dist0.array()+dist1.array()+dist2;
//Weight based on distance
Eigen::VectorXd zVec2 = zVec1.transpose()*wMat;
//Smooth factor
zVec1=(-1.0)*zVec1*(1/gamma1);
//Smooth factor
zVec2=(-1.0)*zVec2*(1/gamma2);
//Join the two similarities
Eigen::VectorXd zVec = zVec1+zVec2;
//For each cluster
zVec = zVec.array().exp()*gammaWeight(c);
//Store the similarity
simVec.col(c) = zVec;
//Store the column
zMat.col(c) = zVec;
}
//M-Step
//Get the row sum
vecSum = zMat.array().rowwise().sum().eval();
//Normalize zMat
for(int l=0;l<zMat.rows();l++){
zMat.row(l)=zMat.row(l)/vecSum(l);
}
//Update gammaWeight
gammaWeight = (1.0/zMat.rows())*zMat.colwise().sum();
//Compute the log-likelihood
double ll=simVec.colwise().sum().array().log().sum();
llVec(it)=ll;
//Increment the progress bar
p.increment();
}
//Return the results
return Rcpp::List::create(Rcpp::Named("LogLikelihood") = llVec,
Rcpp::Named("Zmat") = zMat,
Rcpp::Named("Kernel") = kernel,
Rcpp::Named("Parameters") = parms);
}
| [
"[email protected]"
] | |
752522272fa183b35faaf8fb9d7df6cf52724bf8 | 62d5fd2277ed20029b656d18d6738c248273eedd | /A.cpp | cc46c0f2cc3e4ac33bc53234ab279a504cd1dbce | [] | no_license | guinao/poj | c2bc9f8d498dd0bb2a36443b854f49583adb46ae | 80795e41c22c6b4a2d046e58d49c337576577f8f | refs/heads/master | 2021-01-01T05:41:22.621218 | 2015-09-05T12:05:38 | 2015-09-05T12:05:38 | 21,536,515 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,222 | cpp | #include<cstdio>
#include<cstring>
#include<vector>
#include <algorithm>
using namespace std;
void compute_prefix(const int p[], int pi[], int m)
{
pi[0] = -1;
int k = -1;
for(int i=1; i<m; ++i){
while(k>=0 && p[k+1]!=p[i])
k = pi[k];
if(p[k+1] == p[i])
++k;
pi[i] = k;
}
}
int pit[100];
void extended_compute_prefix(const int p[], int pi[], int m)
{
compute_prefix(p, pit, m);
for(int i=0; i<m; ++i){
if(pit[i] == -1)
pi[i] = -1;
else if(p[pit[i]+1] == p[i+1])
pi[i] = pi[pit[i]];
else pi[i] = pit[i];
}
}
int kmp_matcher(const int t[], int n, const int p[], int m)
{
vector<int> ret;
int *pi = new int[m];
compute_prefix(p, pi, m);
int q = -1;
for(int i=0; i<n; ++i){
while(q>=0 && p[q+1]!=t[i])
q = pi[q];
if(p[q+1] == t[i])
++q;
if(q == m-1){
ret.push_back(i);
q = -1;
}
}
delete pi;
return ret.size();
}
int main()
{
int n;
int t[400], p[400];
int ans;
while(EOF !=scanf("%d", &n)){
for(int i=0; i<n; ++i){
scanf("%d", t+i);
}
ans = 0;
for(int l=1; l<=n; ++l){
for(int i=0; i<i-l; ++i){
for(int j=i; j<i+l; ++j){
p[j-i] = t[j];
}
ans = max(ans, kmp_matcher(t, n, p, l));
}
}
printf("%d\n", ans);
}
return 0;
} | [
"[email protected]"
] | |
563be63abad22f707626335deb516b71b4a34686 | 3503ca10b545f4a758e7f50e6170909a45cbb544 | /2576.cpp | 7190143e8c42362aea717f5c74d9164c5cf81a67 | [] | no_license | YongHoonJJo/BOJ | 531f660e841b7e9dce2afcf1f16a4acf0b408f32 | 575caa436abdb69eae48ac4d482365e4801c8a08 | refs/heads/master | 2021-05-02T18:32:33.936520 | 2019-06-22T17:16:13 | 2019-06-22T17:16:13 | 63,855,378 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | cpp | #include <stdio.h>
int main()
{
int i, n, sum=0, Min=-1;
for(i=0; i<7; i++) {
scanf("%d", &n);
if(n&1) {
sum += n;
if(Min == -1 || Min > n)
Min = n;
}
}
if(Min != -1) printf("%d\n", sum);
printf("%d\n", Min);
return 0;
}
| [
"[email protected]"
] | |
d3254e15af26ad35ced9b8fd79751027fe2c22cb | b0e8ca207c12f22207bf6c43869fb8c52d181d4f | /host/flash_table_widget.cpp | 9e7057e741ab21698b42a01ed93bebcd4f4241c8 | [] | no_license | huanzheng/burner | 6b8324ff9e44d887597cdbc1b7778cb9fa132faa | d7ccfc5cb5a26f3b228205c0a2a843cbc7e210a6 | refs/heads/master | 2020-07-26T06:41:32.298406 | 2019-09-15T09:01:08 | 2019-09-15T09:01:08 | 208,567,006 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,233 | cpp | /*
Copyright 2010, 2011 Huan Zheng <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library; if not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA */
#include <QtGui>
#include <QVBoxLayout>
#include "flash_table_model.h"
#include "flash_table_delegate.h"
#include "flash_table_widget.h"
#include "flash_table_view.h"
FlashTableWidget::FlashTableWidget(int row, int column, QWidget *parent) : QWidget(parent)
{
model = new FlashTableModel(row, column, this);
delegate = new FlashTableDelegate(this);
vlay = new QVBoxLayout(this);
view = new FlashTableView;
view->setShowGrid(false);
view->horizontalHeader()->hide();
view->verticalHeader()->hide();
view->horizontalHeader()->setMinimumSectionSize(1);
view->verticalHeader()->setMinimumSectionSize(1);
view->setModel(model);
view->setItemDelegate(delegate);
view->resizeColumnsToContents();
view->resizeRowsToContents();
vlay->addWidget(view);
}
FlashTableWidget::~FlashTableWidget()
{
delete delegate;
delete model;
delete view;
delete vlay;
}
void FlashTableWidget::set_flash_status(int index, FlashBurningStatus &f)
{
return model->set_flash_status(index, f);
}
QVector<int> FlashTableWidget::get_selected() const
{
QList<QModelIndex> selected = view->selected_indexes();
QVector<int> result;
for (QList<QModelIndex>::const_iterator i = selected.begin(); i != selected.end(); i++) {
int index;
model->map_row_column_to_index(i->row(), i->column(), index);
result.append(index);
}
return result;
}
| [
"[email protected]"
] | |
014e0c60cd115e9ef0bc6a462ec4e704196c7da1 | 2948d1810269e81530db93fec1f790b8fbf80bdf | /base/base64.cc | 4742bc28d6801f36663b94a5de0b8a2d404dc4e5 | [] | no_license | kornwilliams/linux_server | eee94949fcb51088f58c203689b7f97a45cca967 | b4bf891574b6b2290fd60d67d9da5ee67d699718 | refs/heads/master | 2021-01-22T03:13:41.502127 | 2015-06-29T07:36:25 | 2015-06-29T07:36:25 | 38,231,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,913 | cc | #include "base64.h"
namespace base {
const std::string Base64::alphabet64("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
const char Base64::pad = '=';
const std::string::size_type Base64::np = std::string::npos;
const std::string::size_type Base64::table64[] = { np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
62, np, np, np, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, np, np, np,
np, np, np, np, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, np, np, np, np, np, np, 26, 27,
28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
46, 47, 48, 49, 50, 51, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
np, np, np, np, np, np, np, np, np, np, np, np, np };
const std::string Base64::encode64(const std::string& input) {
std::string encoded;
char c;
const std::string::size_type length = input.length();
encoded.reserve(length * 2);
for (std::string::size_type i = 0; i < length; ++i) {
c = (input[i] >> 2 ) & 0x3f;
encoded.append( 1, alphabet64[c]);
c = (input[i] << 4 ) & 0x3f;
if ( ++i < length)
c |= ( (input[i] >> 4 ) & 0x0f );
encoded.append( 1, alphabet64[c]);
if (i < length) {
c = (input[i] << 2 ) & 0x3c;
if ( ++i < length)
c |= (input[i] >> 6 ) & 0x03;
encoded.append( 1, alphabet64[c]);
} else {
++i;
encoded.append( 1, pad);
}
if (i < length) {
c = input[i] & 0x3f;
encoded.append( 1, alphabet64[c]);
} else {
encoded.append( 1, pad);
}
}
return encoded;
}
const std::string Base64::decode64(const std::string& input) {
char c, d;
const std::string::size_type length = input.length();
std::string decoded;
decoded.reserve(length);
for (std::string::size_type i = 0; i < length; ++i) {
c = (char)table64[(unsigned char)input[i]];
++i;
d = (char)table64[(unsigned char)input[i]];
c = (c << 2 ) | ( (d >> 4 ) & 0x3 );
decoded.append( 1, c);
if ( ++i < length) {
c = input[i];
if (pad == c)
break;
c = (char)table64[(unsigned char)input[i]];
d = ( (d << 4 ) & 0xf0 ) | ( (c >> 2 ) & 0xf );
decoded.append( 1, d);
}
if ( ++i < length) {
d = input[i];
if (pad == d)
break;
d = (char)table64[(unsigned char)input[i]];
c = ( (c << 6 ) & 0xc0 ) | d;
decoded.append( 1, c);
}
}
return decoded;
}
}
| [
"yuanyin@iZ23xg2ynavZ.(none)"
] | yuanyin@iZ23xg2ynavZ.(none) |
5eac49ae7c7fab45641a8c6117cbb938710638cf | da00ce9705f90632ae10600baa8bc92f695b7d49 | /soloud/soloud.h | 4cec09ffc37996805c64b33dafbe9caa5958220c | [] | no_license | notnullnotvoid/VII | 98a7ac496d04db7456ab90dcc410cdeafde9b646 | cd6747d587e5d4e237a082c28a31ff7fe6dafa65 | refs/heads/master | 2022-09-01T14:10:16.945381 | 2020-05-31T11:04:36 | 2020-05-31T11:04:36 | 267,976,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,703 | h | /*
SoLoud audio engine
Copyright (c) 2013-2018 Jari Komppa
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#ifndef SOLOUD_H
#define SOLOUD_H
#ifdef _WIN32
#define WITH_SDL2
#else
#define WITH_SDL2_STATIC
#endif
#include <stdlib.h> // rand
#include <math.h> // sin
#ifdef SOLOUD_NO_ASSERTS
#define SOLOUD_ASSERT(x)
#else
#ifdef _MSC_VER
#include <stdio.h> // for sprintf in asserts
#define VC_EXTRALEAN
#define WIN32_LEAN_AND_MEAN
#include <windows.h> // only needed for OutputDebugStringA, should be solved somehow.
#define SOLOUD_ASSERT(x) if (!(x)) { char temp[200]; sprintf(temp, "%s(%d): assert(%s) failed.\n", __FILE__, __LINE__, #x); OutputDebugStringA(temp); __debugbreak(); }
#else
#include <assert.h> // assert
#define SOLOUD_ASSERT(x) assert(x)
#endif
#endif
#ifdef WITH_SDL
#undef WITH_SDL2
#undef WITH_SDL1
#define WITH_SDL1
#define WITH_SDL2
#endif
#ifdef WITH_SDL_STATIC
#undef WITH_SDL1_STATIC
#define WITH_SDL1_STATIC
#endif
#ifndef M_PI
#define M_PI 3.14159265359
#endif
#if defined(_WIN32)||defined(_WIN64)
#define WINDOWS_VERSION
#endif
#if !defined(DISABLE_SIMD)
#if defined(__x86_64__) || defined( _M_X64 ) || defined( __i386 ) || defined( _M_IX86 )
#define SOLOUD_SSE_INTRINSICS
#endif
#endif
#define SOLOUD_VERSION 201811
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
// Configuration defines
// Maximum number of filters per stream
#define FILTERS_PER_STREAM 8
// Number of samples to process on one go
#define SAMPLE_GRANULARITY 512
// Maximum number of concurrent voices (hard limit is 4095)
#define VOICE_COUNT 1024
// Use linear resampler
#define RESAMPLER_LINEAR
// 1)mono, 2)stereo 4)quad 6)5.1 8)7.1
#define MAX_CHANNELS 8
//
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
// Typedefs have to be made before the includes, as the
// includes depend on them.
namespace SoLoud
{
class Soloud;
typedef void (*mutexCallFunction)(void *aMutexPtr);
typedef void (*soloudCallFunction)(Soloud *aSoloud);
typedef unsigned int result;
typedef unsigned int handle;
typedef double time;
};
namespace SoLoud
{
// Class that handles aligned allocations to support vectorized operations
class AlignedFloatBuffer
{
public:
float *mData; // aligned pointer
unsigned char *mBasePtr; // raw allocated pointer (for delete)
int mFloats; // size of buffer (w/out padding)
// ctor
AlignedFloatBuffer();
// Allocate and align buffer
result init(unsigned int aFloats);
// Clear data to zero.
void clear();
// dtor
~AlignedFloatBuffer();
};
// Lightweight class that handles small aligned buffer to support vectorized operations
class TinyAlignedFloatBuffer
{
public:
float *mData; // aligned pointer
unsigned char mActualData[sizeof(float) * 16 + 16];
// ctor
TinyAlignedFloatBuffer();
};
};
#include "soloud_filter.h"
#include "soloud_fader.h"
#include "soloud_audiosource.h"
#include "soloud_bus.h"
#include "soloud_queue.h"
#include "soloud_error.h"
namespace SoLoud
{
// Soloud core class.
class Soloud
{
public:
// Back-end data; content is up to the back-end implementation.
void * mBackendData;
// Pointer for the audio thread mutex.
void * mAudioThreadMutex;
// Flag for when we're inside the mutex, used for debugging.
bool mInsideAudioThreadMutex;
// Called by SoLoud to shut down the back-end. If NULL, not called. Should be set by back-end.
soloudCallFunction mBackendCleanupFunc;
// CTor
Soloud();
// DTor
~Soloud();
enum BACKENDS
{
AUTO = 0,
SDL1,
SDL2,
PORTAUDIO,
WINMM,
XAUDIO2,
WASAPI,
ALSA,
OSS,
OPENAL,
COREAUDIO,
OPENSLES,
VITA_HOMEBREW,
NULLDRIVER,
BACKEND_MAX,
};
enum FLAGS
{
// Use round-off clipper
CLIP_ROUNDOFF = 1,
ENABLE_VISUALIZATION = 2,
LEFT_HANDED_3D = 4
};
// Initialize SoLoud. Must be called before SoLoud can be used.
result init(unsigned int aFlags = Soloud::CLIP_ROUNDOFF, unsigned int aBackend = Soloud::AUTO, unsigned int aSamplerate = Soloud::AUTO, unsigned int aBufferSize = Soloud::AUTO, unsigned int aChannels = 2);
// Deinitialize SoLoud. Must be called before shutting down.
void deinit();
// Query SoLoud version number (should equal to SOLOUD_VERSION macro)
unsigned int getVersion() const;
// Translate error number to an asciiz string
const char * getErrorString(result aErrorCode) const;
// Returns current backend ID (BACKENDS enum)
unsigned int getBackendId();
// Returns current backend string. May be NULL.
const char * getBackendString();
// Returns current backend channel count (1 mono, 2 stereo, etc)
unsigned int getBackendChannels();
// Returns current backend sample rate
unsigned int getBackendSamplerate();
// Returns current backend buffer size
unsigned int getBackendBufferSize();
// Set speaker position in 3d space
result setSpeakerPosition(unsigned int aChannel, float aX, float aY, float aZ);
// Get speaker position in 3d space
result getSpeakerPosition(unsigned int aChannel, float &aX, float &aY, float &aZ);
// Start playing a sound. Returns voice handle, which can be ignored or used to alter the playing sound's parameters. Negative volume means to use default.
handle play(AudioSource &aSound, float aVolume = -1.0f, float aPan = 0.0f, bool aPaused = 0, unsigned int aBus = 0);
// Start playing a sound delayed in relation to other sounds called via this function. Negative volume means to use default.
handle playClocked(time aSoundTime, AudioSource &aSound, float aVolume = -1.0f, float aPan = 0.0f, unsigned int aBus = 0);
// Start playing a 3d audio source
handle play3d(AudioSource &aSound, float aPosX, float aPosY, float aPosZ, float aVelX = 0.0f, float aVelY = 0.0f, float aVelZ = 0.0f, float aVolume = 1.0f, bool aPaused = 0, unsigned int aBus = 0);
// Start playing a 3d audio source, delayed in relation to other sounds called via this function.
handle play3dClocked(time aSoundTime, AudioSource &aSound, float aPosX, float aPosY, float aPosZ, float aVelX = 0.0f, float aVelY = 0.0f, float aVelZ = 0.0f, float aVolume = 1.0f, unsigned int aBus = 0);
// Start playing a sound without any panning. It will be played at full volume.
handle playBackground(AudioSource &aSound, float aVolume = -1.0f, bool aPaused = 0, unsigned int aBus = 0);
// Seek the audio stream to certain point in time. Some streams can't seek backwards. Relative play speed affects time.
result seek(handle aVoiceHandle, time aSeconds);
// Stop the sound.
void stop(handle aVoiceHandle);
// Stop all voices.
void stopAll();
// Stop all voices that play this sound source
void stopAudioSource(AudioSource &aSound);
// Count voices that play this audio source
int countAudioSource(AudioSource &aSound);
// Set a live filter parameter. Use 0 for the global filters.
void setFilterParameter(handle aVoiceHandle, unsigned int aFilterId, unsigned int aAttributeId, float aValue);
// Get a live filter parameter. Use 0 for the global filters.
float getFilterParameter(handle aVoiceHandle, unsigned int aFilterId, unsigned int aAttributeId);
// Fade a live filter parameter. Use 0 for the global filters.
void fadeFilterParameter(handle aVoiceHandle, unsigned int aFilterId, unsigned int aAttributeId, float aTo, time aTime);
// Oscillate a live filter parameter. Use 0 for the global filters.
void oscillateFilterParameter(handle aVoiceHandle, unsigned int aFilterId, unsigned int aAttributeId, float aFrom, float aTo, time aTime);
// Get current play time, in seconds.
time getStreamTime(handle aVoiceHandle);
// Get current sample position, in seconds.
time getStreamPosition(handle aVoiceHandle);
// Get current pause state.
bool getPause(handle aVoiceHandle);
// Get current volume.
float getVolume(handle aVoiceHandle);
// Get current overall volume (set volume * 3d volume)
float getOverallVolume(handle aVoiceHandle);
// Get current pan.
float getPan(handle aVoiceHandle);
// Get current sample rate.
float getSamplerate(handle aVoiceHandle);
// Get current voice protection state.
bool getProtectVoice(handle aVoiceHandle);
// Get the current number of busy voices.
unsigned int getActiveVoiceCount();
// Get the current number of voices in SoLoud
unsigned int getVoiceCount();
// Check if the handle is still valid, or if the sound has stopped.
bool isValidVoiceHandle(handle aVoiceHandle);
// Get current relative play speed.
float getRelativePlaySpeed(handle aVoiceHandle);
// Get current post-clip scaler value.
float getPostClipScaler() const;
// Get current global volume
float getGlobalVolume() const;
// Get current maximum active voice setting
unsigned int getMaxActiveVoiceCount() const;
// Query whether a voice is set to loop.
bool getLooping(handle aVoiceHandle);
// Get voice loop point value
time getLoopPoint(handle aVoiceHandle);
// Set voice loop point value
void setLoopPoint(handle aVoiceHandle, time aLoopPoint);
// Set voice's loop state
void setLooping(handle aVoiceHandle, bool aLooping);
// Set current maximum active voice setting
result setMaxActiveVoiceCount(unsigned int aVoiceCount);
// Set behavior for inaudible sounds
void setInaudibleBehavior(handle aVoiceHandle, bool aMustTick, bool aKill);
// Set the global volume
void setGlobalVolume(float aVolume);
// Set the post clip scaler value
void setPostClipScaler(float aScaler);
// Set the pause state
void setPause(handle aVoiceHandle, bool aPause);
// Pause all voices
void setPauseAll(bool aPause);
// Set the relative play speed
result setRelativePlaySpeed(handle aVoiceHandle, float aSpeed);
// Set the voice protection state
void setProtectVoice(handle aVoiceHandle, bool aProtect);
// Set the sample rate
void setSamplerate(handle aVoiceHandle, float aSamplerate);
// Set panning value; -1 is left, 0 is center, 1 is right
void setPan(handle aVoiceHandle, float aPan);
// Set absolute left/right volumes
void setPanAbsolute(handle aVoiceHandle, float aLVolume, float aRVolume, float aLBVolume = 0, float aRBVolume = 0, float aCVolume = 0, float aSVolume = 0);
// Set overall volume
void setVolume(handle aVoiceHandle, float aVolume);
// Set delay, in samples, before starting to play samples. Calling this on a live sound will cause glitches.
void setDelaySamples(handle aVoiceHandle, unsigned int aSamples);
// Set up volume fader
void fadeVolume(handle aVoiceHandle, float aTo, time aTime);
// Set up panning fader
void fadePan(handle aVoiceHandle, float aTo, time aTime);
// Set up relative play speed fader
void fadeRelativePlaySpeed(handle aVoiceHandle, float aTo, time aTime);
// Set up global volume fader
void fadeGlobalVolume(float aTo, time aTime);
// Schedule a stream to pause
void schedulePause(handle aVoiceHandle, time aTime);
// Schedule a stream to stop
void scheduleStop(handle aVoiceHandle, time aTime);
// Set up volume oscillator
void oscillateVolume(handle aVoiceHandle, float aFrom, float aTo, time aTime);
// Set up panning oscillator
void oscillatePan(handle aVoiceHandle, float aFrom, float aTo, time aTime);
// Set up relative play speed oscillator
void oscillateRelativePlaySpeed(handle aVoiceHandle, float aFrom, float aTo, time aTime);
// Set up global volume oscillator
void oscillateGlobalVolume(float aFrom, float aTo, time aTime);
// Set global filters. Set to NULL to clear the filter.
void setGlobalFilter(unsigned int aFilterId, Filter *aFilter);
// Enable or disable visualization data gathering
void setVisualizationEnable(bool aEnable);
// Calculate and get 256 floats of FFT data for visualization. Visualization has to be enabled before use.
float *calcFFT();
// Get 256 floats of wave data for visualization. Visualization has to be enabled before use.
float *getWave();
// Get approximate output volume for a channel for visualization. Visualization has to be enabled before use.
float getApproximateVolume(unsigned int aChannel);
// Get current loop count. Returns 0 if handle is not valid. (All audio sources may not update loop count)
unsigned int getLoopCount(handle aVoiceHandle);
// Get audiosource-specific information from a voice.
float getInfo(handle aVoiceHandle, unsigned int aInfoKey);
// Create a voice group. Returns 0 if unable (out of voice groups / out of memory)
handle createVoiceGroup();
// Destroy a voice group.
result destroyVoiceGroup(handle aVoiceGroupHandle);
// Add a voice handle to a voice group
result addVoiceToGroup(handle aVoiceGroupHandle, handle aVoiceHandle);
// Is this handle a valid voice group?
bool isVoiceGroup(handle aVoiceGroupHandle);
// Is this voice group empty?
bool isVoiceGroupEmpty(handle aVoiceGroupHandle);
// Perform 3d audio parameter update
void update3dAudio();
// Set the speed of sound constant for doppler
result set3dSoundSpeed(float aSpeed);
// Get the current speed of sound constant for doppler
float get3dSoundSpeed();
// Set 3d listener parameters
void set3dListenerParameters(float aPosX, float aPosY, float aPosZ, float aAtX, float aAtY, float aAtZ, float aUpX, float aUpY, float aUpZ, float aVelocityX = 0.0f, float aVelocityY = 0.0f, float aVelocityZ = 0.0f);
// Set 3d listener position
void set3dListenerPosition(float aPosX, float aPosY, float aPosZ);
// Set 3d listener "at" vector
void set3dListenerAt(float aAtX, float aAtY, float aAtZ);
// set 3d listener "up" vector
void set3dListenerUp(float aUpX, float aUpY, float aUpZ);
// Set 3d listener velocity
void set3dListenerVelocity(float aVelocityX, float aVelocityY, float aVelocityZ);
// Set 3d audio source parameters
void set3dSourceParameters(handle aVoiceHandle, float aPosX, float aPosY, float aPosZ, float aVelocityX = 0.0f, float aVelocityY = 0.0f, float aVelocityZ = 0.0f);
// Set 3d audio source position
void set3dSourcePosition(handle aVoiceHandle, float aPosX, float aPosY, float aPosZ);
// Set 3d audio source velocity
void set3dSourceVelocity(handle aVoiceHandle, float aVelocityX, float aVelocityY, float aVelocityZ);
// Set 3d audio source min/max distance (distance < min means max volume)
void set3dSourceMinMaxDistance(handle aVoiceHandle, float aMinDistance, float aMaxDistance);
// Set 3d audio source attenuation parameters
void set3dSourceAttenuation(handle aVoiceHandle, unsigned int aAttenuationModel, float aAttenuationRolloffFactor);
// Set 3d audio source doppler factor to reduce or enhance doppler effect. Default = 1.0
void set3dSourceDopplerFactor(handle aVoiceHandle, float aDopplerFactor);
// Rest of the stuff is used internally.
// Returns mixed float samples in buffer. Called by the back-end, or user with null driver.
void mix(float *aBuffer, unsigned int aSamples);
// Returns mixed 16-bit signed integer samples in buffer. Called by the back-end, or user with null driver.
void mixSigned16(short *aBuffer, unsigned int aSamples);
public:
// Mix N samples * M channels. Called by other mix_ functions.
void mix_internal(unsigned int aSamples);
// Handle rest of initialization (called from backend)
void postinit(unsigned int aSamplerate, unsigned int aBufferSize, unsigned int aFlags, unsigned int aChannels);
// Update list of active voices
void calcActiveVoices();
// Map resample buffers to active voices
void mapResampleBuffers();
// Perform mixing for a specific bus
void mixBus(float *aBuffer, unsigned int aSamplesToRead, unsigned int aBufferSize, float *aScratch, unsigned int aBus, float aSamplerate, unsigned int aChannels);
// Max. number of active voices. Busses and tickable inaudibles also count against this.
unsigned int mMaxActiveVoices;
// Highest voice in use so far
unsigned int mHighestVoice;
// Scratch buffer, used for resampling.
AlignedFloatBuffer mScratch;
// Current size of the scratch, in samples.
unsigned int mScratchSize;
// Amount of scratch needed.
unsigned int mScratchNeeded;
// Output scratch buffer, used in mix_().
AlignedFloatBuffer mOutputScratch;
// Resampler buffers, two per active voice.
AlignedFloatBuffer *mResampleData;
// Owners of the resample data
AudioSourceInstance **mResampleDataOwner;
// Audio voices.
AudioSourceInstance *mVoice[VOICE_COUNT];
// Output sample rate (not float)
unsigned int mSamplerate;
// Output channel count
unsigned int mChannels;
// Current backend ID
unsigned int mBackendID;
// Current backend string
const char * mBackendString;
// Maximum size of output buffer; used to calculate needed scratch.
unsigned int mBufferSize;
// Flags; see Soloud::FLAGS
unsigned int mFlags;
// Global volume. Applied before clipping.
float mGlobalVolume;
// Post-clip scaler. Applied after clipping.
float mPostClipScaler;
// Current play index. Used to create audio handles.
unsigned int mPlayIndex;
// Current sound source index. Used to create sound source IDs.
unsigned int mAudioSourceID;
// Fader for the global volume.
Fader mGlobalVolumeFader;
// Global stream time, for the global volume fader.
time mStreamTime;
// Last time seen by the playClocked call
time mLastClockedTime;
// Global filter
Filter *mFilter[FILTERS_PER_STREAM];
// Global filter instance
FilterInstance *mFilterInstance[FILTERS_PER_STREAM];
// Find a free voice, stopping the oldest if no free voice is found.
int findFreeVoice();
// Converts handle to voice, if the handle is valid. Returns -1 if not.
int getVoiceFromHandle(handle aVoiceHandle) const;
// Converts voice + playindex into handle
handle getHandleFromVoice(unsigned int aVoice) const;
// Stop voice (not handle).
void stopVoice(unsigned int aVoice);
// Set voice (not handle) pan.
void setVoicePan(unsigned int aVoice, float aPan);
// Set voice (not handle) relative play speed.
result setVoiceRelativePlaySpeed(unsigned int aVoice, float aSpeed);
// Set voice (not handle) volume.
void setVoiceVolume(unsigned int aVoice, float aVolume);
// Set voice (not handle) pause state.
void setVoicePause(unsigned int aVoice, int aPause);
// Update overall volume from set and 3d volumes
void updateVoiceVolume(unsigned int aVoice);
// Update overall relative play speed from set and 3d speeds
void updateVoiceRelativePlaySpeed(unsigned int aVoice);
// Perform 3d audio calculation for array of voices
void update3dVoices(unsigned int *aVoiceList, unsigned int aVoiceCount);
// Clip the samples in the buffer
void clip(AlignedFloatBuffer &aBuffer, AlignedFloatBuffer &aDestBuffer, unsigned int aSamples, float aVolume0, float aVolume1);
// Approximate volume for channels.
float mVisualizationChannelVolume[MAX_CHANNELS];
// Mono-mixed wave data for visualization and for visualization FFT input
float mVisualizationWaveData[256];
// FFT output data
float mFFTData[256];
// Snapshot of wave data for visualization
float mWaveData[256];
// 3d listener position
float m3dPosition[3];
// 3d listener look-at
float m3dAt[3];
// 3d listener up
float m3dUp[3];
// 3d listener velocity
float m3dVelocity[3];
// 3d speed of sound (for doppler)
float m3dSoundSpeed;
// 3d position of speakers
float m3dSpeakerPosition[3 * MAX_CHANNELS];
// Data related to 3d processing, separate from AudioSource so we can do 3d calculations without audio mutex.
AudioSourceInstance3dData m3dData[VOICE_COUNT];
// For each voice group, first int is number of ints alocated.
unsigned int **mVoiceGroup;
unsigned int mVoiceGroupCount;
// List of currently active voices
unsigned int mActiveVoice[VOICE_COUNT];
// Number of currently active voices
unsigned int mActiveVoiceCount;
// Active voices list needs to be recalculated
bool mActiveVoiceDirty;
// Remove all non-active voices from group
void trimVoiceGroup(handle aVoiceGroupHandle);
// Get pointer to the zero-terminated array of voice handles in a voice group
handle * voiceGroupHandleToArray(handle aVoiceGroupHandle) const;
// Lock audio thread mutex.
void lockAudioMutex();
// Unlock audio thread mutex.
void unlockAudioMutex();
};
};
#endif
| [
"[email protected]"
] | |
d1fb81746d803610f24ec7c199708ef4916a51c5 | 9d621e7ad2960608d475b44a1a6426c95e7e8955 | /SPOJ/AIBOHP-22882283-src.cpp | dbb82a22471d6df0930c114a213936827210a314 | [] | no_license | vijayphoenix/Competitive-programming | 0c80a69135205c12f18e29292da77f073993590b | 5332c6ac016a9dc1753a5e6737ef93f688b8a4f6 | refs/heads/master | 2020-04-22T17:52:12.882748 | 2019-02-13T18:16:25 | 2019-02-13T18:16:25 | 170,556,782 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 454 | cpp | #include<bits/stdc++.h>
using namespace std;
#include<bits/stdc++.h>
int main(){
int test;
cin>>test;
while(test--){
string s;
cin>>s;
int len=s.length();
int dp[len+1][len+1]={};
for (int i = 0; i <=len; ++i)
{
for (int j = 0; j <=len; ++j)
{
if(i==0||j==0)dp[i][j]=0;
else if(s[i-1]==s[len-j])dp[i][j]=1+dp[i-1][j-1];
else dp[i][j]=max(dp[i-1][j],dp[i][j-1]);
}
}
cout<<len-dp[len][len]<<"\n";
}
return 0;
} | [
"[email protected]"
] | |
b574b7f8841a99d6b97fb9ae92cf692f418bb631 | 66a76b9761fd730fbda64fac92e3fcffa37cfa8f | /src/TextBox.cpp | 2629208834817f9d31e94ebadd705ded69fde7a0 | [] | no_license | JaceRiehl/Council-Of-Jerrys | 699cb618bab89aa2a0fe6bd4149701a68274c078 | 1991b0de7130d642201a46ab94f2189b715f4824 | refs/heads/master | 2021-09-01T04:39:33.385827 | 2017-04-08T05:53:51 | 2017-04-08T05:53:51 | 115,288,568 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,344 | cpp | #include "TextBox.h"
#include <string>
#include <iostream>
using namespace std;
char ch = '*';
TextBox::TextBox(std::string body)
{
if(body == "")
deallocateMem();
else
this->assignText(body);
}
TextBox::~TextBox()
{
this->deallocateMem();
}
TextBox::TextBox(TextBox& tb)
{
this->copy(tb);
}
void TextBox::copy(const TextBox& c)
{
this->rows = c.rows;
textBody = new char*[rows];
for(int i = 0; i < rows; i++)
{
textBody[i] = new char[WIDTH];
for(int j = 0; j < WIDTH; j++)
this->textBody[i][j] = c.textBody[i][j];
}
}
void TextBox::operator=(const TextBox& t)
{
if(this != &t)
{
this->deallocateMem();
this->copy(t);
}
}
void TextBox::print(ostream& os) const
{
if(textBody)
{
fillChar(80, ch, os);
os<<'\n'<<ch;
fillChar(78, ' ', os);
os<<ch<<endl<<ch;
fillChar(78, ' ', os);
os<<ch<<endl;
for(int i = 0; i < rows; i++)
{
os<<ch;
fillChar(9, ' ', os);
for(int j = 0; j < WIDTH; j++)
os<<textBody[i][j];
fillChar(9, ' ', os);
os<<ch<<endl;
}
os<<ch;
fillChar(78, ' ', os);
os<<ch<<endl<<ch;
fillChar(78, ' ', os);
os<<ch<<endl;
fillChar(80, ch, os);
os<<endl;
}
}
void TextBox::fillChar(int howMany, char ch, ostream& os) const
{
for(int i = 0; i < howMany; i++)
os<<ch;
}
void TextBox::assignText(string body)
{
this->deallocateMem();
rows = static_cast<int>(body.size()/WIDTH);
if(((int)(body.size()) % WIDTH) != 0)
rows += 2;
textBody = new char*[rows];
int k = 0;
for(int i = 0; i < rows; i++)
{
textBody[i] = new char[WIDTH];
int j = 0;
while(j < WIDTH)
{
if(body[k] == ' ' && j == 0)
{
++k;
continue;
}
if(k < body.size())
{
int wordLength = 1;
int currentBodyIndex = k;
while(body[++currentBodyIndex] != ' ' && currentBodyIndex < body.size())
wordLength++;
if(wordLength >= WIDTH)
while(j < WIDTH)
textBody[i][j++] = body[k++];
else if(j+wordLength >= WIDTH)
while(j < WIDTH)
textBody[i][j++] = ' ';
else if(j+wordLength < WIDTH)
{
int currentPosition = j;
while(j < currentPosition + wordLength)
textBody[i][j++]= body[k++];
}
else
{
textBody[i][j++] = body[k++];
}
}
else
while(j < WIDTH)
textBody[i][j++] = ' ';
}
}
}
void TextBox::deallocateMem()
{
if(textBody != nullptr)
{
for(int i = 0; i < rows; i++)
delete [] textBody[i];
delete [] textBody;
textBody = nullptr;
}
}
bool TextBox::isEmpty() const
{
return (textBody == nullptr);
}
ostream& operator<<(ostream& os, const TextBox& x)
{
x.print(os);
return os;
}
| [
"[email protected]"
] | |
e36f7f3a8d2e1299869c1cc7a5a085e5d5c59797 | e1d6417b995823e507a1e53ff81504e4bc795c8f | /gbk/client/ClientLib/Tools/MrSmith/MrSmith/DlgParamEdit.cpp | 158be628c4fe02d535ebe74df94d0577e20b3d5c | [] | no_license | cjmxp/pap_full | f05d9e3f9390c2820a1e51d9ad4b38fe044e05a6 | 1963a8a7bda5156a772ccb3c3e35219a644a1566 | refs/heads/master | 2020-12-02T22:50:41.786682 | 2013-11-15T08:02:30 | 2013-11-15T08:02:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,580 | cpp | // DlgParamEdit.cpp : implementation file
//
#include "stdafx.h"
#include "MrSmith.h"
#include "DlgParamEdit.h"
#include ".\dlgparamedit.h"
// CDlgParamEdit dialog
IMPLEMENT_DYNAMIC(CDlgParamEdit, CDialog)
CDlgParamEdit::CDlgParamEdit(const char* szName, const char* szValue, CWnd* pParent /*=NULL*/)
: CDialog(CDlgParamEdit::IDD, pParent)
, m_strParamName(szName)
, m_strParamValue(szValue)
{
}
CDlgParamEdit::~CDlgParamEdit()
{
}
void CDlgParamEdit::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_EDIT_PARAM_NAME, m_editParamName);
DDX_Control(pDX, IDC_EDIT_PARAM_VALUE, m_editParamValue);
}
BEGIN_MESSAGE_MAP(CDlgParamEdit, CDialog)
ON_BN_CLICKED(IDOK, OnBnClickedOk)
END_MESSAGE_MAP()
// CDlgParamEdit message handlers
BOOL CDlgParamEdit::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
m_editParamName.SetWindowText(m_strParamName);
m_editParamValue.SetWindowText(m_strParamValue);
if(m_strParamName.IsEmpty())
{
m_editParamName.SetFocus();
}
else
{
m_editParamValue.SetSel(0, -1);
m_editParamValue.SetFocus();
}
return FALSE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CDlgParamEdit::OnOK()
{
// TODO: Add your specialized code here and/or call the base class
m_editParamName.GetWindowText(m_strParamName);
m_editParamValue.GetWindowText(m_strParamValue);
CDialog::OnOK();
}
void CDlgParamEdit::OnBnClickedOk()
{
// TODO: Add your control notification handler code here
OnOK();
}
| [
"[email protected]"
] | |
637ce6ee398c646c3d1e4988809678c3be51470f | 2fa764b33e15edd3b53175456f7df61a594f0bb5 | /appseed/base/base/os/macos/aaa_want_to_remove_macos_time.cpp | 2f710e411100948583de4fff1f0dc1dbaf13e3e3 | [] | no_license | PeterAlfonsLoch/app | 5f6ac8f92d7f468bc99e0811537380fcbd828f65 | 268d0c7083d9be366529e4049adedc71d90e516e | refs/heads/master | 2021-01-01T17:44:15.914503 | 2017-07-23T16:58:08 | 2017-07-23T16:58:08 | 98,142,329 | 1 | 0 | null | 2017-07-24T02:44:10 | 2017-07-24T02:44:10 | null | UTF-8 | C++ | false | false | 258 | cpp | #include "framework.h"
#include <sys/time.h>
inline DWORD GetTickCount()
{
timeval ts;
gettimeofday(&ts,0);
return (ts.tv_sec * 1000 + (ts.tv_usec / 1000)) % 0xffffffffu;
}
dword get_tick_count()
{
return (dword) GetTickCount();
}
| [
"[email protected]"
] | |
3b6c7f45de34f8875f264c9a64a3906f4b1cbfa3 | d5f05df8294f95af1365a7351bb3510900ee7e4e | /example.cpp | 0a17ab979a914697c4b3d1286825e2dceca1d7a7 | [
"MIT"
] | permissive | pdanford/SpecFile | bb763bde16b6d4a28d306a647665cfa391db294e | fa669fd67e17bbacd04f3b90b0060aef589f3fc7 | refs/heads/master | 2020-06-03T08:26:32.287438 | 2020-04-18T23:17:37 | 2020-04-18T23:17:37 | 28,101,423 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,496 | cpp |
#include "SpecFile.h"
#include <iostream>
int main(int argc, const char * argv[])
{
try
{
//Load config file.
TSpecFile configFile("example.cfg");
//Read in a tag who has a single value (or a tag that has multiple values but you only want the first).
int port_number_int;
std::string port_number_str;
configFile.GetParamValueStreamRefForTag("PORT") >> port_number_int; //Read in as int.
configFile.GetParamValueStreamRefForTag("PORT") >> port_number_str; //Read in as string.
std::cout << "int version: " << port_number_int << std::endl;
std::cout << "str version: " << port_number_str << std::endl;
//Read in a tag's multiple values - numbers mixed with strings.
int lowerBound;
int upperBound;
std::string units;
configFile.GetParamValueStreamRefForTag("planet_size_range") >> lowerBound >> upperBound >> units;
std::cout << lowerBound << " " << upperBound << " " << units << std::endl;
//Read in a tag with a variable length parameter list.
std::stringstream& numberStream = configFile.GetParamValueStreamRefForTag("list_of_numbers");
while(numberStream.good())
{
double number;
numberStream >> number;
std::cout << number << " ";
}
std::cout << std::endl;
//Read in a tag's value, increment it, save it back out.
int currentEventCount;
std::stringstream& currentValueSStream = configFile.GetParamValueStreamRefForTag("currentEventCount");
currentValueSStream >> currentEventCount;
currentValueSStream.clear();
currentValueSStream.str("");
currentValueSStream << ++currentEventCount;
configFile.Save(); //Save it back out to same file with comments intact.
configFile.Save("new_example1.cfg"); //Or save it to a new filename with comments.
configFile.Save("new_example2.cfg", false); //Or save it to a new filename without comments.
//Add a new tag twiceAsDeliciousNumber to memory copy of new_example2.cfg and write back out with
//a comment as new_example3.cfg.
configFile.AddEntry("twiceAsDeliciousNumber", "6.28318530", " //WOW!");
configFile.Save("new_example3.cfg");
}
catch (std::exception& e)
{
std::cout << e.what() << std::endl;
return 1;
}
return 0;
}
| [
"[email protected]"
] | |
68f2bb3a1dfb08fcfc28b517e41cbf93e1092b4f | 710ea99e5b8f88efb1460d6a7f3662f7bd635f33 | /src/chainparamsbase.cpp | 3e08456d1a06c5edaf6e3f89fad186c6e84d864c | [
"MIT"
] | permissive | Christmas-Coin/ChristmasCoin-Core | 262b4689b920d3e49eff1f73a0601f53e1d122f1 | 31b1582d8720d7d0d3c1b47a8083ad87d64e9693 | refs/heads/master | 2020-04-06T18:16:03.702946 | 2019-02-19T19:06:32 | 2019-02-19T19:06:32 | 157,691,676 | 1 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,779 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "chainparamsbase.h"
#include "util.h"
#include <assert.h>
#include <boost/assign/list_of.hpp>
using namespace boost::assign;
/**
* Main network
*/
class CBaseMainParams : public CBaseChainParams
{
public:
CBaseMainParams()
{
networkID = CBaseChainParams::MAIN;
nRPCPort = 23799;
}
};
static CBaseMainParams mainParams;
/**
* Testnet (v3)
*/
class CBaseTestNetParams : public CBaseMainParams
{
public:
CBaseTestNetParams()
{
networkID = CBaseChainParams::TESTNET;
nRPCPort = 38843;
strDataDir = "testnet4";
}
};
static CBaseTestNetParams testNetParams;
/*
* Regression test
*/
class CBaseRegTestParams : public CBaseTestNetParams
{
public:
CBaseRegTestParams()
{
networkID = CBaseChainParams::REGTEST;
strDataDir = "regtest";
}
};
static CBaseRegTestParams regTestParams;
/*
* Unit test
*/
class CBaseUnitTestParams : public CBaseMainParams
{
public:
CBaseUnitTestParams()
{
networkID = CBaseChainParams::UNITTEST;
strDataDir = "unittest";
}
};
static CBaseUnitTestParams unitTestParams;
static CBaseChainParams* pCurrentBaseParams = 0;
const CBaseChainParams& BaseParams()
{
assert(pCurrentBaseParams);
return *pCurrentBaseParams;
}
void SelectBaseParams(CBaseChainParams::Network network)
{
switch (network) {
case CBaseChainParams::MAIN:
pCurrentBaseParams = &mainParams;
break;
case CBaseChainParams::TESTNET:
pCurrentBaseParams = &testNetParams;
break;
case CBaseChainParams::REGTEST:
pCurrentBaseParams = ®TestParams;
break;
case CBaseChainParams::UNITTEST:
pCurrentBaseParams = &unitTestParams;
break;
default:
assert(false && "Unimplemented network");
return;
}
}
CBaseChainParams::Network NetworkIdFromCommandLine()
{
bool fRegTest = GetBoolArg("-regtest", false);
bool fTestNet = GetBoolArg("-testnet", false);
if (fTestNet && fRegTest)
return CBaseChainParams::MAX_NETWORK_TYPES;
if (fRegTest)
return CBaseChainParams::REGTEST;
if (fTestNet)
return CBaseChainParams::TESTNET;
return CBaseChainParams::MAIN;
}
bool SelectBaseParamsFromCommandLine()
{
CBaseChainParams::Network network = NetworkIdFromCommandLine();
if (network == CBaseChainParams::MAX_NETWORK_TYPES)
return false;
SelectBaseParams(network);
return true;
}
bool AreBaseParamsConfigured()
{
return pCurrentBaseParams != NULL;
}
| [
"[email protected]"
] | |
823d397543ae7d9dc1ed2f873338664b6501eb6d | 03565927bae4b336625dfefeb714898fcfccda79 | /spooler/Origins.cpp | a95518e76e87bad68a4da39df20160b2ec97c3c7 | [
"MIT"
] | permissive | stjordanis/spool | 8a0a2328f2b221003958cec44813489752845215 | 5ff994ce1f626ef52e4bd2422ca76e2424d32bca | refs/heads/master | 2020-05-30T09:06:36.799880 | 2019-05-30T06:09:28 | 2019-05-30T08:26:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,709 | cpp | #include "Origins.hpp"
#include "Database.hpp"
#include <cstring>
#include <stdexcept>
#include <thread>
static const char* query = "SELECT id, ref_count from origins WHERE path_id = ?;";
static const char* insert = "INSERT INTO origins (path_id, id, ref_count) VALUES (?, ?, ?);";
// Avoid redefinition of remove
static const char* remove_sql = "DELETE FROM origins WHERE path_id = ? AND id = ?;";
static const char* update = "UPDATE origins SET ref_count = ? WHERE path_id = ? AND id = ?;";
Origins::Origins(Database& db, int source_id)
: db_{db}
, source_id_{source_id}
{
// https://www.sqlite.org/c3ref/prepare.html
query_ = db.prepare(query);
insert_ = db.prepare(insert);
remove_ = db.prepare(remove_sql);
update_ = db.prepare(update);
}
void Origins::select()
{
query_.bind(1, source_id_);
while (auto result = query_.step<int, int>())
{
auto&& [id, ref_count] = *result;
ref_counts_[id] = ref_count;
}
query_.reset();
}
void Origins::commit_new(std::unordered_map<int, int>& counts)
{
for (auto iter = ref_counts_.begin(); iter != ref_counts_.end(); ++iter)
{
auto next = counts.find(iter->first);
if (next == counts.end())
{
// This string needs to be removed
remove_.bind(1, source_id_);
remove_.bind(2, iter->first);
remove_.step();
remove_.reset();
}
else if (iter->second != next->second)
{
// The ref count needs to be updated
update_.bind(1, next->second);
update_.bind(2, source_id_);
update_.bind(3, next->first);
update_.step();
update_.reset();
counts.erase(next);
}
else
{
// Count is unchanged
counts.erase(next);
}
}
// Remaining elements of counts now all need to be newly added
for (auto&& [id, count] : counts)
{
insert_.bind(1, source_id_);
insert_.bind(2, id);
insert_.bind(3, count);
insert_.step();
insert_.reset();
}
}
int Origins::file_id()
{
// Query for an existing file id, or create a new one otherwise
Statement insert_file = db_.prepare("INSERT INTO sources (path) VALUES (?);");
// If the file exists already, a new one won't be created due to the unique constraint
insert_file.bind(1, source_id_);
insert_file.step();
insert_file.reset();
Statement select_file = db_.prepare("SELECT ROWID FROM sources WHERE path = ?;");
select_file.bind(1, source_id_);
auto&& [result] = *select_file.step<int>();
select_file.reset();
return result;
}
| [
"[email protected]"
] | |
d395644014fd61cbccf44f432be8cf845f9f1b03 | f9ab0508de95c99ced2905b5f95173b7b52853d9 | /arduino_sketches/test_sketches/test_record_button/test_record_button.ino | 5c3b2ce5d637c3ad4b23dc84e25b9a1647e98240 | [] | no_license | id-studiolab/MLTK01 | 1ea16f2b125447302014d315e9c85bee9cc101a4 | 2672d1ab051c1b68825374b7a7ebe681a9456720 | refs/heads/master | 2023-06-13T05:00:31.488994 | 2023-06-12T20:36:00 | 2023-06-12T20:36:00 | 242,084,394 | 3 | 1 | null | 2023-05-26T10:16:11 | 2020-02-21T07:56:15 | HTML | UTF-8 | C++ | false | false | 684 | ino | #include <Bounce2.h>
const byte REC_BTN_PIN = 3;
Bounce REC_BTN_debounder = Bounce();
bool isRecBtnPressed = 0;
void setup() {
Serial.begin(9600);
init_record_button();
}
// the loop routine runs over and over again forever:
void loop() {
read_record_Button();
}
void read_record_Button() {
REC_BTN_debounder.update();
if ( REC_BTN_debounder.rose() ) {
isRecBtnPressed = true;
Serial.println("start recording");
} else if ( REC_BTN_debounder.fell() ) {
isRecBtnPressed = false;
Serial.println("stop recording");
}
}
void init_record_button() {
pinMode(REC_BTN_PIN, INPUT);
REC_BTN_debounder.attach(REC_BTN_PIN);
REC_BTN_debounder.interval(5);
}
| [
"[email protected]"
] | |
8b4150cc81b63a9aa9d104f74a6a7dc5cb4f6e2a | f2ab276449e4e08bd86b89d936b293eb358bd2eb | /src/qt/paymentserver.cpp | 99ad77e292abfdab98371507d816c79331d93da4 | [
"MIT"
] | permissive | dukkankuver/ohmcoin | 6002cac5d3bdc4c1ee33ce9f5f39627a6cdf0efc | c1e800636ecabc035e8c22f260da01e63846a95f | refs/heads/master | 2020-03-18T16:50:42.046956 | 2018-05-21T19:35:09 | 2018-05-21T19:35:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,959 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The OHMC developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "paymentserver.h"
#include "bitcoinunits.h"
#include "guiutil.h"
#include "optionsmodel.h"
#include "base58.h"
#include "chainparams.h"
#include "ui_interface.h"
#include "util.h"
#include "wallet.h"
#include <cstdlib>
#include <openssl/x509.h>
#include <openssl/x509_vfy.h>
#include <QApplication>
#include <QByteArray>
#include <QDataStream>
#include <QDateTime>
#include <QDebug>
#include <QFile>
#include <QFileOpenEvent>
#include <QHash>
#include <QList>
#include <QLocalServer>
#include <QLocalSocket>
#include <QNetworkAccessManager>
#include <QNetworkProxy>
#include <QNetworkReply>
#include <QNetworkRequest>
#include <QSslCertificate>
#include <QSslError>
#include <QSslSocket>
#include <QStringList>
#include <QTextDocument>
#if QT_VERSION < 0x050000
#include <QUrl>
#else
#include <QUrlQuery>
#endif
using namespace boost;
using namespace std;
const int BITCOIN_IPC_CONNECT_TIMEOUT = 1000; // milliseconds
const QString BITCOIN_IPC_PREFIX("ohmc:");
// BIP70 payment protocol messages
const char* BIP70_MESSAGE_PAYMENTACK = "PaymentACK";
const char* BIP70_MESSAGE_PAYMENTREQUEST = "PaymentRequest";
// BIP71 payment protocol media types
const char* BIP71_MIMETYPE_PAYMENT = "application/ohmc-payment";
const char* BIP71_MIMETYPE_PAYMENTACK = "application/ohmc-paymentack";
const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/ohmc-paymentrequest";
// BIP70 max payment request size in bytes (DoS protection)
const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE = 50000;
struct X509StoreDeleter {
void operator()(X509_STORE* b) {
X509_STORE_free(b);
}
};
struct X509Deleter {
void operator()(X509* b) { X509_free(b); }
};
namespace // Anon namespace
{
std::unique_ptr<X509_STORE, X509StoreDeleter> certStore;
}
//
// Create a name that is unique for:
// testnet / non-testnet
// data directory
//
static QString ipcServerName()
{
QString name("OHMCQt");
// Append a simple hash of the datadir
// Note that GetDataDir(true) returns a different path
// for -testnet versus main net
QString ddir(QString::fromStdString(GetDataDir(true).string()));
name.append(QString::number(qHash(ddir)));
return name;
}
//
// We store payment URIs and requests received before
// the main GUI window is up and ready to ask the user
// to send payment.
static QList<QString> savedPaymentRequests;
static void ReportInvalidCertificate(const QSslCertificate& cert)
{
qDebug() << "ReportInvalidCertificate : Payment server found an invalid certificate: " << cert.subjectInfo(QSslCertificate::CommonName);
}
//
// Load OpenSSL's list of root certificate authorities
//
void PaymentServer::LoadRootCAs(X509_STORE* _store)
{
// Unit tests mostly use this, to pass in fake root CAs:
if (_store) {
certStore.reset(_store);
return;
}
// Normal execution, use either -rootcertificates or system certs:
certStore.reset(X509_STORE_new());
// Note: use "-system-" default here so that users can pass -rootcertificates=""
// and get 'I don't like X.509 certificates, don't trust anybody' behavior:
QString certFile = QString::fromStdString(GetArg("-rootcertificates", "-system-"));
if (certFile.isEmpty())
return; // Empty store
QList<QSslCertificate> certList;
if (certFile != "-system-") {
certList = QSslCertificate::fromPath(certFile);
// Use those certificates when fetching payment requests, too:
QSslSocket::setDefaultCaCertificates(certList);
} else
certList = QSslSocket::systemCaCertificates();
int nRootCerts = 0;
const QDateTime currentTime = QDateTime::currentDateTime();
foreach (const QSslCertificate& cert, certList) {
if (currentTime < cert.effectiveDate() || currentTime > cert.expiryDate()) {
ReportInvalidCertificate(cert);
continue;
}
#if QT_VERSION >= 0x050000
if (cert.isBlacklisted()) {
ReportInvalidCertificate(cert);
continue;
}
#endif
QByteArray certData = cert.toDer();
const unsigned char* data = (const unsigned char*)certData.data();
std::unique_ptr<X509, X509Deleter> x509(d2i_X509(0, &data, certData.size()));
if (x509 && X509_STORE_add_cert(certStore.get(), x509.get())) {
// Note: X509_STORE increases the reference count to the X509 object,
// we still have to release our reference to it.
++nRootCerts;
} else {
ReportInvalidCertificate(cert);
continue;
}
}
qWarning() << "PaymentServer::LoadRootCAs : Loaded " << nRootCerts << " root certificates";
// Project for another day:
// Fetch certificate revocation lists, and add them to certStore.
// Issues to consider:
// performance (start a thread to fetch in background?)
// privacy (fetch through tor/proxy so IP address isn't revealed)
// would it be easier to just use a compiled-in blacklist?
// or use Qt's blacklist?
// "certificate stapling" with server-side caching is more efficient
}
//
// Sending to the server is done synchronously, at startup.
// If the server isn't already running, startup continues,
// and the items in savedPaymentRequest will be handled
// when uiReady() is called.
//
// Warning: ipcSendCommandLine() is called early in init,
// so don't use "emit message()", but "QMessageBox::"!
//
void PaymentServer::ipcParseCommandLine(int argc, char* argv[])
{
for (int i = 1; i < argc; i++) {
QString arg(argv[i]);
if (arg.startsWith("-"))
continue;
// If the ohmc: URI contains a payment request, we are not able to detect the
// network as that would require fetching and parsing the payment request.
// That means clicking such an URI which contains a testnet payment request
// will start a mainnet instance and throw a "wrong network" error.
if (arg.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // ohmc: URI
{
savedPaymentRequests.append(arg);
SendCoinsRecipient r;
if (GUIUtil::parseBitcoinURI(arg, &r) && !r.address.isEmpty()) {
CBitcoinAddress address(r.address.toStdString());
if (address.IsValid(Params(CBaseChainParams::MAIN))) {
SelectParams(CBaseChainParams::MAIN);
} else if (address.IsValid(Params(CBaseChainParams::TESTNET))) {
SelectParams(CBaseChainParams::TESTNET);
}
}
} else if (QFile::exists(arg)) // Filename
{
savedPaymentRequests.append(arg);
PaymentRequestPlus request;
if (readPaymentRequestFromFile(arg, request)) {
if (request.getDetails().network() == "main") {
SelectParams(CBaseChainParams::MAIN);
} else if (request.getDetails().network() == "test") {
SelectParams(CBaseChainParams::TESTNET);
}
}
} else {
// Printing to debug.log is about the best we can do here, the
// GUI hasn't started yet so we can't pop up a message box.
qWarning() << "PaymentServer::ipcSendCommandLine : Payment request file does not exist: " << arg;
}
}
}
//
// Sending to the server is done synchronously, at startup.
// If the server isn't already running, startup continues,
// and the items in savedPaymentRequest will be handled
// when uiReady() is called.
//
bool PaymentServer::ipcSendCommandLine()
{
bool fResult = false;
foreach (const QString& r, savedPaymentRequests) {
QLocalSocket* socket = new QLocalSocket();
socket->connectToServer(ipcServerName(), QIODevice::WriteOnly);
if (!socket->waitForConnected(BITCOIN_IPC_CONNECT_TIMEOUT)) {
delete socket;
socket = NULL;
return false;
}
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
out.setVersion(QDataStream::Qt_4_0);
out << r;
out.device()->seek(0);
socket->write(block);
socket->flush();
socket->waitForBytesWritten(BITCOIN_IPC_CONNECT_TIMEOUT);
socket->disconnectFromServer();
delete socket;
socket = NULL;
fResult = true;
}
return fResult;
}
PaymentServer::PaymentServer(QObject* parent, bool startLocalServer) : QObject(parent),
saveURIs(true),
uriServer(0),
netManager(0),
optionsModel(0)
{
// Verify that the version of the library that we linked against is
// compatible with the version of the headers we compiled against.
GOOGLE_PROTOBUF_VERIFY_VERSION;
// Install global event filter to catch QFileOpenEvents
// on Mac: sent when you click ohmc: links
// other OSes: helpful when dealing with payment request files (in the future)
if (parent)
parent->installEventFilter(this);
QString name = ipcServerName();
// Clean up old socket leftover from a crash:
QLocalServer::removeServer(name);
if (startLocalServer) {
uriServer = new QLocalServer(this);
if (!uriServer->listen(name)) {
// constructor is called early in init, so don't use "emit message()" here
QMessageBox::critical(0, tr("Payment request error"),
tr("Cannot start ohmc: click-to-pay handler"));
} else {
connect(uriServer, SIGNAL(newConnection()), this, SLOT(handleURIConnection()));
connect(this, SIGNAL(receivedPaymentACK(QString)), this, SLOT(handlePaymentACK(QString)));
}
}
}
PaymentServer::~PaymentServer()
{
google::protobuf::ShutdownProtobufLibrary();
}
//
// OSX-specific way of handling ohmc: URIs and
// PaymentRequest mime types
//
bool PaymentServer::eventFilter(QObject* object, QEvent* event)
{
// clicking on ohmc: URIs creates FileOpen events on the Mac
if (event->type() == QEvent::FileOpen) {
QFileOpenEvent* fileEvent = static_cast<QFileOpenEvent*>(event);
if (!fileEvent->file().isEmpty())
handleURIOrFile(fileEvent->file());
else if (!fileEvent->url().isEmpty())
handleURIOrFile(fileEvent->url().toString());
return true;
}
return QObject::eventFilter(object, event);
}
void PaymentServer::initNetManager()
{
if (!optionsModel)
return;
if (netManager != NULL)
delete netManager;
// netManager is used to fetch paymentrequests given in ohmc: URIs
netManager = new QNetworkAccessManager(this);
QNetworkProxy proxy;
// Query active SOCKS5 proxy
if (optionsModel->getProxySettings(proxy)) {
netManager->setProxy(proxy);
qDebug() << "PaymentServer::initNetManager : Using SOCKS5 proxy" << proxy.hostName() << ":" << proxy.port();
} else
qDebug() << "PaymentServer::initNetManager : No active proxy server found.";
connect(netManager, SIGNAL(finished(QNetworkReply*)),
this, SLOT(netRequestFinished(QNetworkReply*)));
connect(netManager, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError>&)),
this, SLOT(reportSslErrors(QNetworkReply*, const QList<QSslError>&)));
}
void PaymentServer::uiReady()
{
initNetManager();
saveURIs = false;
foreach (const QString& s, savedPaymentRequests) {
handleURIOrFile(s);
}
savedPaymentRequests.clear();
}
void PaymentServer::handleURIOrFile(const QString& s)
{
if (saveURIs) {
savedPaymentRequests.append(s);
return;
}
if (s.startsWith(BITCOIN_IPC_PREFIX, Qt::CaseInsensitive)) // ohmc: URI
{
#if QT_VERSION < 0x050000
QUrl uri(s);
#else
QUrlQuery uri((QUrl(s)));
#endif
if (uri.hasQueryItem("r")) // payment request URI
{
QByteArray temp;
temp.append(uri.queryItemValue("r"));
QString decoded = QUrl::fromPercentEncoding(temp);
QUrl fetchUrl(decoded, QUrl::StrictMode);
if (fetchUrl.isValid()) {
qDebug() << "PaymentServer::handleURIOrFile : fetchRequest(" << fetchUrl << ")";
fetchRequest(fetchUrl);
} else {
qWarning() << "PaymentServer::handleURIOrFile : Invalid URL: " << fetchUrl;
emit message(tr("URI handling"),
tr("Payment request fetch URL is invalid: %1").arg(fetchUrl.toString()),
CClientUIInterface::ICON_WARNING);
}
return;
} else // normal URI
{
SendCoinsRecipient recipient;
if (GUIUtil::parseBitcoinURI(s, &recipient)) {
CBitcoinAddress address(recipient.address.toStdString());
if (!address.IsValid()) {
emit message(tr("URI handling"), tr("Invalid payment address %1").arg(recipient.address),
CClientUIInterface::MSG_ERROR);
} else
emit receivedPaymentRequest(recipient);
} else
emit message(tr("URI handling"),
tr("URI cannot be parsed! This can be caused by an invalid OHMC address or malformed URI parameters."),
CClientUIInterface::ICON_WARNING);
return;
}
}
if (QFile::exists(s)) // payment request file
{
PaymentRequestPlus request;
SendCoinsRecipient recipient;
if (!readPaymentRequestFromFile(s, request)) {
emit message(tr("Payment request file handling"),
tr("Payment request file cannot be read! This can be caused by an invalid payment request file."),
CClientUIInterface::ICON_WARNING);
} else if (processPaymentRequest(request, recipient))
emit receivedPaymentRequest(recipient);
return;
}
}
void PaymentServer::handleURIConnection()
{
QLocalSocket* clientConnection = uriServer->nextPendingConnection();
while (clientConnection->bytesAvailable() < (int)sizeof(quint32))
clientConnection->waitForReadyRead();
connect(clientConnection, SIGNAL(disconnected()),
clientConnection, SLOT(deleteLater()));
QDataStream in(clientConnection);
in.setVersion(QDataStream::Qt_4_0);
if (clientConnection->bytesAvailable() < (int)sizeof(quint16)) {
return;
}
QString msg;
in >> msg;
handleURIOrFile(msg);
}
//
// Warning: readPaymentRequestFromFile() is used in ipcSendCommandLine()
// so don't use "emit message()", but "QMessageBox::"!
//
bool PaymentServer::readPaymentRequestFromFile(const QString& filename, PaymentRequestPlus& request)
{
QFile f(filename);
if (!f.open(QIODevice::ReadOnly)) {
qWarning() << QString("PaymentServer::%1: Failed to open %2").arg(__func__).arg(filename);
return false;
}
// BIP70 DoS protection
if (f.size() > BIP70_MAX_PAYMENTREQUEST_SIZE) {
qWarning() << QString("PaymentServer::%1: Payment request %2 is too large (%3 bytes, allowed %4 bytes).")
.arg(__func__)
.arg(filename)
.arg(f.size())
.arg(BIP70_MAX_PAYMENTREQUEST_SIZE);
return false;
}
QByteArray data = f.readAll();
return request.parse(data);
}
bool PaymentServer::processPaymentRequest(PaymentRequestPlus& request, SendCoinsRecipient& recipient)
{
if (!optionsModel)
return false;
if (request.IsInitialized()) {
const payments::PaymentDetails& details = request.getDetails();
// Payment request network matches client network?
if (details.network() != Params().NetworkIDString()) {
emit message(tr("Payment request rejected"), tr("Payment request network doesn't match client network."),
CClientUIInterface::MSG_ERROR);
return false;
}
// Expired payment request?
if (details.has_expires() && (int64_t)details.expires() < GetTime()) {
emit message(tr("Payment request rejected"), tr("Payment request has expired."),
CClientUIInterface::MSG_ERROR);
return false;
}
} else {
emit message(tr("Payment request error"), tr("Payment request is not initialized."),
CClientUIInterface::MSG_ERROR);
return false;
}
recipient.paymentRequest = request;
recipient.message = GUIUtil::HtmlEscape(request.getDetails().memo());
request.getMerchant(certStore.get(), recipient.authenticatedMerchant);
QList<std::pair<CScript, CAmount> > sendingTos = request.getPayTo();
QStringList addresses;
foreach (const PAIRTYPE(CScript, CAmount) & sendingTo, sendingTos) {
// Extract and check destination addresses
CTxDestination dest;
if (ExtractDestination(sendingTo.first, dest)) {
// Append destination address
addresses.append(QString::fromStdString(CBitcoinAddress(dest).ToString()));
} else if (!recipient.authenticatedMerchant.isEmpty()) {
// Insecure payments to custom ohmc addresses are not supported
// (there is no good way to tell the user where they are paying in a way
// they'd have a chance of understanding).
emit message(tr("Payment request rejected"),
tr("Unverified payment requests to custom payment scripts are unsupported."),
CClientUIInterface::MSG_ERROR);
return false;
}
// Extract and check amounts
CTxOut txOut(sendingTo.second, sendingTo.first);
if (txOut.IsDust(::minRelayTxFee)) {
emit message(tr("Payment request error"), tr("Requested payment amount of %1 is too small (considered dust).").arg(BitcoinUnits::formatWithUnit(optionsModel->getDisplayUnit(), sendingTo.second)),
CClientUIInterface::MSG_ERROR);
return false;
}
recipient.amount += sendingTo.second;
}
// Store addresses and format them to fit nicely into the GUI
recipient.address = addresses.join("<br />");
if (!recipient.authenticatedMerchant.isEmpty()) {
qDebug() << "PaymentServer::processPaymentRequest : Secure payment request from " << recipient.authenticatedMerchant;
} else {
qDebug() << "PaymentServer::processPaymentRequest : Insecure payment request to " << addresses.join(", ");
}
return true;
}
void PaymentServer::fetchRequest(const QUrl& url)
{
QNetworkRequest netRequest;
netRequest.setAttribute(QNetworkRequest::User, BIP70_MESSAGE_PAYMENTREQUEST);
netRequest.setUrl(url);
netRequest.setRawHeader("User-Agent", CLIENT_NAME.c_str());
netRequest.setRawHeader("Accept", BIP71_MIMETYPE_PAYMENTREQUEST);
netManager->get(netRequest);
}
void PaymentServer::fetchPaymentACK(CWallet* wallet, SendCoinsRecipient recipient, QByteArray transaction)
{
const payments::PaymentDetails& details = recipient.paymentRequest.getDetails();
if (!details.has_payment_url())
return;
QNetworkRequest netRequest;
netRequest.setAttribute(QNetworkRequest::User, BIP70_MESSAGE_PAYMENTACK);
netRequest.setUrl(QString::fromStdString(details.payment_url()));
netRequest.setHeader(QNetworkRequest::ContentTypeHeader, BIP71_MIMETYPE_PAYMENT);
netRequest.setRawHeader("User-Agent", CLIENT_NAME.c_str());
netRequest.setRawHeader("Accept", BIP71_MIMETYPE_PAYMENTACK);
payments::Payment payment;
payment.set_merchant_data(details.merchant_data());
payment.add_transactions(transaction.data(), transaction.size());
// Create a new refund address, or re-use:
QString account = tr("Refund from %1").arg(recipient.authenticatedMerchant);
std::string strAccount = account.toStdString();
set<CTxDestination> refundAddresses = wallet->GetAccountAddresses(strAccount);
if (!refundAddresses.empty()) {
CScript s = GetScriptForDestination(*refundAddresses.begin());
payments::Output* refund_to = payment.add_refund_to();
refund_to->set_script(&s[0], s.size());
} else {
CPubKey newKey;
if (wallet->GetKeyFromPool(newKey)) {
CKeyID keyID = newKey.GetID();
wallet->SetAddressBook(keyID, strAccount, "refund");
CScript s = GetScriptForDestination(keyID);
payments::Output* refund_to = payment.add_refund_to();
refund_to->set_script(&s[0], s.size());
} else {
// This should never happen, because sending coins should have
// just unlocked the wallet and refilled the keypool.
qWarning() << "PaymentServer::fetchPaymentACK : Error getting refund key, refund_to not set";
}
}
int length = payment.ByteSize();
netRequest.setHeader(QNetworkRequest::ContentLengthHeader, length);
QByteArray serData(length, '\0');
if (payment.SerializeToArray(serData.data(), length)) {
netManager->post(netRequest, serData);
} else {
// This should never happen, either.
qWarning() << "PaymentServer::fetchPaymentACK : Error serializing payment message";
}
}
void PaymentServer::netRequestFinished(QNetworkReply* reply)
{
reply->deleteLater();
// BIP70 DoS protection
if (reply->size() > BIP70_MAX_PAYMENTREQUEST_SIZE) {
QString msg = tr("Payment request %1 is too large (%2 bytes, allowed %3 bytes).")
.arg(reply->request().url().toString())
.arg(reply->size())
.arg(BIP70_MAX_PAYMENTREQUEST_SIZE);
qWarning() << QString("PaymentServer::%1:").arg(__func__) << msg;
emit message(tr("Payment request DoS protection"), msg, CClientUIInterface::MSG_ERROR);
return;
}
if (reply->error() != QNetworkReply::NoError) {
QString msg = tr("Error communicating with %1: %2")
.arg(reply->request().url().toString())
.arg(reply->errorString());
qWarning() << "PaymentServer::netRequestFinished: " << msg;
emit message(tr("Payment request error"), msg, CClientUIInterface::MSG_ERROR);
return;
}
QByteArray data = reply->readAll();
QString requestType = reply->request().attribute(QNetworkRequest::User).toString();
if (requestType == BIP70_MESSAGE_PAYMENTREQUEST) {
PaymentRequestPlus request;
SendCoinsRecipient recipient;
if (!request.parse(data)) {
qWarning() << "PaymentServer::netRequestFinished : Error parsing payment request";
emit message(tr("Payment request error"),
tr("Payment request cannot be parsed!"),
CClientUIInterface::MSG_ERROR);
} else if (processPaymentRequest(request, recipient))
emit receivedPaymentRequest(recipient);
return;
} else if (requestType == BIP70_MESSAGE_PAYMENTACK) {
payments::PaymentACK paymentACK;
if (!paymentACK.ParseFromArray(data.data(), data.size())) {
QString msg = tr("Bad response from server %1")
.arg(reply->request().url().toString());
qWarning() << "PaymentServer::netRequestFinished : " << msg;
emit message(tr("Payment request error"), msg, CClientUIInterface::MSG_ERROR);
} else {
emit receivedPaymentACK(GUIUtil::HtmlEscape(paymentACK.memo()));
}
}
}
void PaymentServer::reportSslErrors(QNetworkReply* reply, const QList<QSslError>& errs)
{
Q_UNUSED(reply);
QString errString;
foreach (const QSslError& err, errs) {
qWarning() << "PaymentServer::reportSslErrors : " << err;
errString += err.errorString() + "\n";
}
emit message(tr("Network request error"), errString, CClientUIInterface::MSG_ERROR);
}
void PaymentServer::setOptionsModel(OptionsModel* optionsModel)
{
this->optionsModel = optionsModel;
}
void PaymentServer::handlePaymentACK(const QString& paymentACKMsg)
{
// currently we don't futher process or store the paymentACK message
emit message(tr("Payment acknowledged"), paymentACKMsg, CClientUIInterface::ICON_INFORMATION | CClientUIInterface::MODAL);
}
X509_STORE* PaymentServer::getCertStore()
{
return certStore.get();
}
| [
"[email protected]"
] | |
c7a4c8256ba672b333d296f6696bf3402b335d36 | 891b40e5adb05f77b47d8d6c8b5518049e3c52d0 | /src/components/Settings/ValueBox.cpp | ed422e8959a817659dea6c4c6ce73a3396a28b62 | [] | no_license | olexta/Toolkit | 7701d4fbb7ea98af23e7eaf710c694be023d6eb2 | a09e9ee548ad98ab2d10267910c726989c68a989 | refs/heads/master | 2021-01-10T05:54:46.045184 | 2015-09-22T15:14:46 | 2015-09-22T15:14:46 | 49,786,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,022 | cpp | /****************************************************************************/
/* */
/* Project: Toolkit Settings */
/* */
/* Module: ValueBox.cpp */
/* */
/* Content: Implementation of Node::ValueBox class */
/* */
/* Author: Alexey Tkachuk */
/* Copyright: Copyright © 2008-2009 Alexey Tkachuk */
/* All Rights Reserved */
/* */
/****************************************************************************/
#include "ValueBox.h"
using namespace _SETTINGS;
//
// Define double safe cast operation
//
#define SCAST_(to, from, value) \
safe_cast<to>( safe_cast<from>( value ) )
//
// Define macro for implicit cast operator from specified type to ValueBox.
//
#define OP_IMP_FROM_(type) \
Node::ValueBox::operator Node::ValueBox( type v ) \
{ \
return ValueBox( v ); \
}
//
// Define macro for explicit cast operator from ValueBox to specified
// native type.
//
#define OP_EXP_TO_(type) \
Node::ValueBox::operator type( ValueBox box ) \
{ \
Type ^r = (box.m_value != nullptr ? box.m_value->GetType() : nullptr); \
Type ^t = type::typeid; \
\
if( r == t ) return safe_cast<type>( box.m_value ); \
\
throw gcnew InvalidCastException(String::Format( \
ERR_CAST_FROM_TO, (r != nullptr ? r->ToString() : "null"), \
(t != nullptr ? t->ToString() : "null") )); \
}
//
// Define macro for explicit cast operator from ValueBox (being in 'from'
// type) to specified 'to' type.
//
#define OP_EXP_(to, from) \
Node::ValueBox::operator to( ValueBox box ) \
{ \
Type ^r = (box.m_value != nullptr ? box.m_value->GetType() : nullptr); \
Type ^f = from::typeid; \
Type ^t = to::typeid; \
\
if( r == f ) return SCAST_(to, from, box.m_value ); \
\
throw gcnew InvalidCastException(String::Format( \
ERR_CAST_FROM_TO, (r != nullptr ? r->ToString() : "null"), \
(t != nullptr ? t->ToString() : "null") )); \
}
//----------------------------------------------------------------------------
// Toolkit::Settings::Node::ValueBox
//----------------------------------------------------------------------------
//-------------------------------------------------------------------
/// <summary>
/// Creates new instance of the ValueBox class containing specified
/// object as internal data.
/// </summary><remarks>
/// Now following types are supported as native: bool, int, double,
/// DateTime and String. And char, unsigned char, short, unsigned
/// short, unsigned int, float are convertible to native.
/// </remarks>
//-------------------------------------------------------------------
Node::ValueBox::ValueBox( Object ^value ): \
m_value(nullptr)
{
// m_value was already initialized with null reference
if( value == nullptr ) return;
// get type of value
Type ^type = value->GetType();
// check this type through all supported types (native
// types checks first, so it minimize processing of
// cast operators, because of they convert values to
// such types, then process all convertible)
if( type == bool::typeid ) {
// native bool
m_value = safe_cast<bool>( value );
} else if( type == int::typeid ) {
// native int
m_value = safe_cast<int>( value );
} else if( type == double::typeid ) {
// native double
m_value = safe_cast<double>( value );
} else if( type == DateTime::typeid ) {
// native DateTime
m_value = safe_cast<DateTime>( value );
} else if( type == String::typeid ) {
// native String
m_value = safe_cast<String^>( value );
} else if( type == char::typeid ) {
// convertible to int
m_value = SCAST_(int, char, value);
} else if( type == unsigned char::typeid ) {
// convertible to int
m_value = SCAST_(int, unsigned char, value);
} else if( type == short::typeid ) {
// convertible to int
m_value = SCAST_(int, short, value);
} else if( type == unsigned short::typeid ) {
// convertible to int
m_value = SCAST_(int, unsigned short, value);
} else if( type == unsigned int::typeid) {
// convertible to int
m_value = SCAST_(int, unsigned int, value);
} else if( type == float::typeid ) {
// convertible to double
m_value = SCAST_(double, float, value );
} else {
//unsupported type: throw exception
throw gcnew ArgumentException(String::Format(
ERR_INVALID_TYPE, type->ToString() ));
}
}
//-------------------------------------------------------------------
/// <summary>
/// Implicit cast operator from bool value to ValueBox.
/// </summary>
//-------------------------------------------------------------------
OP_IMP_FROM_(bool)
//-------------------------------------------------------------------
/// <summary>
/// Implicit cast operator from int value to ValueBox.
/// </summary>
//-------------------------------------------------------------------
OP_IMP_FROM_(int)
//-------------------------------------------------------------------
/// <summary>
/// Implicit cast operator from double value to ValueBox.
/// </summary>
//-------------------------------------------------------------------
OP_IMP_FROM_(double)
//-------------------------------------------------------------------
/// <summary>
/// Implicit cast operator from DateTime value to ValueBox.
/// </summary>
//-------------------------------------------------------------------
OP_IMP_FROM_(DateTime)
//-------------------------------------------------------------------
/// <summary>
/// Implicit cast operator from String value to ValueBox.
/// </summary>
//-------------------------------------------------------------------
OP_IMP_FROM_(String^)
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to bool value (native).
/// </summary><remarks>
/// If internal data is not bool value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_TO_(bool)
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to int value (native).
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_TO_(int)
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to double value (native).
/// </summary><remarks>
/// If internal data is not double value then InvalidCastException
/// will be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_TO_(double)
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to DateTime value (native).
/// </summary><remarks>
/// If internal data is not DateTime value then InvalidCastException
/// will be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_TO_(DateTime)
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to String value (native).
/// </summary><remarks>
/// This cast operator differs from other: it doesn't requires
/// internal data to be in valid type. Since this is settings, so any
/// setting can be converted to string value. This function is
/// similar to ToString() method.
/// </remarks>
//-------------------------------------------------------------------
Node::ValueBox::operator String^( ValueBox box )
{
return box.ToString();
}
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to char value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(char, int)
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to unsigned char value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(unsigned char, int);
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to short value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(short, int);
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to unsigned short value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(unsigned short, int);
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to unsigned int value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(unsigned int, int);
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to long long value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(long long, int);
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to unsigned long long value.
/// </summary><remarks>
/// If internal data is not int value then InvalidCastException will
/// be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(unsigned long long, int);
//-------------------------------------------------------------------
/// <summary>
/// Explicit cast operator from ValueBox to float value.
/// </summary><remarks>
/// If internal data is not double value then InvalidCastException
/// will be raised.
/// </remarks>
//-------------------------------------------------------------------
OP_EXP_(float, double);
//-------------------------------------------------------------------
/// <summary>
/// Operator ==. Check for two instances of ValueBox to be equal.
/// </summary><remarks>
/// Checks internal m_value members to be equivalent.
/// </remarks>
//-------------------------------------------------------------------
bool Node::ValueBox::operator ==( ValueBox value1, ValueBox value2 )
{
return Object::Equals( value1.m_value, value2.m_value );
}
//-------------------------------------------------------------------
/// <summary>
/// Operator !=. Check for two instances of ValueBox to be not equal.
/// </summary><remarks>
/// It uses Equal operator in implementation.
/// </remarks>
//-------------------------------------------------------------------
bool Node::ValueBox::operator !=( ValueBox value1, ValueBox value2 )
{
return !(value1 == value2);
}
//-------------------------------------------------------------------
/// <summary>
/// Returns a value indicating whether this instance and a specified
/// ValueBox object represent the same value.
/// </summary><remarks>
/// It uses Equal operator in implementation.
/// </remarks>
//-------------------------------------------------------------------
bool Node::ValueBox::Equals( ValueBox value )
{
return (*this == value);
}
//-------------------------------------------------------------------
/// <summary>
/// Determines whether the specified Object is equal to the current
/// ValueBox instance.
/// </summary><remarks>
/// Try build new instance of the ValueBox class by specified Object
/// parameter. If custructor fails, returns false. In other case uses
/// Equal operator.
/// </remarks>
//-------------------------------------------------------------------
bool Node::ValueBox::Equals( Object ^object )
{
// try to build new ValueBox instance
try {
// if succeeded use Equal operator
return (*this == ValueBox(object));
} catch( ArgumentException^ ) {
// if constructor failed return false
return false;
}
}
//-------------------------------------------------------------------
/// <summary>
/// Returns a handle to the internal data.
/// </summary>
//-------------------------------------------------------------------
Object^ Node::ValueBox::ToObject( void )
{
return m_value;
}
//-------------------------------------------------------------------
/// <summary>
/// Returns a String that represents the current ValueBox.
/// </summary><remarks>
/// This function call the internal data ToString() method or return
/// "null" for internal null reference.
/// </remarks>
//-------------------------------------------------------------------
String^ Node::ValueBox::ToString( void )
{
return (m_value != nullptr ? m_value->ToString() : "null");
}
| [
"[email protected]"
] | |
8bdebc6d578db2a3d483aaab86b75894cc432f2b | 0e40a0486826825c2c8adba9a538e16ad3efafaf | /lib/wxAdditions/include/wx/treelistctrl/treelistctrl.h | 9acc335b150a1157afca5660f7f711499b92e0d1 | [
"MIT"
] | permissive | iraqigeek/iZ3D | 4c45e69a6e476ad434d5477f21f5b5eb48336727 | ced8b3a4b0a152d0177f2e94008918efc76935d5 | refs/heads/master | 2023-05-25T19:04:06.082744 | 2020-12-28T03:27:55 | 2020-12-28T03:27:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,244 | h | /////////////////////////////////////////////////////////////////////////////
// Name: treelistctrl.h
// Purpose: wxTreeListCtrl class
// Author: Robert Roebling
// Maintainer: Otto Wyss
// Created: 01/02/97
// RCS-ID: $Id$
// Copyright: (c) 2004 Robert Roebling, Julian Smart, Alberto Griggio,
// Vadim Zeitlin, Otto Wyss , Guru Kathiresan
// Licence: wxWindows
/////////////////////////////////////////////////////////////////////////////
#ifndef TREELISTCTRL_H
#define TREELISTCTRL_H
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "treelistctrl.h"
#endif
// ----------------------------------------------------------------------------
// DLLIMPEXP macros
// ----------------------------------------------------------------------------
// These are our DLL macros (see the contrib libs like wxPlot)
#ifdef WXMAKINGDLL_TREELISTCTRL
#define WXDLLIMPEXP_TREELISTCTRL WXEXPORT
#define WXDLLIMPEXP_DATA_TREELISTCTRL(type) WXEXPORT type
#elif defined(WXUSINGDLL)
#define WXDLLIMPEXP_TREELISTCTRL WXIMPORT
#define WXDLLIMPEXP_DATA_TREELISTCTRL(type) WXIMPORT type
#else // not making nor using DLL
#define WXDLLIMPEXP_TREELISTCTRL
#define WXDLLIMPEXP_DATA_TREELISTCTRL(type) type
#endif
#include <wx/treectrl.h>
#include <wx/control.h>
#include <wx/pen.h>
#include <wx/listctrl.h> // for wxListEvent
#include <wx/arrstr.h>
class WXDLLIMPEXP_TREELISTCTRL wxTreeListItem;
class WXDLLIMPEXP_TREELISTCTRL wxTreeListHeaderWindow;
class WXDLLIMPEXP_TREELISTCTRL wxTreeListMainWindow;
#define wxTR_COLUMN_LINES 0x1000 // put border around items
#define wxTR_VIRTUAL 0x4000 // The application provides items text on demand.
// Using this typedef removes an ambiguity when calling Remove()
#ifdef __WXMSW__
#if !wxCHECK_VERSION(2, 5, 0)
typedef long wxTreeItemIdValue;
#else
typedef void *wxTreeItemIdValue;
#endif
#endif
//-----------------------------------------------------------------------------
// wxTreeListColumnAttrs
//-----------------------------------------------------------------------------
enum {
DEFAULT_COL_WIDTH = 100
};
class WXDLLIMPEXP_TREELISTCTRL wxTreeListColumnInfo: public wxObject {
public:
enum PickType
{
Text = 0,
TextInteger,
TextFloat,
TextAscii,
Combo,
Choice,
/* DatePick, disabled until bugs in datepicker are fixed */
Spin
};
wxTreeListColumnInfo (const wxString &text = wxEmptyString,
int width = DEFAULT_COL_WIDTH,
int flag = wxALIGN_LEFT,
int image = -1,
bool shown = true,
bool edit = false,
int pick_type = Text,
wxArrayString choices = wxArrayString() )
:
m_text( text ),
m_width( width ),
m_flag( flag ),
m_image( image ),
m_selected_image( -1 ),
m_shown( shown ),
m_edit( edit ),
m_pick_type( pick_type ),
m_choices( choices )
{
}
wxTreeListColumnInfo (const wxTreeListColumnInfo& other)
:
wxObject( other ),
m_text( other.m_text ),
m_width( other.m_width ),
m_flag( other.m_flag ),
m_image( other.m_image ),
m_selected_image( other.m_selected_image ),
m_shown( other.m_shown ),
m_edit( other.m_edit ),
m_pick_type( other.m_pick_type ),
m_choices( other.m_choices )
{
}
~wxTreeListColumnInfo() {}
// get/set
wxString GetText() const { return m_text; }
wxTreeListColumnInfo& SetText (const wxString& text) { m_text = text; return *this; }
int GetWidth() const { return m_width; }
wxTreeListColumnInfo& SetWidth (int width) { m_width = width; return *this; }
int GetAlignment() const { return m_flag; }
wxTreeListColumnInfo& SetAlignment (int flag) { m_flag = flag; return *this; }
int GetImage() const { return m_image; }
wxTreeListColumnInfo& SetImage (int image) { m_image = image; return *this; }
int GetSelectedImage() const { return m_selected_image; }
wxTreeListColumnInfo& SetSelectedImage (int image) { m_selected_image = image; return *this; }
bool IsEditable() const { return m_edit; }
wxTreeListColumnInfo& SetEditable (bool edit)
{ m_edit = edit; return *this; }
bool IsShown() const { return m_shown; }
wxTreeListColumnInfo& SetShown(bool shown) { m_shown = shown; return *this; }
int GetPickType(void) const { return m_pick_type;}
wxTreeListColumnInfo& SetPickType(int pick_type) { m_pick_type = pick_type; return *this; }
wxArrayString GetChoices(void) const { return m_choices;}
wxTreeListColumnInfo& SetChoices( const wxArrayString& choices) { m_choices = choices; return *this; }
private:
wxString m_text;
int m_width;
int m_flag;
int m_image;
int m_selected_image;
bool m_shown;
bool m_edit;
int m_pick_type;
wxArrayString m_choices;
};
//----------------------------------------------------------------------------
// wxTreeListCtrl - the multicolumn tree control
//----------------------------------------------------------------------------
// modes for navigation
const int wxTL_MODE_NAV_FULLTREE = 0x0000; // default
const int wxTL_MODE_NAV_EXPANDED = 0x0001;
const int wxTL_MODE_NAV_VISIBLE = 0x0002;
const int wxTL_MODE_NAV_LEVEL = 0x0004;
// modes for FindItem
const int wxTL_MODE_FIND_EXACT = 0x0000; // default
const int wxTL_MODE_FIND_PARTIAL = 0x0010;
const int wxTL_MODE_FIND_NOCASE = 0x0020;
// additional flag for HitTest
const int wxTREE_HITTEST_ONITEMCOLUMN = 0x2000;
extern WXDLLIMPEXP_TREELISTCTRL const wxChar* wxTreeListCtrlNameStr;
class WXDLLIMPEXP_TREELISTCTRL wxTreeListCtrl : public wxControl
{
public:
// creation
// --------
wxTreeListCtrl()
: m_header_win(0), m_main_win(0), m_headerHeight(0)
{}
wxTreeListCtrl(wxWindow *parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTR_DEFAULT_STYLE,
const wxValidator &validator = wxDefaultValidator,
const wxString& name = wxTreeListCtrlNameStr )
: m_header_win(0), m_main_win(0), m_headerHeight(0)
{
Create(parent, id, pos, size, style, validator, name);
}
virtual ~wxTreeListCtrl() {}
bool Create(wxWindow *parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTR_DEFAULT_STYLE,
const wxValidator &validator = wxDefaultValidator,
const wxString& name = wxTreeListCtrlNameStr );
void Refresh(bool erase=TRUE, const wxRect* rect=NULL);
void SetFocus();
// accessors
// ---------
// get the total number of items in the control
size_t GetCount() const;
// indent is the number of pixels the children are indented relative to
// the parents position. SetIndent() also redraws the control
// immediately.
unsigned int GetIndent() const;
void SetIndent(unsigned int indent);
// line spacing is the space above and below the text on each line
unsigned int GetLineSpacing() const;
void SetLineSpacing(unsigned int spacing);
// image list: these functions allow to associate an image list with
// the control and retrieve it. Note that when assigned with
// SetImageList, the control does _not_ delete
// the associated image list when it's deleted in order to allow image
// lists to be shared between different controls. If you use
// AssignImageList, the control _does_ delete the image list.
//
// The normal image list is for the icons which correspond to the
// normal tree item state (whether it is selected or not).
// Additionally, the application might choose to show a state icon
// which corresponds to an app-defined item state (for example,
// checked/unchecked) which are taken from the state image list.
wxImageList *GetImageList() const;
wxImageList *GetStateImageList() const;
wxImageList *GetButtonsImageList() const;
void SetImageList(wxImageList *imageList);
void SetStateImageList(wxImageList *imageList);
void SetButtonsImageList(wxImageList *imageList);
void AssignImageList(wxImageList *imageList);
void AssignStateImageList(wxImageList *imageList);
void AssignButtonsImageList(wxImageList *imageList);
// Functions to work with columns
// adds a column
void AddColumn (const wxString& text,
int width = DEFAULT_COL_WIDTH,
int flag = wxALIGN_LEFT,
int image = -1,
bool shown = true,
bool edit = false,
int pick_type = wxTreeListColumnInfo::Text,
wxArrayString choices = wxArrayString()) {
AddColumn (wxTreeListColumnInfo (text, width, flag, image, shown, edit, pick_type, choices));
}
void AddColumn (const wxTreeListColumnInfo& colInfo);
// inserts a column before the given one
void InsertColumn (int before,
const wxString& text,
int width = DEFAULT_COL_WIDTH,
int flag = wxALIGN_LEFT,
int image = -1,
bool shown = true,
bool edit = false,
int pick_type = wxTreeListColumnInfo::Text,
wxArrayString choices = wxArrayString()) {
InsertColumn (before,
wxTreeListColumnInfo (text, width, flag, image, shown, edit, pick_type, choices));
}
void InsertColumn (int before, const wxTreeListColumnInfo& colInfo);
// deletes the given column - does not delete the corresponding column
void RemoveColumn (int column);
// returns the number of columns in the ctrl
int GetColumnCount() const;
// tells which column is the "main" one, i.e. the "threaded" one
void SetMainColumn (int column);
int GetMainColumn() const;
void SetColumn (int column, const wxTreeListColumnInfo& colInfo);
wxTreeListColumnInfo& GetColumn (int column);
const wxTreeListColumnInfo& GetColumn (int column) const;
void SetColumnText (int column, const wxString& text);
wxString GetColumnText (int column) const;
void SetColumnWidth (int column, int width);
int GetColumnWidth (int column) const;
void SetColumnAlignment (int column, int flag);
int GetColumnAlignment (int column) const;
void SetColumnImage (int column, int image);
int GetColumnImage (int column) const;
void SetColumnShown (int column, bool shown = true);
bool IsColumnShown (int column) const;
void SetColumnEditable (int column, bool edit = true);
bool IsColumnEditable (int column) const;
void SetColumnPickType (int column, int pick_type);
int GetColumnPickType (int column) const;
wxArrayString GetColumnChoices(int column) const;
void SetColumnChoices(int column, const wxArrayString& choices);
// Functions to work with items.
// accessors
// ---------
// retrieve item's label (of the main column)
wxString GetItemText (const wxTreeItemId& item) const
{ return GetItemText (item, GetMainColumn()); }
// retrieves item's label of the given column
wxString GetItemText (const wxTreeItemId& item, int column) const;
// get one of the images associated with the item (normal by default)
int GetItemImage (const wxTreeItemId& item,
wxTreeItemIcon which = wxTreeItemIcon_Normal) const
{ return GetItemImage (item, GetMainColumn(), which); }
int GetItemImage (const wxTreeItemId& item, int column,
wxTreeItemIcon which = wxTreeItemIcon_Normal) const;
// get the data associated with the item
wxTreeItemData *GetItemData (const wxTreeItemId& item) const;
bool GetItemBold (const wxTreeItemId& item) const;
wxColour GetItemTextColour (const wxTreeItemId& item) const;
wxColour GetItemBackgroundColour (const wxTreeItemId& item) const;
wxFont GetItemFont (const wxTreeItemId& item) const;
// modifiers
// set item's label
void SetItemText (const wxTreeItemId& item, const wxString& text)
{ SetItemText (item, GetMainColumn(), text); }
void SetItemText (const wxTreeItemId& item, int column, const wxString& text);
// get one of the images associated with the item (normal by default)
void SetItemImage (const wxTreeItemId& item, int image,
wxTreeItemIcon which = wxTreeItemIcon_Normal)
{ SetItemImage (item, GetMainColumn(), image, which); }
// the which parameter is ignored for all columns but the main one
void SetItemImage (const wxTreeItemId& item, int column, int image,
wxTreeItemIcon which = wxTreeItemIcon_Normal);
// associate some data with the item
void SetItemData (const wxTreeItemId& item, wxTreeItemData *data);
// force appearance of [+] button near the item. This is useful to
// allow the user to expand the items which don't have any children now
// - but instead add them only when needed, thus minimizing memory
// usage and loading time.
void SetItemHasChildren(const wxTreeItemId& item, bool has = true);
// the item will be shown in bold
void SetItemBold (const wxTreeItemId& item, bool bold = true);
// set the item's text colour
void SetItemTextColour (const wxTreeItemId& item, const wxColour& colour);
// set the item's background colour
void SetItemBackgroundColour (const wxTreeItemId& item, const wxColour& colour);
// set the item's font (should be of the same height for all items)
void SetItemFont (const wxTreeItemId& item, const wxFont& font);
// set the window font
virtual bool SetFont ( const wxFont &font );
// set the styles.
void SetWindowStyle (const long styles);
long GetWindowStyle() const;
long GetWindowStyleFlag () const { return GetWindowStyle(); }
// item status inquiries
// ---------------------
// is the item visible (it might be outside the view or not expanded)?
bool IsVisible (const wxTreeItemId& item, bool fullRow = false) const;
// does the item has any children?
bool HasChildren (const wxTreeItemId& item) const;
// is the item expanded (only makes sense if HasChildren())?
bool IsExpanded (const wxTreeItemId& item) const;
// is this item currently selected (the same as has focus)?
bool IsSelected (const wxTreeItemId& item) const;
// is item text in bold font?
bool IsBold (const wxTreeItemId& item) const;
// does the layout include space for a button?
// number of children
// ------------------
// if 'recursively' is FALSE, only immediate children count, otherwise
// the returned number is the number of all items in this branch
size_t GetChildrenCount (const wxTreeItemId& item, bool recursively = true);
// navigation
// ----------
// wxTreeItemId.IsOk() will return FALSE if there is no such item
// get the root tree item
wxTreeItemId GetRootItem() const;
// get the item currently selected (may return NULL if no selection)
wxTreeItemId GetSelection() const;
// get the items currently selected, return the number of such item
size_t GetSelections (wxArrayTreeItemIds&) const;
// get the parent of this item (may return NULL if root)
wxTreeItemId GetItemParent (const wxTreeItemId& item) const;
// for this enumeration function you must pass in a "cookie" parameter
// which is opaque for the application but is necessary for the library
// to make these functions reentrant (i.e. allow more than one
// enumeration on one and the same object simultaneously). Of course,
// the "cookie" passed to GetFirstChild() and GetNextChild() should be
// the same!
// get child of this item
#if !wxCHECK_VERSION(2, 5, 0)
wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& cookie) const;
wxTreeItemId GetNextChild(const wxTreeItemId& item, long& cookie) const;
wxTreeItemId GetPrevChild(const wxTreeItemId& item, long& cookie) const;
wxTreeItemId GetLastChild(const wxTreeItemId& item, long& cookie) const;
#else
wxTreeItemId GetFirstChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const;
wxTreeItemId GetNextChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const;
wxTreeItemId GetPrevChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const;
wxTreeItemId GetLastChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const;
#endif
// get sibling of this item
wxTreeItemId GetNextSibling(const wxTreeItemId& item) const;
wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const;
// get item in the full tree (currently only for internal use)
wxTreeItemId GetNext(const wxTreeItemId& item) const;
wxTreeItemId GetPrev(const wxTreeItemId& item) const;
// get expanded item, see IsExpanded()
wxTreeItemId GetFirstExpandedItem() const;
wxTreeItemId GetNextExpanded(const wxTreeItemId& item) const;
wxTreeItemId GetPrevExpanded(const wxTreeItemId& item) const;
// get visible item, see IsVisible()
wxTreeItemId GetFirstVisibleItem(bool fullRow = false) const;
wxTreeItemId GetNextVisible(const wxTreeItemId& item, bool fullRow = false) const;
wxTreeItemId GetPrevVisible(const wxTreeItemId& item, bool fullRow = false) const;
// operations
// ----------
// add the root node to the tree
wxTreeItemId AddRoot (const wxString& text,
int image = -1, int selectedImage = -1,
wxTreeItemData *data = NULL);
// insert a new item in as the first child of the parent
wxTreeItemId PrependItem (const wxTreeItemId& parent,
const wxString& text,
int image = -1, int selectedImage = -1,
wxTreeItemData *data = NULL);
// insert a new item after a given one
wxTreeItemId InsertItem (const wxTreeItemId& parent,
const wxTreeItemId& idPrevious,
const wxString& text,
int image = -1, int selectedImage = -1,
wxTreeItemData *data = NULL);
// insert a new item before the one with the given index
wxTreeItemId InsertItem (const wxTreeItemId& parent,
size_t index,
const wxString& text,
int image = -1, int selectedImage = -1,
wxTreeItemData *data = NULL);
// insert a new item in as the last child of the parent
wxTreeItemId AppendItem (const wxTreeItemId& parent,
const wxString& text,
int image = -1, int selectedImage = -1,
wxTreeItemData *data = NULL);
// delete this item (except root) + children and associated data if any
void Delete (const wxTreeItemId& item);
// delete all children (but don't delete the item itself)
void DeleteChildren (const wxTreeItemId& item);
// delete the root and all its children from the tree
void DeleteRoot();
// expand this item
void Expand (const wxTreeItemId& item);
// expand this item and all subitems recursively
void ExpandAll (const wxTreeItemId& item);
// collapse the item without removing its children
void Collapse (const wxTreeItemId& item);
// collapse the item and remove all children
void CollapseAndReset(const wxTreeItemId& item); //? TODO ???
// toggles the current state
void Toggle (const wxTreeItemId& item);
// remove the selection from currently selected item (if any)
void Unselect();
void UnselectAll();
// select this item - return true if selection was allowed (no veto)
bool SelectItem (const wxTreeItemId& item,
const wxTreeItemId& last = (wxTreeItemId*)NULL,
bool unselect_others = true);
// select all items in the expanded tree
void SelectAll();
// make sure this item is visible (expanding the parent item and/or
// scrolling to this item if necessary)
void EnsureVisible (const wxTreeItemId& item);
// scroll to this item (but don't expand its parent)
void ScrollTo (const wxTreeItemId& item);
// The first function is more portable (because easier to implement
// on other platforms), but the second one returns some extra info.
wxTreeItemId HitTest (const wxPoint& point)
{ int flags; int column; return HitTest (point, flags, column); }
wxTreeItemId HitTest (const wxPoint& point, int& flags)
{ int column; return HitTest (point, flags, column); }
wxTreeItemId HitTest (const wxPoint& point, int& flags, int& column);
// get the bounding rectangle of the item (or of its label only)
bool GetBoundingRect (const wxTreeItemId& item, wxRect& rect,
bool textOnly = false) const;
// Start editing the item label: this (temporarily) replaces the item
// with a one line edit control. The item will be selected if it hadn't
// been before.
void EditLabel (const wxTreeItemId& item)
{ EditLabel (item, GetMainColumn()); }
// edit item's label of the given column
void EditLabel (const wxTreeItemId& item, int column);
// virtual mode
virtual wxString OnGetItemText( wxTreeItemData* item, long column ) const;
// sorting
// this function is called to compare 2 items and should return -1, 0
// or +1 if the first item is less than, equal to or greater than the
// second one. The base class version performs alphabetic comparaison
// of item labels (GetText)
virtual int OnCompareItems (const wxTreeItemId& item1, const wxTreeItemId& item2);
// sort the children of this item using OnCompareItems
// NB: this function is not reentrant and not MT-safe (FIXME)!
void SortChildren(const wxTreeItemId& item);
// searching
wxTreeItemId FindItem (const wxTreeItemId& item, const wxString& str, int mode = 0);
// overridden base class virtuals
virtual bool SetBackgroundColour (const wxColour& colour);
virtual bool SetForegroundColour (const wxColour& colour);
// drop over item
void SetDragItem (const wxTreeItemId& item = (wxTreeItemId*)NULL);
wxTreeListHeaderWindow* GetHeaderWindow() const
{ return m_header_win; }
wxTreeListMainWindow* GetMainWindow() const
{ return m_main_win; }
virtual wxSize DoGetBestSize() const;
protected:
// header window, responsible for column visualization and manipulation
wxTreeListHeaderWindow* m_header_win;
// main window, the "true" tree ctrl
wxTreeListMainWindow* m_main_win;
void CalculateAndSetHeaderHeight();
void DoHeaderLayout();
void OnSize(wxSizeEvent& event);
private:
int m_headerHeight;
DECLARE_EVENT_TABLE()
DECLARE_DYNAMIC_CLASS(wxTreeListCtrl)
};
#endif // TREELISTCTRL_H
| [
"[email protected]"
] | |
3ecf4235f5cd6a758c53a0c59e3681725b3dd50a | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /third_party/blink/public/platform/web_input_event_result.h | 6b7da2d4e46297b3627d36facdeeea933fdfaea0 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 828 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_INPUT_EVENT_RESULT_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_INPUT_EVENT_RESULT_H_
namespace blink {
enum class WebInputEventResult {
// Event was not consumed by application or system.
kNotHandled,
// Event was consumed but suppressed before dispatched to application.
kHandledSuppressed,
// Event was consumed by application itself; ie. a script handler calling
// preventDefault.
kHandledApplication,
// Event was consumed by the system; ie. executing the default action.
kHandledSystem,
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_INPUT_EVENT_RESULT_H_
| [
"[email protected]"
] | |
b19300d2540372d6a74adbe4ee33fa883017d430 | ea8d301d3d31ce6b1cb71382ea5b2bdebb682638 | /ia2/sparkapp/SparkJson/StaticJsonBuffer.h | 5d4b6810032e4d96cb51dc58bc5859280538f929 | [
"MIT"
] | permissive | tonyjmnz/hcin720 | 43029ffcd628c2366280e003c6e331121e7a4c53 | 1741b396e12bad43bbfb1978e2d17deac2b07b81 | refs/heads/master | 2021-06-08T07:10:42.213208 | 2015-11-12T16:07:00 | 2015-11-12T16:07:00 | 41,457,387 | 0 | 2 | MIT | 2018-12-08T07:11:24 | 2015-08-27T00:56:37 | JavaScript | UTF-8 | C++ | false | false | 769 | h | // Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#pragma once
#include "JsonBuffer.h"
namespace ArduinoJson {
// Implements a JsonBuffer with fixed memory allocation.
// The template paramenter CAPACITY specifies the capacity of the buffer in
// bytes.
template <size_t CAPACITY>
class StaticJsonBuffer : public JsonBuffer {
public:
explicit StaticJsonBuffer() : _size(0) {}
size_t capacity() const { return CAPACITY; }
size_t size() const { return _size; }
protected:
virtual void* alloc(size_t bytes) {
if (_size + bytes > CAPACITY) return NULL;
void* p = &_buffer[_size];
_size += bytes;
return p;
}
private:
uint8_t _buffer[CAPACITY];
size_t _size;
};
}
| [
"[email protected]"
] | |
8795457c2e65dd45db4095e9fce3b0a504483f59 | af89ab14564d06a760221e95fe13bb87cab04c2e | /misal4_5.cpp | 33396e759cf60027645dd6787da045eeaae57b1a | [] | no_license | ReyhanaKarimly/REYHANA_KARIMLI_PROJECTS_C | 73251aff2ab0a0e5b1df8900f229c37925d2219c | b3c067b17580e645448867cc6407a2864599bfd0 | refs/heads/master | 2020-05-25T19:44:51.876121 | 2017-03-14T14:48:16 | 2017-03-14T14:48:16 | 84,960,776 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | cpp | #include <stdio.h>
#include <conio.h>
int main()
{
float x,y;
printf("Enter x,y: ");
scanf("%f%f",&x,&y);
if (y>=x && y<=1 && x>=-1)
printf("YES");
else
printf("NO");
getch();
} | [
"[email protected]"
] | |
c71bf77311ddb234223363a3ab32ad2bcb6d3f19 | 5de42c4e14a7ddbc284a742c66cb01b230ba43ce | /codeforces/1147/D.cpp | 3c53852f4cd3b8f8a21bf3120a30e9c72a91feb6 | [] | no_license | NhatMinh0208/CP-Archive | 42d6cc9b1d2d6b8c85e637b8a88a6852a398cc23 | f95784d53708003e7ba74cbe4f2c7a888d29eac4 | refs/heads/master | 2023-05-09T15:50:34.344385 | 2021-05-04T14:25:00 | 2021-05-19T16:10:11 | 323,779,542 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,404 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
const int mod = 998244353;
void ad(int& x, int y) {
x += y;
if (x >= mod)
x -= mod;
}
string s;
int m, res;
int n;
basic_string<pair<int, int>> e[2005];
int vis[2005];
void ae(int x, int y, int r) {
e[x] += {y, r};
e[y] += {x, r};
}
const int INCONSISTENT = 1;
const int CONSTANT = 2;
void dfs(int x, int cl, int& status) {
if (x == n-1)
status |= CONSTANT;
if (vis[x] != -1) {
if (vis[x] != cl)
status |= INCONSISTENT;
return;
}
vis[x] = cl;
for (auto [y, w] : e[x]) {
dfs(y, w^cl, status);
}
}
void resi(int l) {
n = 2*m + 1;
fill(e, e+n, basic_string<pair<int, int>>());
fill(vis, vis+n, -1);
for (int i=0, j=m-1; i<j; i++, j--)
ae(i, j, 0);
for (int i=m, j=m+l-1; i<j; i++, j--)
ae(i, j, 0);
for (int i=0; i<m; i++)
if (s[i] != '?')
ae(i, i+m, s[i] - '0');
ae(m+l-1, 2*m, 1);
for (int i=m+l; i<2*m; i++)
ae(i, 2*m, 0);
int res = 1;
for (int i=0; i<n; i++) {
if (vis[i] == -1) {
int status = 0;
dfs(i, 0, status);
if (status & INCONSISTENT)
res = 0;
else if (status & CONSTANT)
res = res;
else
ad(res, res);
}
}
ad(::res, res);
}
int main() {
cin >> s;
m = s.size();
reverse(s.begin(), s.end());
for (int l=1; l<m; l++) {
resi(l);
}
cout << res << endl;
}
| [
"[email protected]"
] | |
382988a2ea56e388bc4ffdfd397fd9d858878497 | 00d46a1fd4f89e453a516fb671e19279ec276346 | /libs/hwui/tests/common/scenes/BitmapFillrate.cpp | be58d09b7f4d14a1068cc3568fee438adc9c3bb6 | [
"Apache-2.0",
"LicenseRef-scancode-unicode"
] | permissive | PixelExperience/frameworks_base | 0e2e5a46488ac2c783040a6c9869706094ce443c | ca5a74a85004cf9bb6813c23ddba3c94e3f4fcb7 | refs/heads/oreo-mr1 | 2023-08-03T04:08:15.038905 | 2018-12-04T20:39:27 | 2018-12-04T20:39:27 | 220,296,956 | 70 | 778 | NOASSERTION | 2023-08-08T16:29:08 | 2019-11-07T17:52:10 | Java | UTF-8 | C++ | false | false | 2,975 | cpp | /*
* Copyright (C) 2016 The Android Open Source Project
*
* 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 "TestSceneBase.h"
#include "tests/common/BitmapAllocationTestUtils.h"
#include "utils/Color.h"
#include <SkBitmap.h>
using namespace android;
using namespace android::uirenderer;
class BitmapFillrate;
static bool _BitmapFillrate(
BitmapAllocationTestUtils::registerBitmapAllocationScene<BitmapFillrate>(
"bitmapFillrate", "Draws multiple large half transparent bitmaps."));
class BitmapFillrate : public TestScene {
public:
BitmapFillrate(BitmapAllocationTestUtils::BitmapAllocator allocator)
: TestScene()
, mAllocator(allocator) { }
void createContent(int width, int height, Canvas& canvas) override {
canvas.drawColor(Color::White, SkBlendMode::kSrcOver);
createNode(canvas, 0x909C27B0, 0, 0, width, height);
createNode(canvas, 0xA0CDDC39, width / 3, height / 3, width, height);
createNode(canvas, 0x90009688, width / 3, 0, width, height);
createNode(canvas, 0xA0FF5722, 0, height / 3, width, height);
createNode(canvas, 0x9000796B, width / 6, height/6, width, height);
createNode(canvas, 0xA0FFC107, width / 6, 0, width, height);
}
void doFrame(int frameNr) override {
for (size_t ci = 0; ci < mNodes.size(); ci++) {
mNodes[ci]->mutateStagingProperties().setTranslationX(frameNr % 200);
mNodes[ci]->mutateStagingProperties().setTranslationY(frameNr % 200);
mNodes[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
}
}
private:
void createNode(Canvas& canvas, SkColor color, int left, int top,
int width, int height) {
int itemWidth = 2 * width / 3;
int itemHeight = 2 * height / 3;
auto card = TestUtils::createNode(left, top, left + itemWidth , top + itemHeight,
[this, itemWidth, itemHeight, color](RenderProperties& props, Canvas& canvas) {
sk_sp<Bitmap> bitmap = mAllocator(itemWidth, itemHeight, kRGBA_8888_SkColorType,
[color](SkBitmap& skBitmap) {
skBitmap.eraseColor(color);
});
canvas.drawBitmap(*bitmap, 0, 0, nullptr);
});
canvas.drawRenderNode(card.get());
mNodes.push_back(card);
}
BitmapAllocationTestUtils::BitmapAllocator mAllocator;
std::vector< sp<RenderNode> > mNodes;
}; | [
"[email protected]"
] | |
b5cd4f29b135cd96e4c6db505cb19b078d8ec985 | ab36b7323b660db12194eb451d35c0b9b91867f2 | /연습 프로젝트/연습 프로젝트/HighCreditAccount.cpp | aff4dc998471e33fbccd820cdcd9c38817919525 | [] | no_license | ggzerosum/CPP_Practice | d9ffd1ef3cb244a912942b44ee83410b85646976 | e54a2b62adfeb87b2f6b3d520e32d78f6bcd3df7 | refs/heads/master | 2020-05-23T10:17:56.789242 | 2017-03-28T14:07:50 | 2017-03-28T14:07:50 | 80,415,168 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,207 | cpp | #include "headers.h"
#include "HighCreditAccount.h"
namespace ES = My_EnumSpace;
namespace My_NameSpace
{
HighCreditAccount::HighCreditAccount()
:interest(1), grade(ES::Grade_C)
{}
HighCreditAccount::HighCreditAccount(int id, const char* name, int cash, int interest, int grade)
:ACCOUNT(id, name, cash), interest(interest), grade(grade)
{}
HighCreditAccount::HighCreditAccount(const HighCreditAccount &origin)
:ACCOUNT(origin), interest(origin.interest), grade(origin.grade)
{}
HighCreditAccount::~HighCreditAccount()
{}
void HighCreditAccount::SetInterest(int amount)
{
interest = amount;
}
int HighCreditAccount::GetInterest(void)
{
return interest;
}
void HighCreditAccount::SetGrade(int grade)
{
this->grade = grade;
}
int HighCreditAccount::GetGrade(void)
{
return grade;
}
void HighCreditAccount::Deposit(int amount)
{
int bonus, sum, fee;
switch (grade)
{
case ES::Grade_A:
bonus = 7;
break;
case ES::Grade_B:
bonus = 4;
break;
case ES::Grade_C:
bonus = 2;
break;
}
fee = GetCash() * ((interest + bonus) / 100.0);
sum = GetCash() + fee + amount;
SetCash(sum);
cout << endl << "입금이 완료되었습니다.";
cout << endl << "현재 잔액: " << GetCash() << endl;
}
void HighCreditAccount::Withdraw(int amount)
{
int sum = GetCash() - amount;
if (sum < 0)
{
cout << endl << "계좌의 잔액보다 큰 액수는 출금할 수 없습니다." << endl;
cout << "현재 잔액: " << GetCash() << endl;
return;
}
SetCash(sum);
cout << endl << "현재 계좌 잔액: " << GetCash() << "원" << endl;
return;
}
void HighCreditAccount::ShowInfo(void)
{
char CharOfGrade;
switch (grade)
{
case ES::Grade_A:
CharOfGrade = 'A';
break;
case ES::Grade_B:
CharOfGrade = 'B';
break;
case ES::Grade_C:
CharOfGrade = 'C';
break;
}
cout << "ID: " << GetID() << endl;
cout << "이름: " << GetName() << endl;
cout << "잔액: " << GetCash() << endl;
cout << "이자율: " << interest << endl;
cout << "등급: " << CharOfGrade << endl;
}
ACCOUNT* HighCreditAccount::MakeSelfCopiedObj(void)
{
return new HighCreditAccount(*this);
}
} | [
"[email protected]"
] | |
cbf4a43446d737f8b235373aa82a5201962c70c3 | 5af0dd38b1560660db3859a85ee95d772a49321f | /Game/gameObject/IGameObject.cpp | af434e52efafffeaef3242e0d9e4cff2e2717845 | [] | no_license | w-kaoru/Game_01 | dbeac2d4035955c049ea288324835942b0dfa33e | debd81c9314495e54197e7a352484d7b66a86ed8 | refs/heads/master | 2020-03-29T18:08:48.086475 | 2019-08-12T12:59:42 | 2019-08-12T12:59:42 | 150,196,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 142 | cpp | #include "stdafx.h"
#include "GameObjectManager.h"
#include "IGameObject.h"
IGameObject::IGameObject()
{
}
IGameObject::~IGameObject()
{
}
| [
"[email protected]"
] | |
88ce4362c08cf1a60cc8bce77d05d60a8bb9e0d5 | b067b1fc5239eaf4354871dcb9d64f10901af2a8 | /Labor_5/L5_A2/Medium.h | 5d6d4cf664adb444401cca121afe6a24a43cf49b | [] | no_license | Dream-Dev-Team/Labor_OOS1 | 37d9282de9da0d87745a63ac91d917e06d74e45b | cf6c6679acaf4a4844f8955896af16e2b2b7229d | refs/heads/master | 2022-11-26T01:44:59.534960 | 2020-07-24T08:39:20 | 2020-07-24T08:39:20 | 261,707,092 | 2 | 1 | null | null | null | null | ISO-8859-1 | C++ | false | false | 953 | h | // Medium.hpp
#pragma once
#include <string>
#include "Datum.h"
#include "Person.h"
using namespace std;
// Klasse für die Medien, die in der Bibliothek ausgeliehen werden
// können
class Medium {
// Titel des Mediums
const string titel;
// Verlag, der das Medium herausgibt
const string verlag;
// Jahr, in dem das Medium veröffentlicht wurde
const int jahr;
// ausgeliehen von
Person* ausleiher;
// ausgeliehen am
Datum von;
// ausgeliehen bis
Datum bis;
public:
// Konstruktor
Medium(string t = "", string v = "", int j = 0);
// Titel zurückliefern
string getTitel() const;
// Typ zurückliefern
string getTyp() const;
// Ausleiher zurückliefern
Person* getAusleiher() const;
// das Mediuem "ausleihen", d.h. Person p, von und bis eintragen
void ausleihen(Person& p, Datum von, Datum bis);
// Medium in der Konsole ausgeben
virtual void print() const;
// Medium clonen
virtual Medium* const clone() const = 0;
};
| [
"[email protected]"
] | |
52ce6bced531c90d46c3d42374175584c730b064 | 37f172115175d2ba7b6dba30a85b3d737273c5a3 | /src/caffe/solver.cpp | 749f426cda3090fa485fc485f45f58e8430c8f0c | [
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla"
] | permissive | daijialun/caffe_mvco | 7c6ff8ab57239f40c6e49701f62b708944dcab68 | 6676efabc4a2819efd4dba18fe3c65a89d30553c | refs/heads/master | 2021-01-21T14:11:28.580875 | 2016-07-30T16:45:21 | 2016-07-30T16:45:21 | 58,255,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,919 | cpp | #include <cstdio>
#include <string>
#include <vector>
#include "caffe/solver.hpp"
#include "caffe/util/format.hpp"
#include "caffe/util/hdf5.hpp"
#include "caffe/util/io.hpp"
#include "caffe/util/upgrade_proto.hpp"
namespace caffe {
template<typename Dtype>
void Solver<Dtype>::SetActionFunction(ActionCallback func) {
action_request_function_ = func;
}
template<typename Dtype>
SolverAction::Enum Solver<Dtype>::GetRequestedAction() {
if (action_request_function_) {
// If the external request function has been set, call it.
return action_request_function_();
}
return SolverAction::NONE;
}
template <typename Dtype>
Solver<Dtype>::Solver(const SolverParameter& param, const Solver* root_solver)
: net_(), callbacks_(), root_solver_(root_solver),
requested_early_exit_(false) {
Init(param);
}
template <typename Dtype>
Solver<Dtype>::Solver(const string& param_file, const Solver* root_solver)
: net_(), callbacks_(), root_solver_(root_solver),
requested_early_exit_(false) {
SolverParameter param;
ReadSolverParamsFromTextFileOrDie(param_file, ¶m);
Init(param);
}
template <typename Dtype>
void Solver<Dtype>::Init(const SolverParameter& param) {
CHECK(Caffe::root_solver() || root_solver_)
<< "root_solver_ needs to be set for all non-root solvers";
LOG_IF(INFO, Caffe::root_solver()) << "Initializing solver from parameters: "
<< std::endl << param.DebugString();
param_ = param;
CHECK_GE(param_.average_loss(), 1) << "average_loss should be non-negative.";
CheckSnapshotWritePermissions();
if (Caffe::root_solver() && param_.random_seed() >= 0) {
Caffe::set_random_seed(param_.random_seed());
}
// Scaffolding code
InitTrainNet();
if (Caffe::root_solver()) {
InitTestNets();
LOG(INFO) << "Solver scaffolding done.";
}
iter_ = 0;
current_step_ = 0;
}
template <typename Dtype>
void Solver<Dtype>::InitTrainNet() {
const int num_train_nets = param_.has_net() + param_.has_net_param() +
param_.has_train_net() + param_.has_train_net_param();
const string& field_names = "net, net_param, train_net, train_net_param";
CHECK_GE(num_train_nets, 1) << "SolverParameter must specify a train net "
<< "using one of these fields: " << field_names;
CHECK_LE(num_train_nets, 1) << "SolverParameter must not contain more than "
<< "one of these fields specifying a train_net: " << field_names;
NetParameter net_param;
if (param_.has_train_net_param()) {
LOG_IF(INFO, Caffe::root_solver())
<< "Creating training net specified in train_net_param.";
net_param.CopyFrom(param_.train_net_param());
} else if (param_.has_train_net()) {
LOG_IF(INFO, Caffe::root_solver())
<< "Creating training net from train_net file: " << param_.train_net();
ReadNetParamsFromTextFileOrDie(param_.train_net(), &net_param);
}
if (param_.has_net_param()) {
LOG_IF(INFO, Caffe::root_solver())
<< "Creating training net specified in net_param.";
net_param.CopyFrom(param_.net_param());
}
if (param_.has_net()) {
LOG_IF(INFO, Caffe::root_solver())
<< "Creating training net from net file: " << param_.net();
ReadNetParamsFromTextFileOrDie(param_.net(), &net_param);
}
// Set the correct NetState. We start with the solver defaults (lowest
// precedence); then, merge in any NetState specified by the net_param itself;
// finally, merge in any NetState specified by the train_state (highest
// precedence).
NetState net_state;
net_state.set_phase(TRAIN);
net_state.MergeFrom(net_param.state());
net_state.MergeFrom(param_.train_state());
net_param.mutable_state()->CopyFrom(net_state);
if (Caffe::root_solver()) {
net_.reset(new Net<Dtype>(net_param));
} else {
net_.reset(new Net<Dtype>(net_param, root_solver_->net_.get()));
}
}
template <typename Dtype>
void Solver<Dtype>::InitTestNets() {
CHECK(Caffe::root_solver());
const bool has_net_param = param_.has_net_param();
const bool has_net_file = param_.has_net();
const int num_generic_nets = has_net_param + has_net_file;
CHECK_LE(num_generic_nets, 1)
<< "Both net_param and net_file may not be specified.";
const int num_test_net_params = param_.test_net_param_size();
const int num_test_net_files = param_.test_net_size();
const int num_test_nets = num_test_net_params + num_test_net_files;
if (num_generic_nets) {
CHECK_GE(param_.test_iter_size(), num_test_nets)
<< "test_iter must be specified for each test network.";
} else {
CHECK_EQ(param_.test_iter_size(), num_test_nets)
<< "test_iter must be specified for each test network.";
}
// If we have a generic net (specified by net or net_param, rather than
// test_net or test_net_param), we may have an unlimited number of actual
// test networks -- the actual number is given by the number of remaining
// test_iters after any test nets specified by test_net_param and/or test_net
// are evaluated.
const int num_generic_net_instances = param_.test_iter_size() - num_test_nets;
const int num_test_net_instances = num_test_nets + num_generic_net_instances;
if (param_.test_state_size()) {
CHECK_EQ(param_.test_state_size(), num_test_net_instances)
<< "test_state must be unspecified or specified once per test net.";
}
if (num_test_net_instances) {
CHECK_GT(param_.test_interval(), 0);
}
int test_net_id = 0;
vector<string> sources(num_test_net_instances);
vector<NetParameter> net_params(num_test_net_instances);
for (int i = 0; i < num_test_net_params; ++i, ++test_net_id) {
sources[test_net_id] = "test_net_param";
net_params[test_net_id].CopyFrom(param_.test_net_param(i));
}
for (int i = 0; i < num_test_net_files; ++i, ++test_net_id) {
sources[test_net_id] = "test_net file: " + param_.test_net(i);
ReadNetParamsFromTextFileOrDie(param_.test_net(i),
&net_params[test_net_id]);
}
const int remaining_test_nets = param_.test_iter_size() - test_net_id;
if (has_net_param) {
for (int i = 0; i < remaining_test_nets; ++i, ++test_net_id) {
sources[test_net_id] = "net_param";
net_params[test_net_id].CopyFrom(param_.net_param());
}
}
if (has_net_file) {
for (int i = 0; i < remaining_test_nets; ++i, ++test_net_id) {
sources[test_net_id] = "net file: " + param_.net();
ReadNetParamsFromTextFileOrDie(param_.net(), &net_params[test_net_id]);
}
}
test_nets_.resize(num_test_net_instances);
for (int i = 0; i < num_test_net_instances; ++i) {
// Set the correct NetState. We start with the solver defaults (lowest
// precedence); then, merge in any NetState specified by the net_param
// itself; finally, merge in any NetState specified by the test_state
// (highest precedence).
NetState net_state;
net_state.set_phase(TEST);
net_state.MergeFrom(net_params[i].state());
if (param_.test_state_size()) {
net_state.MergeFrom(param_.test_state(i));
}
net_params[i].mutable_state()->CopyFrom(net_state);
LOG(INFO)
<< "Creating test net (#" << i << ") specified by " << sources[i];
if (Caffe::root_solver()) {
test_nets_[i].reset(new Net<Dtype>(net_params[i]));
} else {
test_nets_[i].reset(new Net<Dtype>(net_params[i],
root_solver_->test_nets_[i].get()));
}
test_nets_[i]->set_debug_info(param_.debug_info());
}
}
template <typename Dtype>
void Solver<Dtype>::Step(int iters) {
const int start_iter = iter_;
const int stop_iter = iter_ + iters;
int average_loss = this->param_.average_loss();
losses_.clear();
smoothed_loss_ = 0;
while (iter_ < stop_iter) {
// zero-init the params
net_->ClearParamDiffs();
if (param_.test_interval() && iter_ % param_.test_interval() == 0
&& (iter_ > 0 || param_.test_initialization())
&& Caffe::root_solver()) {
TestAll();
if (requested_early_exit_) {
// Break out of the while loop because stop was requested while testing.
break;
}
}
for (int i = 0; i < callbacks_.size(); ++i) {
callbacks_[i]->on_start();
}
const bool display = param_.display() && iter_ % param_.display() == 0;
net_->set_debug_info(display && param_.debug_info());
// accumulate the loss and gradient
Dtype loss = 0;
for (int i = 0; i < param_.iter_size(); ++i) {
loss += net_->ForwardBackward();
}
loss /= param_.iter_size();
// average the loss across iterations for smoothed reporting
UpdateSmoothedLoss(loss, start_iter, average_loss);
if (display) {
LOG_IF(INFO, Caffe::root_solver()) << "Iteration " << iter_
<< ", loss = " << smoothed_loss_;
const vector<Blob<Dtype>*>& result = net_->output_blobs();
int score_index = 0;
for (int j = 0; j < result.size(); ++j) {
const Dtype* result_vec = result[j]->cpu_data();
const string& output_name =
net_->blob_names()[net_->output_blob_indices()[j]];
const Dtype loss_weight =
net_->blob_loss_weights()[net_->output_blob_indices()[j]];
for (int k = 0; k < result[j]->count(); ++k) {
ostringstream loss_msg_stream;
if (loss_weight) {
loss_msg_stream << " (* " << loss_weight
<< " = " << loss_weight * result_vec[k] << " loss)";
}
if(output_name=="labelB" || output_name=="labelC") continue;
LOG_IF(INFO, Caffe::root_solver()) << " Train net output #"
<< score_index++ << ": " << output_name << " = "
<< result_vec[k] << loss_msg_stream.str();
}
}
}
for (int i = 0; i < callbacks_.size(); ++i) {
callbacks_[i]->on_gradients_ready();
}
ApplyUpdate();
// Increment the internal iter_ counter -- its value should always indicate
// the number of times the weights have been updated.
++iter_;
SolverAction::Enum request = GetRequestedAction();
// Save a snapshot if needed.
if ((param_.snapshot()
&& iter_ % param_.snapshot() == 0
&& Caffe::root_solver()) ||
(request == SolverAction::SNAPSHOT)) {
Snapshot();
}
if (SolverAction::STOP == request) {
requested_early_exit_ = true;
// Break out of training loop.
break;
}
}
}
template <typename Dtype>
void Solver<Dtype>::Solve(const char* resume_file) {
CHECK(Caffe::root_solver());
LOG(INFO) << "Solving " << net_->name();
LOG(INFO) << "Learning Rate Policy: " << param_.lr_policy();
// Initialize to false every time we start solving.
requested_early_exit_ = false;
if (resume_file) {
LOG(INFO) << "Restoring previous solver status from " << resume_file;
Restore(resume_file);
}
// For a network that is trained by the solver, no bottom or top vecs
// should be given, and we will just provide dummy vecs.
int start_iter = iter_;
Step(param_.max_iter() - iter_);
// If we haven't already, save a snapshot after optimization, unless
// overridden by setting snapshot_after_train := false
if (param_.snapshot_after_train()
&& (!param_.snapshot() || iter_ % param_.snapshot() != 0)) {
Snapshot();
}
if (requested_early_exit_) {
LOG(INFO) << "Optimization stopped early.";
return;
}
// After the optimization is done, run an additional train and test pass to
// display the train and test loss/outputs if appropriate (based on the
// display and test_interval settings, respectively). Unlike in the rest of
// training, for the train net we only run a forward pass as we've already
// updated the parameters "max_iter" times -- this final pass is only done to
// display the loss, which is computed in the forward pass.
if (param_.display() && iter_ % param_.display() == 0) {
int average_loss = this->param_.average_loss();
Dtype loss;
net_->Forward(&loss);
UpdateSmoothedLoss(loss, start_iter, average_loss);
LOG(INFO) << "Iteration " << iter_ << ", loss = " << smoothed_loss_;
}
if (param_.test_interval() && iter_ % param_.test_interval() == 0) {
TestAll();
}
LOG(INFO) << "Optimization Done.";
}
template <typename Dtype>
void Solver<Dtype>::TestAll() {
for (int test_net_id = 0;
test_net_id < test_nets_.size() && !requested_early_exit_;
++test_net_id) {
Test(test_net_id);
}
}
template <typename Dtype>
void Solver<Dtype>::Test(const int test_net_id) {
CHECK(Caffe::root_solver());
LOG(INFO) << "Iteration " << iter_
<< ", Testing net (#" << test_net_id << ")";
CHECK_NOTNULL(test_nets_[test_net_id].get())->
ShareTrainedLayersWith(net_.get());
vector<Dtype> test_score;
vector<int> test_score_output_id;
const shared_ptr<Net<Dtype> >& test_net = test_nets_[test_net_id];
Dtype loss = 0;
for (int i = 0; i < param_.test_iter(test_net_id); ++i) {
SolverAction::Enum request = GetRequestedAction();
// Check to see if stoppage of testing/training has been requested.
while (request != SolverAction::NONE) {
if (SolverAction::SNAPSHOT == request) {
Snapshot();
} else if (SolverAction::STOP == request) {
requested_early_exit_ = true;
}
request = GetRequestedAction();
}
if (requested_early_exit_) {
// break out of test loop.
break;
}
Dtype iter_loss;
const vector<Blob<Dtype>*>& result =
test_net->Forward(&iter_loss);
if (param_.test_compute_loss()) {
loss += iter_loss;
}
if (i == 0) {
for (int j = 0; j < result.size(); ++j) {
const Dtype* result_vec = result[j]->cpu_data();
for (int k = 0; k < result[j]->count(); ++k) {
test_score.push_back(result_vec[k]);
test_score_output_id.push_back(j);
}
}
} else {
int idx = 0;
for (int j = 0; j < result.size(); ++j) {
const Dtype* result_vec = result[j]->cpu_data();
for (int k = 0; k < result[j]->count(); ++k) {
test_score[idx++] += result_vec[k];
}
}
}
}
if (requested_early_exit_) {
LOG(INFO) << "Test interrupted.";
return;
}
if (param_.test_compute_loss()) {
loss /= param_.test_iter(test_net_id);
LOG(INFO) << "Test loss: " << loss;
}
for (int i = 0; i < test_score.size(); ++i) {
const int output_blob_index =
test_net->output_blob_indices()[test_score_output_id[i]];
const string& output_name = test_net->blob_names()[output_blob_index];
const Dtype loss_weight = test_net->blob_loss_weights()[output_blob_index];
ostringstream loss_msg_stream;
const Dtype mean_score = test_score[i] / param_.test_iter(test_net_id);
if (loss_weight) {
loss_msg_stream << " (* " << loss_weight
<< " = " << loss_weight * mean_score << " loss)";
}
if( output_name=="labelB" || output_name=="labelC" ) continue;
LOG(INFO) << " Test net output #" << i << ": " << output_name << " = "
<< mean_score << loss_msg_stream.str();
}
}
template <typename Dtype>
void Solver<Dtype>::Snapshot() {
CHECK(Caffe::root_solver());
string model_filename;
switch (param_.snapshot_format()) {
case caffe::SolverParameter_SnapshotFormat_BINARYPROTO:
model_filename = SnapshotToBinaryProto();
break;
case caffe::SolverParameter_SnapshotFormat_HDF5:
model_filename = SnapshotToHDF5();
break;
default:
LOG(FATAL) << "Unsupported snapshot format.";
}
SnapshotSolverState(model_filename);
}
template <typename Dtype>
void Solver<Dtype>::CheckSnapshotWritePermissions() {
if (Caffe::root_solver() && param_.snapshot()) {
CHECK(param_.has_snapshot_prefix())
<< "In solver params, snapshot is specified but snapshot_prefix is not";
string probe_filename = SnapshotFilename(".tempfile");
std::ofstream probe_ofs(probe_filename.c_str());
if (probe_ofs.good()) {
probe_ofs.close();
std::remove(probe_filename.c_str());
} else {
LOG(FATAL) << "Cannot write to snapshot prefix '"
<< param_.snapshot_prefix() << "'. Make sure "
<< "that the directory exists and is writeable.";
}
}
}
template <typename Dtype>
string Solver<Dtype>::SnapshotFilename(const string extension) {
return param_.snapshot_prefix() + "_iter_" + caffe::format_int(iter_)
+ extension;
}
template <typename Dtype>
string Solver<Dtype>::SnapshotToBinaryProto() {
string model_filename = SnapshotFilename(".caffemodel");
LOG(INFO) << "Snapshotting to binary proto file " << model_filename;
NetParameter net_param;
net_->ToProto(&net_param, param_.snapshot_diff());
WriteProtoToBinaryFile(net_param, model_filename);
return model_filename;
}
template <typename Dtype>
string Solver<Dtype>::SnapshotToHDF5() {
string model_filename = SnapshotFilename(".caffemodel.h5");
LOG(INFO) << "Snapshotting to HDF5 file " << model_filename;
net_->ToHDF5(model_filename, param_.snapshot_diff());
return model_filename;
}
template <typename Dtype>
void Solver<Dtype>::Restore(const char* state_file) {
CHECK(Caffe::root_solver());
string state_filename(state_file);
if (state_filename.size() >= 3 &&
state_filename.compare(state_filename.size() - 3, 3, ".h5") == 0) {
RestoreSolverStateFromHDF5(state_filename);
} else {
RestoreSolverStateFromBinaryProto(state_filename);
}
}
template <typename Dtype>
void Solver<Dtype>::UpdateSmoothedLoss(Dtype loss, int start_iter,
int average_loss) {
if (losses_.size() < average_loss) {
losses_.push_back(loss);
int size = losses_.size();
smoothed_loss_ = (smoothed_loss_ * (size - 1) + loss) / size;
} else {
int idx = (iter_ - start_iter) % average_loss;
smoothed_loss_ += (loss - losses_[idx]) / average_loss;
losses_[idx] = loss;
}
}
INSTANTIATE_CLASS(Solver);
} // namespace caffe
| [
"[email protected]"
] | |
f0961fba2b2f33a4f10cdf554d582e8a6e2f1552 | 71400d7e6ff96f65aeedc177dd71647d21cc28cb | /main.cpp | 2e4f71cb31e2dbcedd61cb949e58784dfaebcdee | [] | no_license | huynhthientung/ag_device_manager | 6abc4dc272bdddc613ad0b4ea29877cf6c365d89 | 9ce7095d77b685a40d29a1ac33e85c9415561f5e | refs/heads/master | 2022-08-02T17:01:52.254596 | 2020-06-04T04:25:55 | 2020-06-04T04:25:55 | 269,259,308 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,749 | cpp | /****************************************************************************
**
** Copyright (C) 2012 Denis Shienkov <[email protected]>
** Copyright (C) 2012 Laszlo Papp <[email protected]>
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtSerialPort module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "mainwindow.h"
#include <QApplication>
#include <qtdmxlib.h>
DMXRDM *dmxrdm;
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
| [
"[email protected]"
] | |
f32a67ff49fc16b9c84375293ed28e8f1936760e | fc3a2fe0d6737450c17383212d10ce9f1f1d12c0 | /src/saveload/saveloadhouse.cpp | 070d77a53c6a252042514ff495eec41958775916 | [] | no_license | SkrilaxCZ/Dune2 | d717e271ebc47ff7ad125c4cc6c9a72fa42ea376 | 84b270888ce9d0b0e348e53f6814f6e1b8ac3fe4 | refs/heads/master | 2021-01-17T08:39:06.023631 | 2016-08-13T04:06:54 | 2016-08-13T04:06:54 | 63,850,206 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,692 | cpp | /** @file src/saveload/house.c Load/save routines for House. */
#include <string.h>
#include "saveload.h"
#include "../house.h"
#include "../pool/housepool.h"
#include "../pool/pool.h"
static const SaveLoadDesc s_saveHouse[] = {
SLD_ENTRY2(House, SLDT_UINT16, index, SLDT_UINT8),
SLD_ENTRY (House, SLDT_UINT16, harvestersIncoming),
SLD_ENTRY2(House, SLDT_UINT16, flags, SLDT_HOUSEFLAGS),
SLD_ENTRY (House, SLDT_UINT16, brain),
SLD_ENTRY (House, SLDT_UINT16, unitCount),
SLD_ENTRY (House, SLDT_UINT16, unitCountMax),
SLD_ENTRY (House, SLDT_UINT16, unitCountEnemy),
SLD_ENTRY (House, SLDT_UINT16, unitCountAllied),
SLD_ENTRY (House, SLDT_UINT32, structuresBuilt),
SLD_ENTRY (House, SLDT_UINT16, credits),
SLD_ENTRY (House, SLDT_UINT16, creditsStorage),
SLD_ENTRY (House, SLDT_UINT16, powerProduction),
SLD_ENTRY (House, SLDT_UINT16, powerUsage),
SLD_ENTRY (House, SLDT_UINT16, windtrapCount),
SLD_ENTRY (House, SLDT_UINT16, creditsQuota),
SLD_ENTRY (House, SLDT_UINT16, palacePosition.x),
SLD_ENTRY (House, SLDT_UINT16, palacePosition.y),
SLD_ENTRY (House, SLDT_UINT16, timerUnitAttack),
SLD_ENTRY (House, SLDT_UINT16, timerSandwormAttack),
SLD_ENTRY (House, SLDT_UINT16, timerStructureAttack),
SLD_ENTRY (House, SLDT_UINT16, starportTimeLeft),
SLD_ENTRY (House, SLDT_UINT16, starportLinkedID),
SLD_ARRAY (House, SLDT_UINT16, ai_structureRebuild, 10),
SLD_END
};
/**
* Load all Houses from a file.
* @param fp The file to load from.
* @param length The length of the data chunk.
* @return True if and only if all bytes were read successful.
*/
bool House_Load(FILE* fp, uint32 length)
{
while (length > 0)
{
House* h;
House hl;
memset(&hl, 0, sizeof(hl));
/* Read the next House from disk */
if (!SaveLoad_Load(s_saveHouse, fp, &hl))
return false;
length -= SaveLoad_GetLength(s_saveHouse);
/* Create the House in the pool */
h = House_Allocate(hl.index);
if (h == NULL)
return false;
/* Copy over the data */
*h = hl;
/* See if it is a human house */
if (h->flags.human)
{
g_playerHouseID = (HouseType)h->index;
g_playerHouse = h;
if (h->starportLinkedID != 0xFFFF && h->starportTimeLeft == 0)
h->starportTimeLeft = 1;
}
}
if (length != 0)
return false;
return true;
}
/**
* Save all Houses to a file.
* @param fp The file to save to.
* @return True if and only if all bytes were written successful.
*/
bool House_Save(FILE* fp)
{
PoolFindStruct find;
find.houseID = HOUSE_INVALID;
find.type = 0xFFFF;
find.index = 0xFFFF;
while (true)
{
House* h;
h = House_Find(&find);
if (h == NULL)
break;
if (!SaveLoad_Save(s_saveHouse, fp, h))
return false;
}
return true;
}
| [
"[email protected]"
] | |
a00f2ae1ab1a8425629f2826b2ea72a24eb73116 | da98782e6e34278ab4f139855d959c6512197de4 | /algorithm/code/graph/Hungarian_algorithm.cpp | 2947af5ab3892f705e5607ad07942fc180dd0cc2 | [] | no_license | SiuTo/ModelCode | 7e1d8a35ea490f419f15a7ef591d9fdf18bd7c9f | 26e74042b099cf90e1446e6ef52d9b07ed2aa1cb | refs/heads/master | 2021-01-18T23:03:41.317414 | 2016-12-05T08:50:00 | 2016-12-05T08:50:00 | 31,450,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 607 | cpp | #include <cstdio>
#include <cstring>
const int Maxn=201;
bool u[Maxn];
int g[Maxn],link[Maxn],x[Maxn*Maxn],next[Maxn*Maxn];
bool dfs(int v)
{
for (int p=g[v]; p; p=next[p])
if (!u[x[p]])
{
u[x[p]]=true;
if (!link[x[p]] || dfs(link[x[p]]))
{
link[x[p]]=v; return true;
}
}
return false;
}
int main()
{
int n,i,j,col,tot=0;
scanf("%d",&n);
for (i=1; i<=n; ++i)
for (j=1; j<=n; ++j)
{
scanf("%d",&col);
if (col)
x[++tot]=j, next[tot]=g[i], g[i]=tot;
}
int m=0;
for (i=1; i<=n; ++i)
{
memset(u,0,sizeof u);
if (dfs(i)) ++m;
}
printf("%d\n",m);
return 0;
}
| [
"[email protected]"
] | |
45efebb9a31a059cbe5738b218a782b5fcf72026 | f7b9fdb07697c645158325624eb937d636ac37b8 | /CometWriteTxt.cpp | 4a20c50951b9a43354b9708d1f5c8377ffbb6dfc | [
"Zlib",
"MIT"
] | permissive | DarrenEnos/CometSearch | 9079a52f9b70ef0cbe9cb4773b8507642ead3005 | c25fcff2f52e025aae7fb023c156dc075b543564 | refs/heads/master | 2020-04-23T23:09:08.724586 | 2019-02-19T20:05:27 | 2019-02-19T20:05:27 | 171,525,833 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,164 | cpp | /*
Copyright 2012 University of Washington
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 "Common.h"
#include "CometDataInternal.h"
#include "CometMassSpecUtils.h"
#include "CometWriteTxt.h"
CometWriteTxt::CometWriteTxt()
{
}
CometWriteTxt::~CometWriteTxt()
{
}
void CometWriteTxt::WriteTxt(FILE *fpout,
FILE *fpoutd)
{
int i;
// Print results.
for (i=0; i<(int)g_pvQuery.size(); i++)
PrintResults(i, 0, fpout);
// Print out the separate decoy hits.
if (g_staticParams.options.iDecoySearch == 2)
{
for (i=0; i<(int)g_pvQuery.size(); i++)
PrintResults(i, 1, fpoutd);
}
}
void CometWriteTxt::PrintTxtHeader(FILE *fpout)
{
#ifdef CRUX
fprintf(fpout, "scan\t");
fprintf(fpout, "charge\t");
fprintf(fpout, "spectrum precursor m/z\t");
fprintf(fpout, "spectrum neutral mass\t");
fprintf(fpout, "peptide mass\t");
fprintf(fpout, "delta_cn\t");
fprintf(fpout, "sp score\t");
fprintf(fpout, "sp rank\t");
fprintf(fpout, "xcorr score\t");
fprintf(fpout, "xcorr rank\t");
fprintf(fpout, "b/y ions matched\t");
fprintf(fpout, "b/y ions total\t");
fprintf(fpout, "total matches/spectrum\t");
fprintf(fpout, "sequence\t");
fprintf(fpout, "modified sequence\t");
fprintf(fpout, "modifications\t");
fprintf(fpout, "protein id\t");
fprintf(fpout, "flanking aa\t");
fprintf(fpout, "e-value\n");
#else
fprintf(fpout, "CometVersion %s\t", comet_version);
fprintf(fpout, "%s\t", g_staticParams.inputFile.szBaseName);
fprintf(fpout, "%s\t", g_staticParams.szDate);
fprintf(fpout, "%s\n", g_staticParams.databaseInfo.szDatabase);
fprintf(fpout, "scan\t");
fprintf(fpout, "num\t");
fprintf(fpout, "charge\t");
fprintf(fpout, "exp_neutral_mass\t");
fprintf(fpout, "calc_neutral_mass\t");
fprintf(fpout, "e-value\t");
fprintf(fpout, "xcorr\t");
fprintf(fpout, "delta_cn\t");
fprintf(fpout, "sp_score\t");
fprintf(fpout, "ions_matched\t");
fprintf(fpout, "ions_total\t");
fprintf(fpout, "plain_peptide\t");
fprintf(fpout, "peptide\t");
fprintf(fpout, "modifications\t");
fprintf(fpout, "prev_aa\t");
fprintf(fpout, "next_aa\t");
fprintf(fpout, "protein\t");
fprintf(fpout, "duplicate_protein_count\n");
#endif
}
#ifdef CRUX
void CometWriteTxt::PrintResults(int iWhichQuery,
bool bDecoy,
FILE *fpout)
{
if ((!bDecoy && g_pvQuery.at(iWhichQuery)->_pResults[0].fXcorr > XCORR_CUTOFF)
|| (bDecoy && g_pvQuery.at(iWhichQuery)->_pDecoys[0].fXcorr > XCORR_CUTOFF))
{
Query* pQuery = g_pvQuery.at(iWhichQuery);
int charge = pQuery->_spectrumInfoInternal.iChargeState;
double spectrum_neutral_mass = pQuery->_pepMassInfo.dExpPepMass - PROTON_MASS;
double spectrum_mz = (spectrum_neutral_mass + charge*PROTON_MASS) / (double)charge;
Results *pOutput;
unsigned long num_matches;
if (bDecoy)
{
pOutput = pQuery->_pDecoys;
num_matches = pQuery->_uliNumMatchedDecoyPeptides;
}
else
{
pOutput = pQuery->_pResults;
num_matches = pQuery->_uliNumMatchedPeptides;
}
size_t iNumPrintLines = min((unsigned long)g_staticParams.options.iNumPeptideOutputLines, num_matches);
for (size_t iWhichResult=0; iWhichResult<iNumPrintLines; iWhichResult++)
{
if (pOutput[iWhichResult].fXcorr <= XCORR_CUTOFF)
continue;
double dDeltaCn;
dDeltaCn = 1.0;
if (pOutput[0].fXcorr > 0.0
&& iWhichResult+1 < (size_t)g_staticParams.options.iNumStored
&& pOutput[iWhichResult+1].fXcorr >= 0.0)
{
dDeltaCn = 1.0 - pOutput[iWhichResult+1].fXcorr/pOutput[0].fXcorr;
}
fprintf(fpout, "%d\t", pQuery->_spectrumInfoInternal.iScanNumber);
fprintf(fpout, "%d\t", pQuery->_spectrumInfoInternal.iChargeState);
fprintf(fpout, "%0.6f\t", spectrum_mz);
fprintf(fpout, "%0.6f\t", spectrum_neutral_mass);
fprintf(fpout, "%0.6f\t", pOutput[iWhichResult].dPepMass - PROTON_MASS);
fprintf(fpout, "%0.4f\t", dDeltaCn);
fprintf(fpout, "%0.4f\t", pOutput[iWhichResult].fScoreSp);
fprintf(fpout, "%d\t", pOutput[iWhichResult].iRankSp);
fprintf(fpout, "%0.4f\t", pOutput[iWhichResult].fXcorr);
fprintf(fpout, "%lu\t", iWhichResult + 1); // assuming want index starting at 1
fprintf(fpout, "%d\t", pOutput[iWhichResult].iMatchedIons);
fprintf(fpout, "%d\t", pOutput[iWhichResult].iTotalIons);
fprintf(fpout, "%lu\t", num_matches);
// plain peptide
fprintf(fpout, "%s\t", pOutput[iWhichResult].szPeptide);
// modified peptide
fprintf(fpout, "%c.", pOutput[iWhichResult].szPrevNextAA[0]);
bool bNterm = false;
bool bCterm = false;
double dNterm = 0.0;
double dCterm = 0.0;
// See if n-term mod (static and/or variable) needs to be reported
if (pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide] > 0
|| !isEqual(g_staticParams.staticModifications.dAddNterminusPeptide, 0.0)
|| (pOutput[iWhichResult].szPrevNextAA[0]=='-'
&& !isEqual(g_staticParams.staticModifications.dAddNterminusProtein, 0.0)) )
{
bNterm = true;
// static peptide n-term mod already accounted for in dNtermProton
dNterm = g_staticParams.precalcMasses.dNtermProton - PROTON_MASS + g_staticParams.massUtility.pdAAMassFragment[(int)'h'];
if (pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide] > 0)
dNterm += g_staticParams.variableModParameters.varModList[(int)pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide]-1].dVarModMass;
if (pOutput[iWhichResult].szPrevNextAA[0]=='-' && !isEqual(g_staticParams.staticModifications.dAddNterminusProtein, 0.0))
dNterm += g_staticParams.staticModifications.dAddNterminusProtein;
}
// See if c-term mod (static and/or variable) needs to be reported
if (pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1] > 0
|| !isEqual(g_staticParams.staticModifications.dAddCterminusPeptide, 0.0)
|| (pOutput[iWhichResult].szPrevNextAA[1]=='-'
&& !isEqual(g_staticParams.staticModifications.dAddCterminusProtein, 0.0)) )
{
bCterm = true;
// static peptide c-term mod already accounted for in dCtermOH2Proton
dCterm = g_staticParams.precalcMasses.dCtermOH2Proton - PROTON_MASS - g_staticParams.massUtility.pdAAMassFragment[(int)'h'];
if (pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1] > 0)
dCterm += g_staticParams.variableModParameters.varModList[(int)pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1]-1].dVarModMass;
if (pOutput[iWhichResult].szPrevNextAA[1]=='-' && !isEqual(g_staticParams.staticModifications.dAddCterminusProtein, 0.0))
dCterm += g_staticParams.staticModifications.dAddCterminusProtein;
}
// generate modified_peptide string
if (bNterm)
fprintf(fpout, "n[%0.0f]", dNterm);
for (int i=0; i<pOutput[iWhichResult].iLenPeptide; i++)
{
fprintf(fpout, "%c", pOutput[iWhichResult].szPeptide[i]);
if (!isEqual(g_staticParams.staticModifications.pdStaticMods[(int)pOutput[iWhichResult].szPeptide[i]], 0.0)
|| pOutput[iWhichResult].pcVarModSites[i] > 0)
{
fprintf(fpout, "[%0.0f]",
g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[i]-1].dVarModMass
+ g_staticParams.massUtility.pdAAMassFragment[(int)pOutput[iWhichResult].szPeptide[i]]);
}
}
if (bCterm)
fprintf(fpout, "c[%0.0f]", dCterm);
fprintf(fpout, ".%c\t", pOutput[iWhichResult].szPrevNextAA[1]);
// prints modification encoding
PrintModifications(fpout, pOutput, iWhichResult);
// Print protein reference/accession.
fprintf(fpout, "%s\t", pOutput[iWhichResult].szProtein);
// Cleavage type
fprintf(fpout, "%c%c\t", pOutput[iWhichResult].szPrevNextAA[0], pOutput[iWhichResult].szPrevNextAA[1]);
// e-value
fprintf(fpout, "%0.2E\n", pOutput[iWhichResult].dExpect);
}
}
}
#else
void CometWriteTxt::PrintResults(int iWhichQuery,
bool bDecoy,
FILE *fpout)
{
if ((!bDecoy && g_pvQuery.at(iWhichQuery)->_pResults[0].fXcorr > XCORR_CUTOFF)
|| (bDecoy && g_pvQuery.at(iWhichQuery)->_pDecoys[0].fXcorr > XCORR_CUTOFF))
{
Query* pQuery = g_pvQuery.at(iWhichQuery);
Results *pOutput;
unsigned long num_matches;
if (bDecoy)
{
pOutput = pQuery->_pDecoys;
num_matches = pQuery->_uliNumMatchedDecoyPeptides;
}
else
{
pOutput = pQuery->_pResults;
num_matches = pQuery->_uliNumMatchedPeptides;
}
int iNumPrintLines = min((unsigned long)g_staticParams.options.iNumPeptideOutputLines, num_matches);
int iMinLength = 999;
for (int i=0; i<iNumPrintLines; i++)
{
int iLen = (int)strlen(pOutput[i].szPeptide);
if (iLen == 0)
break;
if (iLen < iMinLength)
iMinLength = iLen;
}
int iRankXcorr = 1;
for (int iWhichResult=0; iWhichResult<iNumPrintLines; iWhichResult++)
{
int j;
bool bNoDeltaCnYet = true;
double dDeltaCn = 1.0;
if (pOutput[iWhichResult].fXcorr <= XCORR_CUTOFF)
continue;
// go one past iNumPrintLines to calculate deltaCn value
for (j=iWhichResult+1; j<iNumPrintLines+1; j++)
{
if (j<g_staticParams.options.iNumStored)
{
// very poor way of calculating peptide similarity but it's what we have for now
int iDiffCt = 0;
for (int k=0; k<iMinLength; k++)
{
// I-L and Q-K are same for purposes here
if (pOutput[iWhichResult].szPeptide[k] != pOutput[j].szPeptide[k])
{
if (!((pOutput[0].szPeptide[k] == 'K' || pOutput[0].szPeptide[k] == 'Q')
&& (pOutput[j].szPeptide[k] == 'K' || pOutput[j].szPeptide[k] == 'Q'))
&& !((pOutput[0].szPeptide[k] == 'I' || pOutput[0].szPeptide[k] == 'L')
&& (pOutput[j].szPeptide[k] == 'I' || pOutput[j].szPeptide[k] == 'L')))
{
iDiffCt++;
}
}
}
// calculate deltaCn only if sequences are less than 0.75 similar
if ( ((double) (iMinLength - iDiffCt)/iMinLength) < 0.75)
{
if (pOutput[0].fXcorr > 0.0 && pOutput[j].fXcorr >= 0.0)
dDeltaCn = 1.0 - pOutput[j].fXcorr/pOutput[0].fXcorr;
else if (pOutput[0].fXcorr > 0.0 && pOutput[j].fXcorr < 0.0)
dDeltaCn = 1.0;
else
dDeltaCn = 0.0;
bNoDeltaCnYet = 0;
break;
}
}
}
if (iWhichResult > 0 && !isEqual(pOutput[iWhichResult].fXcorr, pOutput[iWhichResult-1].fXcorr))
iRankXcorr++;
fprintf(fpout, "%d\t", pQuery->_spectrumInfoInternal.iScanNumber);
fprintf(fpout, "%d\t", iRankXcorr);
fprintf(fpout, "%d\t", pQuery->_spectrumInfoInternal.iChargeState);
fprintf(fpout, "%0.6f\t", pQuery->_pepMassInfo.dExpPepMass - PROTON_MASS);
fprintf(fpout, "%0.6f\t", pOutput[iWhichResult].dPepMass - PROTON_MASS);
fprintf(fpout, "%0.2E\t", pOutput[iWhichResult].dExpect);
fprintf(fpout, "%0.4f\t", pOutput[iWhichResult].fXcorr);
fprintf(fpout, "%0.4f\t", dDeltaCn);
fprintf(fpout, "%0.1f\t", pOutput[iWhichResult].fScoreSp);
fprintf(fpout, "%d\t", pOutput[iWhichResult].iMatchedIons);
fprintf(fpout, "%d\t", pOutput[iWhichResult].iTotalIons);
// plain peptide
fprintf(fpout, "%s\t", pOutput[iWhichResult].szPeptide);
// modified peptide
fprintf(fpout, "%c.", pOutput[iWhichResult].szPrevNextAA[0]);
bool bNterm = false;
bool bCterm = false;
double dNterm = 0.0;
double dCterm = 0.0;
// We're only reporting variable mod mass differences here
if (pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide] > 0)
{
bNterm = true;
dNterm = g_staticParams.variableModParameters.varModList[(int)pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide]-1].dVarModMass;
}
if (pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1] > 0)
{
bCterm = true;
dCterm = g_staticParams.variableModParameters.varModList[(int)pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1]-1].dVarModMass;
}
// generate modified_peptide string
if (bNterm)
fprintf(fpout, "n[%0.1f]", dNterm);
for (int i=0; i<pOutput[iWhichResult].iLenPeptide; i++)
{
fprintf(fpout, "%c", pOutput[iWhichResult].szPeptide[i]);
if (pOutput[iWhichResult].pcVarModSites[i] > 0)
{
fprintf(fpout, "[%0.1f]",
g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[i]-1].dVarModMass);
}
}
if (bCterm)
fprintf(fpout, "c[%0.1f]", dCterm);
fprintf(fpout, ".%c\t", pOutput[iWhichResult].szPrevNextAA[1]);
fprintf(fpout, "%c\t", pOutput[iWhichResult].szPrevNextAA[0]);
fprintf(fpout, "%c\t", pOutput[iWhichResult].szPrevNextAA[1]);
// Print protein reference/accession.
fprintf(fpout, "%s\t", pOutput[iWhichResult].szProtein);
fprintf(fpout, "%d", pOutput[iWhichResult].iDuplicateCount);
fprintf(fpout, "\n");
}
}
}
#endif
// <offset> [S|V] <value> [N|C|n|c|]
void CometWriteTxt::PrintModifications(FILE *fpout,
Results *pOutput,
int iWhichResult)
{
bool bFirst = true;
// static N-terminus protein
if (!isEqual(g_staticParams.staticModifications.dAddNterminusProtein, 0.0)
&& pOutput[iWhichResult].szPrevNextAA[0] == '-')
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "1_S_%0.6f_N", g_staticParams.staticModifications.dAddNterminusPeptide);
}
// static N-terminus peptide
if (!isEqual(g_staticParams.staticModifications.dAddNterminusPeptide, 0.0))
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "1_S_%0.6f_n", g_staticParams.staticModifications.dAddNterminusProtein);
}
// variable N-terminus peptide and protein
if (g_staticParams.variableModParameters.bVarModSearch
&& pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide] > 0)
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "1_V_%0.6f",
g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide]-1].dVarModMass);
if (g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide]-1].iVarModTermDistance == 0)
fprintf(fpout, "_N");
else
fprintf(fpout, "_n");
}
for (int i=0; i<pOutput[iWhichResult].iLenPeptide; i++)
{
// static modification
if (!isEqual(g_staticParams.staticModifications.pdStaticMods[(int)pOutput[iWhichResult].szPeptide[i]], 0.0))
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "%d_S_%0.6f",
i+1,
g_staticParams.staticModifications.pdStaticMods[(int)pOutput[iWhichResult].szPeptide[i]]);
}
// variable modification
if (g_staticParams.variableModParameters.bVarModSearch
&& !isEqual(g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[i]-1].dVarModMass, 0.0))
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "%d_V_%0.6f",
i+1,
g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[i]-1].dVarModMass);
}
}
// static C-terminus protein
if (!isEqual(g_staticParams.staticModifications.dAddCterminusProtein, 0.0)
&& pOutput[iWhichResult].szPrevNextAA[1] == '-')
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "1_S_%0.6f_C", g_staticParams.staticModifications.dAddCterminusProtein);
}
// static C-terminus peptide
if (!isEqual(g_staticParams.staticModifications.dAddCterminusPeptide, 0.0))
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "1_S_%0.6f_c", g_staticParams.staticModifications.dAddCterminusPeptide);
}
// variable C-terminus peptide and protein
if (g_staticParams.variableModParameters.bVarModSearch
&& pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1] > 0)
{
if (!bFirst)
fprintf(fpout, ", ");
else
bFirst=false;
fprintf(fpout, "%d_V_%0.6f",
pOutput[iWhichResult].iLenPeptide,
g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1]-1].dVarModMass);
if (g_staticParams.variableModParameters.varModList[pOutput[iWhichResult].pcVarModSites[pOutput[iWhichResult].iLenPeptide+1]-1].iVarModTermDistance == 0)
fprintf(fpout, "_C");
else
fprintf(fpout, "_c");
}
fprintf(fpout, "\t");
}
| [
"[email protected]"
] | |
db23b75ec4ca64922beec322dbfa48e581658c05 | 1fe81ba754c8e214220df9d29ba70e6c51492f32 | /PP3Prizma/main/main/pp3prizma.hpp | f42ce8f0571f361bb62712ffc9475e4a3d6feb5b | [] | no_license | sasaxopajic/OOP | db2d19ec9e7c21d0e7df771e5d7497bd6aaf4e42 | 2b9638c37c03f6e3d76767faf78f53d9ea448579 | refs/heads/master | 2022-12-01T13:32:50.924687 | 2020-08-19T15:38:06 | 2020-08-19T15:38:06 | 285,808,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 483 | hpp | #ifndef PP3PRIZMA_DEF
#define PP3PRIZMA_DEF
#include "jstrougao.hpp"
#include "pravougaonik.hpp"
class PP3Prizma {
private:
JSTrougao B;
Pravougaonik M;
public:
PP3Prizma(double aa = 1, double hh = 1) :B(aa), M(3 * aa, hh) {} // stranica baze, visina prizme
double getA() const {
return B.getA();
}
double getH() const {
return M.getB();
}
double getP() const {
return 2 * B.getP() + M.getP();
}
double getV() const {
return B.getP() * getH();
}
};
#endif | [
"[email protected]"
] | |
9852a209768b94e26f9b713943e2749d8270a844 | aade1e73011f72554e3bd7f13b6934386daf5313 | /Contest/Europe/NERC/FinalsOnsite-2020/G.cpp | 92b0b17c58ca5fb7ee632eacefb971523aa98e74 | [] | no_license | edisonhello/waynedisonitau123 | 3a57bc595cb6a17fc37154ed0ec246b145ab8b32 | 48658467ae94e60ef36cab51a36d784c4144b565 | refs/heads/master | 2022-09-21T04:24:11.154204 | 2022-09-18T15:23:47 | 2022-09-18T15:23:47 | 101,478,520 | 34 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 1,393 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin >> t;
while (t--) {
int n, k;
cin >> n >> k;
vector<int> p(n + 5);
vector<vector<int>> g(n + 5);
for (int i = 2; i <= n; ++i) {
cin >> p[i];
g[p[i]].push_back(i);
}
vector<int> dep(n + 5, 0);
auto dfs1 = [&](auto dfs1, int now) -> void {
for (int i : g[now]) {
dep[i] = dep[now] + 1;
dfs1(dfs1, i);
}
};
dfs1(dfs1, 1);
if (k == 1) {
cout << 0 << '\n';
cout << 1 << '\n';
continue;
}
int x = -1;
for (int i = 2; i <= n; ++i) {
if (dep[i] + 1 <= k && (x == -1 || dep[i] > dep[x])) x = i;
}
vector<int> tag(n + 5, 0);
for (int xx = x; xx != 1; xx = p[xx]) {
tag[xx] = 1;
}
int other = k - 1 - dep[x];
assert(other >= 0);
// cerr << "x = " << x << " other = " << other << endl;
vector<int> path;
auto dfs2 = [&] (auto dfs2, int now) -> void {
path.push_back(now);
for (int i : g[now]) {
if (tag[i]) continue;
if (other > 0) {
other--;
dfs2(dfs2, i);
path.push_back(now);
}
}
for (int i : g[now]) if (tag[i]) {
dfs2(dfs2, i);
}
};
dfs2(dfs2, 1);
cout << path.size() - 1 << '\n';
for (int i : path) cout << i << ' ';
cout << '\n';
}
}
| [
"[email protected]"
] | |
7e2586a81ff09412accc07ddddd27cf2eb3837c5 | d0eb4e64839ea850dae814641a510e134f7ede43 | /Pruebas_Termistor/Pruebas_Termistor.ino | 3db7ac70a79a5faba34c5cf319e218e640933c7b | [] | no_license | OscarAlvaradoM/Grafeno | 3eb9b8e80ea8396f152101c680b500086827dbdc | 0b6be0eb36e319b4fee8b4884e9e1f0512342cab | refs/heads/master | 2020-07-17T04:24:53.628124 | 2019-10-14T06:30:11 | 2019-10-14T06:30:11 | 194,043,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,029 | ino | //Se utilizaron los siguientes tutoriales para realizar este código, en especial el del segundo link.
//https://www.rinconingenieril.es/como-usar-un-termistor-ntc/
//http://www.circuitbasics.com/arduino-thermistor-temperature-sensor-tutorial/
int TermistorPin = A0; //Pin en donde leemos el voltaje proveniente del termistor.
int Vo; //Variable para el voltaje del termistor.
float R1 = 10000; //Resistencia que se está utilizando para el divisor de tensión.
float logR2, R2, T, Tc, Tf; //Variables utilizadas para que todo sea mas claro.
float c1 = 1.009249522e-03, c2 = 2.378405444e-04, c3 = 2.019202697e-07; //Coeficientes del termistor utilizado.
void setup() {
Serial.begin(9600);
}
void loop() {
Vo = analogRead(TermistorPin);
R2 = R1 * (1023.0 / (float)Vo - 1.0);
logR2 = log(R2);
T = (1.0 / (c1 + c2*logR2 + c3*logR2*logR2*logR2));
Tc = T - 273.15;
//Tf = (Tc * 9.0)/ 5.0 + 32.0;
Serial.print("Temperatura: ");
Serial.print(Tc);
Serial.println(" °C");
delay(500);
}
| [
"[email protected]"
] | |
ec9f680a452e78ff1a755136dc6fb0708ea6bd1c | 0b8d7c121a389448a52d4f7d4009ef82be8d0c73 | /LIB/src/sonic/util/String.cpp | dacc5347ccc2cdc09aaf3ba48fda3ab31125b72a | [] | no_license | FahJulian/RuntimeCodeReload | e9bed54edb5719c514de8ed67cb2bf9b38e6c863 | b602cea07d30b466f4ffda14c11106d10fdf9416 | refs/heads/master | 2023-03-28T01:15:42.112699 | 2021-03-31T12:08:51 | 2021-03-31T12:08:51 | 353,340,885 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,526 | cpp | #include "String.h"
#include <cmath>
#include <istream>
#include <charconv>
#include "sonic/Base.h"
#include "StaticArray.h"
namespace sonic
{
namespace
{
StaticArray<char, 8 * sizeof(long long)> STRING_CAST_BUFFER;
template<typename T>
String _floatToString(T value, bool scientific)
{
auto result = std::to_chars(STRING_CAST_BUFFER.begin(), STRING_CAST_BUFFER.end(),
value, scientific ? std::chars_format::scientific : std::chars_format::fixed, 2);
return String(STRING_CAST_BUFFER.begin(), result.ptr - STRING_CAST_BUFFER.begin());
}
template<typename T>
String _integerToString(T value, int base)
{
auto result = std::to_chars(STRING_CAST_BUFFER.begin(), STRING_CAST_BUFFER.end(), value, base);
return String(STRING_CAST_BUFFER.begin(), result.ptr - STRING_CAST_BUFFER.begin());
}
char _toLowerCase(char c)
{
return (c >= 'A' && c <= 'Z') ? c - 'A' + 'a' : c;
}
char _toUpperCase(char c)
{
return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
}
bool _equalsIgnoreCase(const char* c1, const char* c2, size_t len)
{
for (size_t i = 0; i < len; i++)
{
if (_toLowerCase(c1[i]) != _toLowerCase(c2[i]))
return false;
}
return true;
}
bool _isWhitespace(char c)
{
return c <= ' ';
}
} // namespace
String::String(const char* data)
: mSize(std::strlen(data)), mData(new char[mSize + 1])
{
std::memcpy(mData, data, mSize);
mData[mSize] = '\0';
}
String::String(const char* data, size_t size)
: mSize(size), mData(new char[mSize + 1])
{
if (data != nullptr)
std::memcpy(mData, data, mSize);
mData[mSize] = '\0';
}
String::String(size_t size)
: String(nullptr, size)
{
}
String::String(const String& other)
: mSize(other.mSize), mData(new char[mSize + 1])
{
std::memcpy(mData, other.mData, mSize);
mData[mSize] = '\0';
}
String::String(String&& other) noexcept
: mSize(other.mSize), mData(other.mData)
{
other.mSize = 0;
other.mData = nullptr;
}
String::~String()
{
delete[] mData;
}
String& String::operator=(const char* other)
{
size_t len = strlen(other);
if (mSize != len)
{
delete[] mData;
mData = new char[len + 1];
std::memcpy(mData, other, len + 1);
mSize = len;
}
else
{
std::memcpy(mData, other, len);
}
return *this;
}
String& String::operator=(const String& other)
{
if (this != &other)
{
mSize = other.mSize;
delete[] mData;
mData = new char[mSize + 1];
std::memcpy(mData, other.mData, mSize);
mData[mSize] = '\0';
}
return *this;
}
String& String::operator=(String&& other) noexcept
{
if (this != &other)
{
mSize = other.mSize;
delete[] mData;
mData = other.mData;
other.mSize = 0;
other.mData = nullptr;
}
return *this;
}
String& String::append(char c)
{
char* newData = new char[mSize + 2];
std::memcpy(newData, mData, mSize);
mSize++;
newData[mSize - 1] = c;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
return *this;
}
String& String::append(const String& string)
{
char* newData = new char[mSize + string.mSize + 1];
std::memcpy(newData, mData, mSize);
std::memcpy(newData + mSize, string.mData, string.mSize);
mSize += string.mSize;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
return *this;
}
String& String::append(const char* string)
{
size_t len = strlen(string);
char* newData = new char[mSize + len + 1];
std::memcpy(newData, mData, mSize);
std::memcpy(newData + mSize, string, len);
mSize += len;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
return *this;
}
String& String::insert(size_t index, char c)
{
SN_ASSERT(index <= mSize, "Index is out of bounds");
char* newData = new char[mSize + 2];
std::memcpy(newData, mData, index);
std::memcpy(newData + index + 1, mData + index, mSize - index);
mSize++;
newData[index] = c;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
return *this;
}
String& String::insert(size_t index, const String& string)
{
SN_ASSERT(index <= mSize, "Index is out of bounds");
char* newData = new char[mSize + string.mSize + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, string.mData, string.mSize);
std::memcpy(newData + index + string.mSize, mData + index, mSize - index);
mSize += string.mSize;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
return *this;
}
String& String::insert(size_t index, const char* string)
{
SN_ASSERT(index <= mSize, "Index is out of bounds");
size_t len = strlen(string);
char* newData = new char[mSize + len + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, string, len);
std::memcpy(newData + index + len, mData + index, mSize - index);
mSize += len;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
return *this;
}
void String::setSize(size_t size)
{
char* newData = new char[size + 1];
std::memcpy(newData, mData, mSize);
mSize = size;
newData[mSize] = '\0';
delete[] mData;
mData = newData;
}
bool String::equals(const String& other) const
{
return std::strcmp(mData, other.mData) == 0;
}
bool String::equals(const char* other) const
{
return std::strcmp(mData, other) == 0;
}
bool String::equalsIgnoreCase(const String& other) const
{
if (mSize != other.mSize)
return false;
for (size_t i = 0; i < mSize; i++)
{
if (_toLowerCase(mData[i]) != _toLowerCase(other.mData[i]))
return false;
}
return true;
}
bool String::equalsIgnoreCase(const char* other) const
{
if (mSize != strlen(other))
return false;
for (size_t i = 0; i < mSize; i++)
{
if (_toLowerCase(mData[i]) != _toLowerCase(other[i]))
return false;
}
return true;
}
bool String::startsWith(char c) const
{
if (isEmpty())
return false;
return mData[0] == c;
}
bool String::startsWith(const char* string) const
{
size_t len = strlen(string);
if (len > mSize)
return false;
return std::strncmp(mData, string, len) == 0;
}
bool String::startsWith(const String& string) const
{
if (string.mSize > mSize)
return false;
return std::strncmp(mData, string.mData, string.mSize) == 0;
}
bool String::startsWithIgnoreCase(char c) const
{
if (isEmpty())
return false;
return _toLowerCase(mData[0]) == _toLowerCase(c);
}
bool String::startsWithIgnoreCase(const char* string) const
{
size_t len = strlen(string);
if (len > mSize)
return false;
return _equalsIgnoreCase(mData, string, len);
}
bool String::startsWithIgnoreCase(const String& string) const
{
if (string.mSize > mSize)
return false;
return _equalsIgnoreCase(mData, string.mData, string.mSize);
}
bool String::endsWith(char c) const
{
if (isEmpty())
return false;
return mData[mSize - 1] == c;
}
bool String::endsWith(const char* string) const
{
size_t len = strlen(string);
if (len > mSize)
return false;
return std::strncmp(mData + mSize - len, string, len) == 0;
}
bool String::endsWith(const String& string) const
{
if (string.mSize > mSize)
return false;
return std::strncmp(mData + mSize - string.mSize, string.mData, string.mSize) == 0;
}
bool String::endsWithIgnoreCase(char c) const
{
if (isEmpty())
return false;
return _toLowerCase(mData[mSize - 1]) == _toLowerCase(c);
}
bool String::endsWithIgnoreCase(const char* string) const
{
size_t len = strlen(string);
if (len > mSize)
return false;
return _equalsIgnoreCase(mData + mSize - len, string, len);
}
bool String::endsWithIgnoreCase(const String& string) const
{
if (string.mSize > mSize)
return false;
return _equalsIgnoreCase(mData + mSize - string.mSize, string.mData, string.mSize);
}
bool String::contains(char c) const
{
return findFirstOf(c) != mSize;
}
bool String::contains(const String& string) const
{
return findFirstOf(string) != mSize;
}
bool String::contains(const char* string) const
{
return findFirstOf(string) != mSize;
}
bool String::containsIgnoreCase(char c) const
{
return findFirstOfIgnoreCase(c) != mSize;
}
bool String::containsIgnoreCase(const String& string) const
{
return findFirstOfIgnoreCase(string) != mSize;
}
bool String::containsIgnoreCase(const char* string) const
{
return findFirstOfIgnoreCase(string) != mSize;
}
String& String::replace(size_t beginIndex, size_t endIndex, char c)
{
SN_ASSERT(endIndex > beginIndex, "endIndex must be > beginIndex");
int deltaLen = static_cast<int>(1 - (endIndex - beginIndex));
if (deltaLen != 0)
{
char* newData = new char[mSize + 1 + deltaLen];
std::memcpy(newData, mData, beginIndex);
std::memcpy(newData + beginIndex + 1, mData + endIndex, mSize - endIndex);
newData[beginIndex] = c;
newData[mSize += deltaLen] = '0';
delete[] mData;
mData = newData;
}
else
{
mData[beginIndex] = c;
}
return *this;
}
String& String::replace(size_t beginIndex, size_t endIndex, const char* string)
{
SN_ASSERT(endIndex > beginIndex, "endIndex must be > beginIndex");
size_t len = std::strlen(string);
int deltaLen = static_cast<int>(len - (endIndex - beginIndex));
if (deltaLen != 0)
{
char* newData = new char[mSize + 1 + deltaLen];
std::memcpy(newData, mData, beginIndex);
std::memcpy(newData + beginIndex + len, mData + endIndex, mSize - endIndex);
std::memcpy(newData + beginIndex, string, len);
newData[mSize += deltaLen] = '0';
delete[] mData;
mData = newData;
}
else
{
std::memcpy(mData + beginIndex, string, len);
}
return *this;
}
String& String::replace(size_t beginIndex, size_t endIndex, const String& string)
{
SN_ASSERT(endIndex > beginIndex, "endIndex must be > beginIndex");
int deltaLen = static_cast<int>(string.mSize - (endIndex - beginIndex));
if (deltaLen != 0)
{
char* newData = new char[mSize + 1 + deltaLen];
std::memcpy(newData, mData, beginIndex);
std::memcpy(newData + beginIndex + string.mSize, mData + endIndex, mSize - endIndex);
std::memcpy(newData + beginIndex, string.mData, string.mSize);
newData[mSize += deltaLen] = '0';
delete[] mData;
mData = newData;
}
else
{
std::memcpy(mData + beginIndex, string.mData, string.mSize);
}
return *this;
}
String& String::replaceAll(char oldChar, char newChar, size_t startIndex)
{
bool atLeastOneReplacement = false;
while ((startIndex = _replaceFirst(oldChar, newChar, startIndex)) != mSize)
atLeastOneReplacement = true;
return *this;
}
String& String::replaceAll(const char* oldString, const char* newString, size_t startIndex)
{
SN_ASSERT(strlen(oldString) == strlen(newString), "replaceAll can only replace segments of equal size");
bool atLeastOneReplacement = false;
size_t index = 0;
while ((index = _replaceFirst(oldString, newString, index)) != mSize)
atLeastOneReplacement = true;
return *this;
}
String& String::replaceAll(const String& oldString, const String& newString, size_t startIndex)
{
SN_ASSERT(oldString.mSize == newString.mSize, "replaceAll can only replace segments of equal size");
bool atLeastOneReplacement = false;
while ((startIndex = _replaceFirst(oldString, newString, startIndex)) != mSize)
atLeastOneReplacement = true;
return *this;
}
String& String::replaceAllIgnoreCase(char oldChar, char newChar, size_t startIndex)
{
bool atLeastOneReplacement = false;
while ((startIndex = _replaceFirstIgnoreCase(oldChar, newChar, startIndex)) != mSize)
atLeastOneReplacement = true;
return *this;
}
String& String::replaceAllIgnoreCase(const char* oldString, const char* newString, size_t startIndex)
{
SN_ASSERT(strlen(oldString) == strlen(newString), "replaceAllIgnoreCase can only replace segments of equal size");
bool atLeastOneReplacement = false;
while ((startIndex = _replaceFirstIgnoreCase(oldString, newString, startIndex)) != mSize)
atLeastOneReplacement = true;
return *this;
}
String& String::replaceAllIgnoreCase(const String& oldString, const String& newString, size_t startIndex)
{
SN_ASSERT(oldString.mSize == newString.mSize, "replaceAllIgnoreCase can only replace segments of equal size");
bool atLeastOneReplacement = false;
while ((startIndex = _replaceFirstIgnoreCase(oldString, newString, startIndex)) != mSize)
atLeastOneReplacement = true;
return *this;
}
String& String::replaceFirst(char oldChar, char newChar, size_t startIndex)
{
_replaceFirst(oldChar, newChar, startIndex);
return *this;
}
String& String::replaceFirst(const char* oldString, const char* newString, size_t startIndex)
{
_replaceFirst(oldString, newString, startIndex);
return *this;
}
String& String::replaceFirst(const String& oldString, const String& newString, size_t startIndex)
{
_replaceFirst(oldString, newString, startIndex);
return *this;
}
String& String::replaceFirstIgnoreCase(char oldChar, char newChar, size_t startIndex)
{
_replaceFirstIgnoreCase(oldChar, newChar, startIndex);
return *this;
}
String& String::replaceFirstIgnoreCase(const char* oldString, const char* newString, size_t startIndex)
{
_replaceFirstIgnoreCase(oldString, newString, startIndex);
return *this;
}
String& String::replaceFirstIgnoreCase(const String& oldString, const String& newString, size_t startIndex)
{
_replaceFirstIgnoreCase(oldString, newString, startIndex);
return *this;
}
String& String::replaceLast(char oldChar, char newChar, size_t endIndex)
{
size_t index = findLastOf(oldChar, endIndex);
if (index != mSize)
mData[index] = newChar;
return *this;
}
String& String::replaceLast(const char* oldString, const char* newString, size_t endIndex)
{
size_t oldLen = strlen(oldString);
size_t newLen = strlen(newString);
size_t index = findLastOf(oldString, endIndex);
if (index == mSize)
return *this;
if (int deltaLen = static_cast<int>(newLen - oldLen);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString, newLen);
std::memcpy(newData + index + newLen, mData + index + oldLen, mSize - (index + oldLen));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString, newLen);
}
return *this;
}
String& String::replaceLast(const String& oldString, const String& newString, size_t endIndex)
{
size_t index = findLastOf(oldString, endIndex);
if (index == mSize)
return *this;
if (int deltaLen = static_cast<int>(newString.mSize - oldString.mSize);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString.mData, newString.mSize);
std::memcpy(newData + index + newString.mSize, mData + index + oldString.mSize, mSize - (index + oldString.mSize));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString.mData, newString.mSize);
}
return *this;
}
String& String::replaceLastIgnoreCase(char oldChar, char newChar, size_t endIndex)
{
size_t index = findLastOfIgnoreCase(oldChar, endIndex);
if (index != mSize)
mData[index] = newChar;
return *this;
}
String& String::replaceLastIgnoreCase(const char* oldString, const char* newString, size_t endIndex)
{
size_t oldLen = strlen(oldString);
size_t newLen = strlen(newString);
size_t index = findLastOfIgnoreCase(oldString, endIndex);
if (index == mSize)
return *this;
if (int deltaLen = static_cast<int>(newLen - oldLen);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString, newLen);
std::memcpy(newData + index + newLen, mData + index + oldLen, mSize - (index + oldLen));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString, newLen);
}
return *this;
}
String& String::replaceLastIgnoreCase(const String& oldString, const String& newString, size_t endIndex)
{
size_t index = findLastOfIgnoreCase(oldString, endIndex);
if (index == mSize)
return *this;
if (int deltaLen = static_cast<int>(newString.mSize - oldString.mSize);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString.mData, newString.mSize);
std::memcpy(newData + index + newString.mSize, mData + index + oldString.mSize, mSize - (index + oldString.mSize));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString.mData, newString.mSize);
}
return *this;
}
size_t String::findFirstOf(char c, size_t startIndex) const
{
if (isEmpty())
return mSize;
for (size_t i = startIndex; i < mSize; i++)
{
if (mData[i] == c)
return i;
}
return mSize;
}
size_t String::findFirstOf(const char* string, size_t startIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - len; i++)
{
if (strncmp(mData + i, string, len) == 0)
return i;
}
return mSize;
}
size_t String::findFirstOf(const String& string, size_t startIndex) const
{
if (string.mSize > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - string.mSize; i++)
{
if (strncmp(mData + i, string.mData, string.mSize) == 0)
return i;
}
return mSize;
}
size_t String::findFirstOfIgnoreCase(char c, size_t startIndex) const
{
if (isEmpty())
return mSize;
c = _toLowerCase(c);
for (size_t i = startIndex; i < mSize; i++)
{
if (_toLowerCase(mData[i]) == c)
return i;
}
return mSize;
}
size_t String::findFirstOfIgnoreCase(const char* string, size_t startIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - len; i++)
{
if (_equalsIgnoreCase(mData + i, string, len))
return i;
}
return mSize;
}
size_t String::findFirstOfIgnoreCase(const String& string, size_t startIndex) const
{
if (string.mSize > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - string.mSize; i++)
{
if (_equalsIgnoreCase(mData + i, string.mData, string.mSize))
return i;
}
return mSize;
}
size_t String::findLastOf(char c, size_t endIndex) const
{
if (isEmpty())
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - 1;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (mData[i - 1] == c)
return i - 1;
}
return mSize;
}
size_t String::findLastOf(const char* string, size_t endIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - len;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (strncmp(mData + i - 1, string, len) == 0)
return i - 1;
}
return mSize;
}
size_t String::findLastOf(const String& string, size_t endIndex) const
{
if (string.mSize > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - string.mSize;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (strncmp(mData + i - 1, string.mData, string.mSize) == 0)
return i - 1;
}
return mSize;
}
size_t String::findLastOfIgnoreCase(char c, size_t endIndex) const
{
if (isEmpty())
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - 1;
if (endIndex >= mSize)
return mSize;
c = _toLowerCase(c);
for (size_t i = endIndex + 1; i > 0; i--)
{
if (_toLowerCase(mData[i - 1]) == c)
return i - 1;
}
return mSize;
}
size_t String::findLastOfIgnoreCase(const char* string, size_t endIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - len;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (_equalsIgnoreCase(mData + i - 1, string, len))
return i - 1;
}
return mSize;
}
size_t String::findLastOfIgnoreCase(const String& string, size_t endIndex) const
{
if (string.mSize > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - string.mSize;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (_equalsIgnoreCase(mData + i - 1, string.mData, string.mSize))
return i - 1;
}
return mSize;
}
size_t String::findFirstNotOf(char c, size_t startIndex) const
{
if (isEmpty())
return mSize;
for (size_t i = startIndex; i < mSize; i++)
{
if (mData[i] != c)
return i;
}
return mSize;
}
size_t String::findFirstNotOf(const char* string, size_t startIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - len; i++)
{
if (strncmp(mData + i, string, len) != 0)
return i;
}
return mSize;
}
size_t String::findFirstNotOf(const String& string, size_t startIndex) const
{
if (string.mSize > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - string.mSize; i++)
{
if (strncmp(mData + i, string.mData, string.mSize) != 0)
return i;
}
return mSize;
}
size_t String::findFirstNotOfIgnoreCase(char c, size_t startIndex) const
{
if (isEmpty())
return mSize;
c = _toLowerCase(c);
for (size_t i = startIndex; i < mSize; i++)
{
if (_toLowerCase(mData[i]) != c)
return i;
}
return mSize;
}
size_t String::findFirstNotOfIgnoreCase(const char* string, size_t startIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - len; i++)
{
if (!_equalsIgnoreCase(mData + i, string, len))
return i;
}
return mSize;
}
size_t String::findFirstNotOfIgnoreCase(const String& string, size_t startIndex) const
{
if (string.mSize > mSize)
return mSize;
for (size_t i = startIndex; i <= mSize - string.mSize; i++)
{
if (!_equalsIgnoreCase(mData + i, string.mData, string.mSize))
return i;
}
return mSize;
}
size_t String::findLastNotOf(char c, size_t endIndex) const
{
if (isEmpty())
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - 1;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (mData[i - 1] != c)
return i - 1;
}
return mSize;
}
size_t String::findLastNotOf(const char* string, size_t endIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - len;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (strncmp(mData + i - 1, string, len) != 0)
return i - 1;
}
return mSize;
}
size_t String::findLastNotOf(const String& string, size_t endIndex) const
{
if (string.mSize > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - string.mSize;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (strncmp(mData + i - 1, string.mData, string.mSize) != 0)
return i - 1;
}
return mSize;
}
size_t String::findLastNotOfIgnoreCase(char c, size_t endIndex) const
{
if (isEmpty())
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - 1;
if (endIndex >= mSize)
return mSize;
c = _toLowerCase(c);
for (size_t i = endIndex + 1; i > 0; i--)
{
if (_toLowerCase(mData[i - 1]) != c)
return i - 1;
}
return mSize;
}
size_t String::findLastNotOfIgnoreCase(const char* string, size_t endIndex) const
{
size_t len = strlen(string);
if (len > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - len;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (!_equalsIgnoreCase(mData + i - 1, string, len))
return i - 1;
}
return mSize;
}
size_t String::findLastNotOfIgnoreCase(const String& string, size_t endIndex) const
{
if (string.mSize > mSize)
return mSize;
if (endIndex == std::numeric_limits<size_t>::max())
endIndex = mSize - string.mSize;
if (endIndex >= mSize)
return mSize;
for (size_t i = endIndex + 1; i > 0; i--)
{
if (!_equalsIgnoreCase(mData + i - 1, string.mData, string.mSize))
return i - 1;
}
return mSize;
}
DynamicArray<String> String::split(char c) const
{
if (isEmpty())
return { };
DynamicArray<String> parts;
const char* nextPartStart = mData;
for (const char* i = mData; i < mData + mSize; i++)
{
if (*i == c)
{
if (size_t length = i - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
nextPartStart = i + 1;
}
}
if (size_t length = mData + mSize - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
return parts;
}
DynamicArray<String> String::split(const char* string) const
{
size_t len = strlen(string);
if (len > mSize)
return { };
DynamicArray<String> parts;
const char* i = mData;
const char* nextPartStart = mData;
while (i <= mData + mSize - len)
{
if (std::strncmp(string, i, len) == 0)
{
if (size_t length = i - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
nextPartStart = i + len;
i += len;
}
else
{
i++;
}
}
if (size_t length = mData + mSize - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
return parts;
}
DynamicArray<String> String::split(const String& string) const
{
if (string.mSize >= mSize)
return { };
DynamicArray<String> parts;
const char* i = mData;
const char* nextPartStart = mData;
while (i <= mData + mSize - string.mSize)
{
if (std::strncmp(string.mData, i, string.mSize) == 0)
{
if (size_t length = i - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
nextPartStart = i + string.mSize;
i += string.mSize;
}
else
{
i++;
}
}
if (size_t length = mData + mSize - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
return parts;
}
DynamicArray<String> String::splitIgnoreCase(char c) const
{
if (isEmpty())
return { };
DynamicArray<String> parts;
c = _toLowerCase(c);
const char* nextPartStart = mData;
for (const char* i = mData; i < mData + mSize; i++)
{
if (_toLowerCase(*i) == c)
{
if (size_t length = i - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
nextPartStart = i + 1;
}
}
if (size_t length = mData + mSize - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
return parts;
}
DynamicArray<String> String::splitIgnoreCase(const char* string) const
{
size_t len = strlen(string);
if (len >= mSize)
return { };
DynamicArray<String> parts;
const char* i = mData;
const char* nextPartStart = mData;
while (i <= mData + mSize - len)
{
if (_equalsIgnoreCase(string, i, len))
{
if (size_t length = i - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
nextPartStart = i + len;
i += len;
}
else
{
i++;
}
}
if (size_t length = mData + mSize - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
return parts;
}
DynamicArray<String> String::splitIgnoreCase(const String& string) const
{
if (string.mSize >= mSize)
return { };
DynamicArray<String> parts;
const char* i = mData;
const char* nextPartStart = mData;
while (i <= mData + mSize - string.mSize)
{
if (_equalsIgnoreCase(string.mData, i, string.mSize))
{
if (size_t length = i - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
nextPartStart = i + string.mSize;
i += string.mSize;
}
else
{
i++;
}
}
if (size_t length = mData + mSize - nextPartStart;
length > 0)
{
parts.add(nextPartStart, length);
}
return parts;
}
String String::subString(size_t beginIndex) const
{
SN_ASSERT(beginIndex <= mSize, "beginIndex must be less than size");
return String(mData + beginIndex, mSize - beginIndex);
}
String String::subString(size_t beginIndex, size_t endIndex) const
{
SN_ASSERT(beginIndex <= mSize, "beginIndex must be less than size");
SN_ASSERT(endIndex <= mSize, "endIndex must be less than size");
SN_ASSERT(endIndex >= beginIndex, "endIndex must be >= beginIndex");
return String(mData + beginIndex, endIndex - beginIndex);
}
String String::trim() const
{
size_t firstNotWhiteSpace = 0;
size_t LastNotWhiteSpace = 0;
for (size_t i = 0; i < mSize; i++)
{
if (!_isWhitespace(mData[i]))
{
firstNotWhiteSpace = i;
break;
}
}
for (size_t i = mSize; i > 0; i--)
{
if (!_isWhitespace(mData[i - 1]))
{
LastNotWhiteSpace = i - 1;
break;
}
}
return subString(firstNotWhiteSpace, LastNotWhiteSpace + 1);
}
String String::toLowerCase() const
{
String string = String(mSize);
for (size_t i = 0; i < mSize; i++)
string[i] = _toLowerCase(mData[i]);
return string;
}
String String::toUpperCase() const
{
String string = String(mSize);
for (size_t i = 0; i < mSize; i++)
string[i] = _toUpperCase(mData[i]);
return string;
}
char& String::get(size_t index)
{
SN_ASSERT(index < mSize, "Index out of range");
return mData[index];
}
const char& String::get(size_t index) const
{
SN_ASSERT(index < mSize, "Index out of range");
return mData[index];
}
String String::valueOf(bool value)
{
return value ? String("true", 4) : String("false", 5);
}
String String::valueOf(char value, int base)
{
return _integerToString<char>(value, base);
}
String String::valueOf(unsigned char value, int base)
{
return _integerToString<unsigned char>(value, base);
}
String String::valueOf(short value, int base)
{
return _integerToString<short>(value, base);
}
String String::valueOf(unsigned short value, int base)
{
return _integerToString<unsigned short>(value, base);
}
String String::valueOf(int value, int base)
{
return _integerToString<int>(value, base);
}
String String::valueOf(unsigned int value, int base)
{
return _integerToString<unsigned int>(value, base);
}
String String::valueOf(long value, int base)
{
return _integerToString<long>(value, base);
}
String String::valueOf(unsigned long value, int base)
{
return _integerToString<unsigned long>(value, base);
}
String String::valueOf(long long value, int base)
{
return _integerToString<long long>(value, base);
}
String String::valueOf(unsigned long long value, int base)
{
return _integerToString<unsigned long long>(value, base);
}
String String::valueOf(float value, bool scientific)
{
return _floatToString<float>(value, scientific);
}
String String::valueOf(double value, bool scientific)
{
return _floatToString<double>(value, scientific);
}
String String::valueOf(long double value, bool scientific)
{
return _floatToString<long double>(value, scientific);
}
size_t String::_replaceFirst(char oldChar, char newChar, size_t startIndex)
{
size_t index = findFirstOf(oldChar, startIndex);
if (index != mSize)
mData[index] = newChar;
return index;
}
size_t String::_replaceFirst(const char* oldString, const char* newString, size_t startIndex)
{
size_t oldLen = strlen(oldString);
size_t newLen = strlen(newString);
size_t index = findFirstOf(oldString, startIndex);
if (index == mSize)
return mSize;
if (int deltaLen = static_cast<int>(newLen - oldLen);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString, newLen);
std::memcpy(newData + index + newLen, mData + index + oldLen, mSize - (index + oldLen));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString, newLen);
}
return index;
}
size_t String::_replaceFirst(const String& oldString, const String& newString, size_t startIndex)
{
size_t index = findFirstOf(oldString, startIndex);
if (index == mSize)
return mSize;
if (int deltaLen = static_cast<int>(newString.mSize - oldString.mSize);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString.mData, newString.mSize);
std::memcpy(newData + index + newString.mSize, mData + index + oldString.mSize, mSize - (index + oldString.mSize));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString.mData, newString.mSize);
}
return index;
}
size_t String::_replaceFirstIgnoreCase(char oldChar, char newChar, size_t startIndex)
{
size_t index = findFirstOfIgnoreCase(oldChar, startIndex);
if (index != mSize)
mData[index] = newChar;
return index;
}
size_t String::_replaceFirstIgnoreCase(const char* oldString, const char* newString, size_t startIndex)
{
size_t oldLen = strlen(oldString);
size_t newLen = strlen(newString);
size_t index = findFirstOfIgnoreCase(oldString, startIndex);
if (index == mSize)
return mSize;
if (int deltaLen = static_cast<int>(newLen - oldLen);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString, newLen);
std::memcpy(newData + index + newLen, mData + index + oldLen, mSize - (index + oldLen));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString, newLen);
}
return index;
}
size_t String::_replaceFirstIgnoreCase(const String& oldString, const String& newString, size_t startIndex)
{
size_t index = findFirstOfIgnoreCase(oldString, startIndex);
if (index == mSize)
return mSize;
if (int deltaLen = static_cast<int>(newString.mSize - oldString.mSize);
deltaLen != 0)
{
char* newData = new char[mSize + deltaLen + 1];
std::memcpy(newData, mData, index);
std::memcpy(newData + index, newString.mData, newString.mSize);
std::memcpy(newData + index + newString.mSize, mData + index + oldString.mSize, mSize - (index + oldString.mSize));
delete[] mData;
mData = newData;
mSize += deltaLen;
mData[mSize] = '\0';
}
else
{
std::memcpy(mData + index, newString.mData, newString.mSize);
}
return index;
}
std::ostream& operator<<(std::ostream& stream, const String& string)
{
stream << string.getData();
return stream;
}
bool operator<<(String& string, std::istream& file)
{
size_t posBefore = file.tellg();
file.seekg(0, file.end);
size_t fileSize = file.tellg();
if (fileSize == -1)
return false;
file.seekg(0, file.beg);
string.setSize(fileSize);
file.read(string.getData(), fileSize);
file.seekg(posBefore, file.beg);
return true;
}
bool operator<<(String& string, std::istream&& file)
{
size_t posBefore = file.tellg();
file.seekg(0, file.end);
size_t fileSize = file.tellg();
if (fileSize == -1)
return false;
file.seekg(0, file.beg);
string.setSize(fileSize);
file.read(string.getData(), fileSize);
file.seekg(posBefore, file.beg);
return true;
}
String operator+(const char* string1, const String& string2)
{
size_t len = strlen(string1);
String string = String(len + string2.getSize());
std::memcpy(string.getData(), string1, len);
std::memcpy(string.getData() + len, string2.getData(), string2.getSize());
return string;
}
String operator+(const String& string1, const char* string2)
{
size_t len = strlen(string2);
String string = String(string1.getSize() + len);
std::memcpy(string.getData(), string1.getData(), string1.getSize());
std::memcpy(string.getData() + string1.getSize(), string2, len);
return string;
}
String operator+(const String& string1, const String& string2)
{
String string = String(string1.getSize() + string2.getSize());
std::memcpy(string.getData(), string1.getData(), string1.getSize());
std::memcpy(string.getData() + string1.getSize(), string2.getData(), string2.getSize());
return string;
}
String operator+(const String& string1, char c)
{
String string = String(string1.getSize() + 1);
std::memcpy(string.getData(), string1.getData(), string1.getSize());
string[string1.getSize()] = c;
return string;
}
String operator+(char c, const String& string1)
{
String string = String(string1.getSize() + 1);
string[0] = c;
std::memcpy(string.getData() + 1, string1.getData(), string1.getSize());
return string;
}
} // namespace sonic
| [
"[email protected]"
] | |
249710b09efb4c7ccb7979f07cbbe3145a47e908 | 8bac4ac361528361486654fc375e1e07e2cd4e8a | /color/color.cc | 5b6d5411ca9ed77f930ef23a02b4ad750f159766 | [
"BSD-3-Clause"
] | permissive | chokobole/color | c042fc563d9d019101e5e7a6b5d706fa57a0ecf2 | 703ae9e1a30868cecd6bb0962c475a15c656b109 | refs/heads/master | 2020-12-02T15:29:42.482349 | 2020-01-02T05:35:42 | 2020-01-03T06:59:12 | 231,049,660 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,196 | cc | // Copyright (c) 2019 The Color Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "color/color.h"
#include "absl/strings/str_format.h"
#include "absl/strings/str_split.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
namespace color {
namespace {
// 0 ~ 255
template <typename T,
std::enable_if_t<std::is_same<T, uint8_t>::value>* = nullptr>
bool StringToNumber(absl::string_view input, uint8_t* number) {
unsigned n;
if (!base::StringToUint(input, &n)) return false;
if (n > 255) return false;
*number = static_cast<uint8_t>(n);
return true;
}
template <typename T,
std::enable_if_t<std::is_same<T, float>::value>* = nullptr>
bool StringToNumber(absl::string_view input, float* number) {
float n;
if (!base::StringToFloat(input, &n)) return false;
if (n > 1) return false;
*number = n;
return true;
}
// Parse comma separated numbers.
template <size_t N, typename T>
bool ParseCommaSeparatedNumbers(absl::string_view* input, T* numbers) {
std::vector<absl::string_view> v =
absl::StrSplit(*input, ',', absl::SkipWhitespace());
if (v.size() != N) return false;
T n_temps[N];
for (size_t i = 0; i < N; ++i) {
if (!StringToNumber<T>(v[i], &n_temps[i])) return false;
}
for (size_t i = 0; i < N; ++i) {
numbers[i] = n_temps[i];
}
return true;
}
bool ParseRgbNumbers(absl::string_view* input, uint8_t* numbers) {
return ParseCommaSeparatedNumbers<3>(input, numbers);
}
bool ParseRgbaNumbers(absl::string_view* input, uint8_t* numbers) {
return ParseCommaSeparatedNumbers<4>(input, numbers);
}
bool ParseHsvNumbers(absl::string_view* input, float* numbers) {
Hsv hsv;
if (!ParseCommaSeparatedNumbers<3>(input, hsv.data.array)) return false;
if (!hsv.IsValid()) return false;
memcpy(numbers, hsv.data.array, sizeof(float) * 3);
return true;
}
bool ParseHsvaNumbers(absl::string_view* input, float* numbers) {
Hsv hsv;
if (!ParseCommaSeparatedNumbers<4>(input, hsv.data.array)) return false;
if (!hsv.IsValid()) return false;
memcpy(numbers, hsv.data.array, sizeof(float) * 4);
return true;
}
bool ConsumeHex(absl::string_view* input, uint8_t* c) {
absl::string_view c_sv(input->data(), 2);
uint32_t n;
if (!base::HexStringToUint(c_sv, &n)) return false;
if (n > 255) return false;
*c = static_cast<uint8_t>(n);
input->remove_prefix(2);
return true;
}
bool ConsumeHexRgba(absl::string_view* input, uint8_t* r, uint8_t* g,
uint8_t* b, uint8_t* a) {
uint8_t r_temp;
uint8_t g_temp;
uint8_t b_temp;
uint8_t a_temp = 255;
size_t len = input->length();
if (len == 6 || len == 8) {
if (!(ConsumeHex(input, &r_temp) && ConsumeHex(input, &g_temp) &&
ConsumeHex(input, &b_temp)))
return false;
if (len == 8) {
if (!ConsumeHex(input, &a_temp)) return false;
}
} else {
return false;
}
*r = r_temp;
*g = g_temp;
*b = b_temp;
*a = a_temp;
return true;
}
} // namespace
std::string Rgb::ToString() const { return ToRgbaString(); }
std::string Rgb::ToRgbString() const {
return absl::StrFormat("rgb(%u, %u, %u)", data.r, data.g, data.b);
}
std::string Rgb::ToRgbaString() const {
return absl::StrFormat("rgba(%u, %u, %u, %u)", data.r, data.g, data.b,
data.a);
}
std::string Rgb::ToRgbHexString() const {
return absl::StrFormat("#%02x%02x%02x", data.r, data.g, data.b);
}
std::string Rgb::ToRgbaHexString() const {
return absl::StrFormat("#%02x%02x%02x%02x", data.r, data.g, data.b, data.a);
}
bool Rgb::FromString(const std::string& text) {
absl::string_view input(text);
if (base::ConsumePrefix(&input, "rgb(") && base::ConsumeSuffix(&input, ")")) {
if (ParseRgbNumbers(&input, data.array)) {
data.a = 255;
return true;
}
} else if (base::ConsumePrefix(&input, "rgba(") &&
base::ConsumeSuffix(&input, ")")) {
return ParseRgbaNumbers(&input, data.array);
} else if (base::ConsumePrefix(&input, "#")) {
return ConsumeHexRgba(&input, &data.r, &data.g, &data.b, &data.a);
}
return false;
}
std::ostream& operator<<(std::ostream& os, const Rgb& rgb) {
return os << rgb.ToString();
}
std::string Hsv::ToString() const { return ToHsvaString(); }
std::string Hsv::ToHsvString() const {
return absl::StrFormat("hsv(%f, %f, %f)", data.h, data.s, data.v);
}
std::string Hsv::ToHsvaString() const {
return absl::StrFormat("hsva(%f, %f, %f, %f)", data.h, data.s, data.v,
data.a);
}
bool Hsv::FromString(const std::string& text) {
absl::string_view input(text);
if (base::ConsumePrefix(&input, "hsv(") && base::ConsumeSuffix(&input, ")")) {
if (ParseHsvNumbers(&input, data.array)) {
data.a = 1;
return true;
}
} else if (base::ConsumePrefix(&input, "hsva(") &&
base::ConsumeSuffix(&input, ")")) {
return ParseHsvaNumbers(&input, data.array);
} else {
return false;
}
return false;
}
std::ostream& operator<<(std::ostream& os, const Hsv& hsv) {
return os << hsv.ToString();
}
} // namespace color | [
"[email protected]"
] | |
201bc93539545180545773d82c2f41dd664b3e80 | ec7d1269672e09ff8ff2720b60f350677c8c15f1 | /arm-linux-gcc-4.5.1/4.5.1/arm-none-linux-gnueabi/sys-root/usr/include/c++/4.5.1/tr1/hashtable.h | 96ffa144bada2b6867a36dea11a4deeb074cd803 | [] | no_license | ElevenH/First-Blood | 6a4d8ed48e93660c44b0623405bf30530eeea16b | 44ee02b8126c5609dc78d917633bde9caf4d0d68 | refs/heads/master | 2022-02-07T16:20:43.634359 | 2022-01-28T08:04:42 | 2022-01-28T08:04:42 | 46,023,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 41,559 | h | // TR1 hashtable.h header -*- C++ -*-
// Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software;you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation;either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY;without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
// <http://www.gnu.org/licenses/>.
/** @file tr1/hashtable.h
* This is an internal header file, included by other library headers.
* You should not attempt to use it directly.
*/
#ifndef _GLIBCXX_TR1_HASHTABLE_H
#define _GLIBCXX_TR1_HASHTABLE_H 1
#pragma GCC system_header
#include <tr1/hashtable_policy.h>
namespace std
{
namespace tr1
{
// Class template _Hashtable, class definition.
// Meaning of class template _Hashtable's template parameters
// _Key and _Value: arbitrary CopyConstructible types.
// _Allocator: an allocator type ([lib.allocator.requirements]) whose
// value type is Value. As a conforming extension, we allow for
// value type != Value.
// _ExtractKey: function object that takes a object of type Value
// and returns a value of type _Key.
// _Equal: function object that takes two objects of type k and returns
// a bool-like value that is true if the two objects are considered equal.
// _H1: the hash function. A unary function object with argument type
// Key and result type size_t. Return values should be distributed
// over the entire range [0, numeric_limits<size_t>:::max()].
// _H2: the range-hashing function (in the terminology of Tavori and
// Dreizin). A binary function object whose argument types and result
// type are all size_t. Given arguments r and N, the return value is
// in the range [0, N).
// _Hash: the ranged hash function (Tavori and Dreizin). A binary function
// whose argument types are _Key and size_t and whose result type is
// size_t. Given arguments k and N, the return value is in the range
// [0, N). Default: hash(k, N) = h2(h1(k), N). If _Hash is anything other
// than the default, _H1 and _H2 are ignored.
// _RehashPolicy: Policy class with three members, all of which govern
// the bucket count. _M_next_bkt(n) returns a bucket count no smaller
// than n. _M_bkt_for_elements(n) returns a bucket count appropriate
// for an element count of n. _M_need_rehash(n_bkt, n_elt, n_ins)
// determines whether, if the current bucket count is n_bkt and the
// current element count is n_elt, we need to increase the bucket
// count. If so, returns make_pair(true, n), where n is the new
// bucket count. If not, returns make_pair(false, <anything>).
// ??? Right now it is hard-wired that the number of buckets never
// shrinks. Should we allow _RehashPolicy to change that?
// __cache_hash_code: bool. true if we store the value of the hash
// function along with the value. This is a time-space tradeoff.
// Storing it may improve lookup speed by reducing the number of times
// we need to call the Equal function.
// __constant_iterators: bool. true if iterator and const_iterator are
// both constant iterator types. This is true for unordered_set and
// unordered_multiset, false for unordered_map and unordered_multimap.
// __unique_keys: bool. true if the return value of _Hashtable::count(k)
// is always at most one, false if it may be an arbitrary number. This
// true for unordered_set and unordered_map, false for unordered_multiset
// and unordered_multimap.
template<typename _Key, typename _Value, typename _Allocator,
typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash,
typename _RehashPolicy,
bool __cache_hash_code,
bool __constant_iterators,
bool __unique_keys>
class _Hashtable
: public __detail::_Rehash_base<_RehashPolicy,
_Hashtable<_Key, _Value, _Allocator,
_ExtractKey,
_Equal, _H1, _H2, _Hash,
_RehashPolicy,
__cache_hash_code,
__constant_iterators,
__unique_keys> >,
public __detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Equal,
_H1, _H2, _Hash, __cache_hash_code>,
public __detail::_Map_base<_Key, _Value, _ExtractKey, __unique_keys,
_Hashtable<_Key, _Value, _Allocator,
_ExtractKey,
_Equal, _H1, _H2, _Hash,
_RehashPolicy,
__cache_hash_code,
__constant_iterators,
__unique_keys> >
{
public:
typedef _Allocator allocator_type;
typedef _Value value_type;
typedef _Key key_type;
typedef _Equal key_equal;
// mapped_type, if present, comes from _Map_base.
// hasher, if present, comes from _Hash_code_base.
typedef typename _Allocator::difference_type difference_type;
typedef typename _Allocator::size_type size_type;
typedef typename _Allocator::pointer pointer;
typedef typename _Allocator::const_pointer const_pointer;
typedef typename _Allocator::reference reference;
typedef typename _Allocator::const_reference const_reference;
typedef __detail::_Node_iterator<value_type, __constant_iterators,
__cache_hash_code>
local_iterator;
typedef __detail::_Node_const_iterator<value_type,
__constant_iterators,
__cache_hash_code>
const_local_iterator;
typedef __detail::_Hashtable_iterator<value_type, __constant_iterators,
__cache_hash_code>
iterator;
typedef __detail::_Hashtable_const_iterator<value_type,
__constant_iterators,
__cache_hash_code>
const_iterator;
template<typename _Key2, typename _Value2, typename _Ex2, bool __unique2,
typename _Hashtable2>
friend struct __detail::_Map_base;
private:
typedef __detail::_Hash_node<_Value, __cache_hash_code> _Node;
typedef typename _Allocator::template rebind<_Node>::other
_Node_allocator_type;
typedef typename _Allocator::template rebind<_Node*>::other
_Bucket_allocator_type;
typedef typename _Allocator::template rebind<_Value>::other
_Value_allocator_type;
_Node_allocator_type _M_node_allocator;
_Node** _M_buckets;
size_type _M_bucket_count;
size_type _M_element_count;
_RehashPolicy _M_rehash_policy;
_Node*
_M_allocate_node(const value_type& __v);
void
_M_deallocate_node(_Node* __n);
void
_M_deallocate_nodes(_Node**, size_type);
_Node**
_M_allocate_buckets(size_type __n);
void
_M_deallocate_buckets(_Node**, size_type __n);
public:
// Constructor, destructor, assignment, swap
_Hashtable(size_type __bucket_hint,
const _H1&, const _H2&, const _Hash&,
const _Equal&, const _ExtractKey&,
const allocator_type&);
template<typename _InputIterator>
_Hashtable(_InputIterator __first, _InputIterator __last,
size_type __bucket_hint,
const _H1&, const _H2&, const _Hash&,
const _Equal&, const _ExtractKey&,
const allocator_type&);
_Hashtable(const _Hashtable&);
_Hashtable&
operator=(const _Hashtable&);
~_Hashtable();
void swap(_Hashtable&);
// Basic container operations
iterator
begin()
{
iterator __i(_M_buckets);
if (!__i._M_cur_node)
__i._M_incr_bucket();
return __i;
}
const_iterator
begin() const
{
const_iterator __i(_M_buckets);
if (!__i._M_cur_node)
__i._M_incr_bucket();
return __i;
}
iterator
end()
{ return iterator(_M_buckets + _M_bucket_count);}
const_iterator
end() const
{ return const_iterator(_M_buckets + _M_bucket_count);}
size_type
size() const
{ return _M_element_count;}
bool
empty() const
{ return size() == 0;}
allocator_type
get_allocator() const
{ return allocator_type(_M_node_allocator);}
_Value_allocator_type
_M_get_Value_allocator() const
{ return _Value_allocator_type(_M_node_allocator);}
size_type
max_size() const
{ return _M_node_allocator.max_size();}
// Observers
key_equal
key_eq() const
{ return this->_M_eq;}
// hash_function, if present, comes from _Hash_code_base.
// Bucket operations
size_type
bucket_count() const
{ return _M_bucket_count;}
size_type
max_bucket_count() const
{ return max_size();}
size_type
bucket_size(size_type __n) const
{ return std::distance(begin(__n), end(__n));}
size_type
bucket(const key_type& __k) const
{
return this->_M_bucket_index(__k, this->_M_hash_code(__k),
bucket_count());
}
local_iterator
begin(size_type __n)
{ return local_iterator(_M_buckets[__n]);}
local_iterator
end(size_type)
{ return local_iterator(0);}
const_local_iterator
begin(size_type __n) const
{ return const_local_iterator(_M_buckets[__n]);}
const_local_iterator
end(size_type) const
{ return const_local_iterator(0);}
float
load_factor() const
{
return static_cast<float>(size()) / static_cast<float>(bucket_count());
}
// max_load_factor, if present, comes from _Rehash_base.
// Generalization of max_load_factor. Extension, not found in TR1. Only
// useful if _RehashPolicy is something other than the default.
const _RehashPolicy&
__rehash_policy() const
{ return _M_rehash_policy;}
void
__rehash_policy(const _RehashPolicy&);
// Lookup.
iterator
find(const key_type& __k);
const_iterator
find(const key_type& __k) const;
size_type
count(const key_type& __k) const;
std::pair<iterator, iterator>
equal_range(const key_type& __k);
std::pair<const_iterator, const_iterator>
equal_range(const key_type& __k) const;
private: // Find, insert and erase helper functions
// ??? This dispatching is a workaround for the fact that we don't
// have partial specialization of member templates;it would be
// better to just specialize insert on __unique_keys. There may be a
// cleaner workaround.
typedef typename __gnu_cxx::__conditional_type<__unique_keys,
std::pair<iterator, bool>, iterator>::__type
_Insert_Return_Type;
typedef typename __gnu_cxx::__conditional_type<__unique_keys,
std::_Select1st<_Insert_Return_Type>,
std::_Identity<_Insert_Return_Type>
>::__type
_Insert_Conv_Type;
_Node*
_M_find_node(_Node*, const key_type&,
typename _Hashtable::_Hash_code_type) const;
iterator
_M_insert_bucket(const value_type&, size_type,
typename _Hashtable::_Hash_code_type);
std::pair<iterator, bool>
_M_insert(const value_type&, std::tr1::true_type);
iterator
_M_insert(const value_type&, std::tr1::false_type);
void
_M_erase_node(_Node*, _Node**);
public:
// Insert and erase
_Insert_Return_Type
insert(const value_type& __v)
{ return _M_insert(__v, std::tr1::integral_constant<bool,
__unique_keys>());}
iterator
insert(iterator, const value_type& __v)
{ return iterator(_Insert_Conv_Type()(this->insert(__v)));}
const_iterator
insert(const_iterator, const value_type& __v)
{ return const_iterator(_Insert_Conv_Type()(this->insert(__v)));}
template<typename _InputIterator>
void
insert(_InputIterator __first, _InputIterator __last);
iterator
erase(iterator);
const_iterator
erase(const_iterator);
size_type
erase(const key_type&);
iterator
erase(iterator, iterator);
const_iterator
erase(const_iterator, const_iterator);
void
clear();
// Set number of buckets to be appropriate for container of n element.
void rehash(size_type __n);
private:
// Unconditionally change size of bucket array to n.
void _M_rehash(size_type __n);
};
// Definitions of class template _Hashtable's out-of-line member functions.
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::_Node*
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_allocate_node(const value_type& __v)
{
_Node* __n = _M_node_allocator.allocate(1);
__try
{
_M_get_Value_allocator().construct(&__n->_M_v, __v);
__n->_M_next = 0;
return __n;
}
__catch(...)
{
_M_node_allocator.deallocate(__n, 1);
__throw_exception_again;
}
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_deallocate_node(_Node* __n)
{
_M_get_Value_allocator().destroy(&__n->_M_v);
_M_node_allocator.deallocate(__n, 1);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_deallocate_nodes(_Node** __array, size_type __n)
{
for (size_type __i = 0;__i < __n;++__i)
{
_Node* __p = __array[__i];
while (__p)
{
_Node* __tmp = __p;
__p = __p->_M_next;
_M_deallocate_node(__tmp);
}
__array[__i] = 0;
}
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::_Node**
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_allocate_buckets(size_type __n)
{
_Bucket_allocator_type __alloc(_M_node_allocator);
// We allocate one extra bucket to hold a sentinel, an arbitrary
// non-null pointer. Iterator increment relies on this.
_Node** __p = __alloc.allocate(__n + 1);
std::fill(__p, __p + __n, (_Node*) 0);
__p[__n] = reinterpret_cast<_Node*>(0x1000);
return __p;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_deallocate_buckets(_Node** __p, size_type __n)
{
_Bucket_allocator_type __alloc(_M_node_allocator);
__alloc.deallocate(__p, __n + 1);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_Hashtable(size_type __bucket_hint,
const _H1& __h1, const _H2& __h2, const _Hash& __h,
const _Equal& __eq, const _ExtractKey& __exk,
const allocator_type& __a)
: __detail::_Rehash_base<_RehashPolicy, _Hashtable>(),
__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Equal,
_H1, _H2, _Hash, __chc>(__exk, __eq,
__h1, __h2, __h),
__detail::_Map_base<_Key, _Value, _ExtractKey, __uk, _Hashtable>(),
_M_node_allocator(__a),
_M_bucket_count(0),
_M_element_count(0),
_M_rehash_policy()
{
_M_bucket_count = _M_rehash_policy._M_next_bkt(__bucket_hint);
_M_buckets = _M_allocate_buckets(_M_bucket_count);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
template<typename _InputIterator>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_Hashtable(_InputIterator __f, _InputIterator __l,
size_type __bucket_hint,
const _H1& __h1, const _H2& __h2, const _Hash& __h,
const _Equal& __eq, const _ExtractKey& __exk,
const allocator_type& __a)
: __detail::_Rehash_base<_RehashPolicy, _Hashtable>(),
__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Equal,
_H1, _H2, _Hash, __chc>(__exk, __eq,
__h1, __h2, __h),
__detail::_Map_base<_Key, _Value, _ExtractKey, __uk, _Hashtable>(),
_M_node_allocator(__a),
_M_bucket_count(0),
_M_element_count(0),
_M_rehash_policy()
{
_M_bucket_count = std::max(_M_rehash_policy._M_next_bkt(__bucket_hint),
_M_rehash_policy.
_M_bkt_for_elements(__detail::
__distance_fw(__f,
__l)));
_M_buckets = _M_allocate_buckets(_M_bucket_count);
__try
{
for (;__f != __l;++__f)
this->insert(*__f);
}
__catch(...)
{
clear();
_M_deallocate_buckets(_M_buckets, _M_bucket_count);
__throw_exception_again;
}
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_Hashtable(const _Hashtable& __ht)
: __detail::_Rehash_base<_RehashPolicy, _Hashtable>(__ht),
__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Equal,
_H1, _H2, _Hash, __chc>(__ht),
__detail::_Map_base<_Key, _Value, _ExtractKey, __uk, _Hashtable>(__ht),
_M_node_allocator(__ht._M_node_allocator),
_M_bucket_count(__ht._M_bucket_count),
_M_element_count(__ht._M_element_count),
_M_rehash_policy(__ht._M_rehash_policy)
{
_M_buckets = _M_allocate_buckets(_M_bucket_count);
__try
{
for (size_type __i = 0;__i < __ht._M_bucket_count;++__i)
{
_Node* __n = __ht._M_buckets[__i];
_Node** __tail = _M_buckets + __i;
while (__n)
{
*__tail = _M_allocate_node(__n->_M_v);
this->_M_copy_code(*__tail, __n);
__tail = &((*__tail)->_M_next);
__n = __n->_M_next;
}
}
}
__catch(...)
{
clear();
_M_deallocate_buckets(_M_buckets, _M_bucket_count);
__throw_exception_again;
}
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>&
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
operator=(const _Hashtable& __ht)
{
_Hashtable __tmp(__ht);
this->swap(__tmp);
return *this;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
~_Hashtable()
{
clear();
_M_deallocate_buckets(_M_buckets, _M_bucket_count);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
swap(_Hashtable& __x)
{
// The only base class with member variables is hash_code_base. We
// define _Hash_code_base::_M_swap because different specializations
// have different members.
__detail::_Hash_code_base<_Key, _Value, _ExtractKey, _Equal,
_H1, _H2, _Hash, __chc>::_M_swap(__x);
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 431. Swapping containers with unequal allocators.
std::__alloc_swap<_Node_allocator_type>::_S_do_it(_M_node_allocator,
__x._M_node_allocator);
std::swap(_M_rehash_policy, __x._M_rehash_policy);
std::swap(_M_buckets, __x._M_buckets);
std::swap(_M_bucket_count, __x._M_bucket_count);
std::swap(_M_element_count, __x._M_element_count);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
__rehash_policy(const _RehashPolicy& __pol)
{
_M_rehash_policy = __pol;
size_type __n_bkt = __pol._M_bkt_for_elements(_M_element_count);
if (__n_bkt > _M_bucket_count)
_M_rehash(__n_bkt);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
find(const key_type& __k)
{
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
_Node* __p = _M_find_node(_M_buckets[__n], __k, __code);
return __p ? iterator(__p, _M_buckets + __n) : this->end();
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::const_iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
find(const key_type& __k) const
{
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
_Node* __p = _M_find_node(_M_buckets[__n], __k, __code);
return __p ? const_iterator(__p, _M_buckets + __n) : this->end();
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::size_type
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
count(const key_type& __k) const
{
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
std::size_t __result = 0;
for (_Node* __p = _M_buckets[__n];__p;__p = __p->_M_next)
if (this->_M_compare(__k, __code, __p))
++__result;
return __result;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
std::pair<typename _Hashtable<_Key, _Value, _Allocator,
_ExtractKey, _Equal, _H1,
_H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator,
typename _Hashtable<_Key, _Value, _Allocator,
_ExtractKey, _Equal, _H1,
_H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
equal_range(const key_type& __k)
{
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
_Node** __head = _M_buckets + __n;
_Node* __p = _M_find_node(*__head, __k, __code);
if (__p)
{
_Node* __p1 = __p->_M_next;
for (;__p1;__p1 = __p1->_M_next)
if (!this->_M_compare(__k, __code, __p1))
break;
iterator __first(__p, __head);
iterator __last(__p1, __head);
if (!__p1)
__last._M_incr_bucket();
return std::make_pair(__first, __last);
}
else
return std::make_pair(this->end(), this->end());
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
std::pair<typename _Hashtable<_Key, _Value, _Allocator,
_ExtractKey, _Equal, _H1,
_H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::const_iterator,
typename _Hashtable<_Key, _Value, _Allocator,
_ExtractKey, _Equal, _H1,
_H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::const_iterator>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
equal_range(const key_type& __k) const
{
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
_Node** __head = _M_buckets + __n;
_Node* __p = _M_find_node(*__head, __k, __code);
if (__p)
{
_Node* __p1 = __p->_M_next;
for (;__p1;__p1 = __p1->_M_next)
if (!this->_M_compare(__k, __code, __p1))
break;
const_iterator __first(__p, __head);
const_iterator __last(__p1, __head);
if (!__p1)
__last._M_incr_bucket();
return std::make_pair(__first, __last);
}
else
return std::make_pair(this->end(), this->end());
}
// Find the node whose key compares equal to k, beginning the search
// at p (usually the head of a bucket). Return nil if no node is found.
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey,
_Equal, _H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::_Node*
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_find_node(_Node* __p, const key_type& __k,
typename _Hashtable::_Hash_code_type __code) const
{
for (;__p;__p = __p->_M_next)
if (this->_M_compare(__k, __code, __p))
return __p;
return false;
}
// Insert v in bucket n (assumes no element with its key already present).
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_insert_bucket(const value_type& __v, size_type __n,
typename _Hashtable::_Hash_code_type __code)
{
std::pair<bool, std::size_t> __do_rehash
= _M_rehash_policy._M_need_rehash(_M_bucket_count,
_M_element_count, 1);
// Allocate the new node before doing the rehash so that we don't
// do a rehash if the allocation throws.
_Node* __new_node = _M_allocate_node(__v);
__try
{
if (__do_rehash.first)
{
const key_type& __k = this->_M_extract(__v);
__n = this->_M_bucket_index(__k, __code, __do_rehash.second);
_M_rehash(__do_rehash.second);
}
__new_node->_M_next = _M_buckets[__n];
this->_M_store_code(__new_node, __code);
_M_buckets[__n] = __new_node;
++_M_element_count;
return iterator(__new_node, _M_buckets + __n);
}
__catch(...)
{
_M_deallocate_node(__new_node);
__throw_exception_again;
}
}
// Insert v if no element with its key is already present.
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
std::pair<typename _Hashtable<_Key, _Value, _Allocator,
_ExtractKey, _Equal, _H1,
_H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator, bool>
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_insert(const value_type& __v, std::tr1::true_type)
{
const key_type& __k = this->_M_extract(__v);
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
size_type __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
if (_Node* __p = _M_find_node(_M_buckets[__n], __k, __code))
return std::make_pair(iterator(__p, _M_buckets + __n), false);
return std::make_pair(_M_insert_bucket(__v, __n, __code), true);
}
// Insert v unconditionally.
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_insert(const value_type& __v, std::tr1::false_type)
{
std::pair<bool, std::size_t> __do_rehash
= _M_rehash_policy._M_need_rehash(_M_bucket_count,
_M_element_count, 1);
if (__do_rehash.first)
_M_rehash(__do_rehash.second);
const key_type& __k = this->_M_extract(__v);
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
size_type __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
// First find the node, avoid leaking new_node if compare throws.
_Node* __prev = _M_find_node(_M_buckets[__n], __k, __code);
_Node* __new_node = _M_allocate_node(__v);
if (__prev)
{
__new_node->_M_next = __prev->_M_next;
__prev->_M_next = __new_node;
}
else
{
__new_node->_M_next = _M_buckets[__n];
_M_buckets[__n] = __new_node;
}
this->_M_store_code(__new_node, __code);
++_M_element_count;
return iterator(__new_node, _M_buckets + __n);
}
// For erase(iterator) and erase(const_iterator).
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_erase_node(_Node* __p, _Node** __b)
{
_Node* __cur = *__b;
if (__cur == __p)
*__b = __cur->_M_next;
else
{
_Node* __next = __cur->_M_next;
while (__next != __p)
{
__cur = __next;
__next = __cur->_M_next;
}
__cur->_M_next = __next->_M_next;
}
_M_deallocate_node(__p);
--_M_element_count;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
template<typename _InputIterator>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
insert(_InputIterator __first, _InputIterator __last)
{
size_type __n_elt = __detail::__distance_fw(__first, __last);
std::pair<bool, std::size_t> __do_rehash
= _M_rehash_policy._M_need_rehash(_M_bucket_count,
_M_element_count, __n_elt);
if (__do_rehash.first)
_M_rehash(__do_rehash.second);
for (;__first != __last;++__first)
this->insert(*__first);
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
erase(iterator __it)
{
iterator __result = __it;
++__result;
_M_erase_node(__it._M_cur_node, __it._M_cur_bucket);
return __result;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::const_iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
erase(const_iterator __it)
{
const_iterator __result = __it;
++__result;
_M_erase_node(__it._M_cur_node, __it._M_cur_bucket);
return __result;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::size_type
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
erase(const key_type& __k)
{
typename _Hashtable::_Hash_code_type __code = this->_M_hash_code(__k);
std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
size_type __result = 0;
_Node** __slot = _M_buckets + __n;
while (*__slot && !this->_M_compare(__k, __code, *__slot))
__slot = &((*__slot)->_M_next);
_Node** __saved_slot = 0;
while (*__slot && this->_M_compare(__k, __code, *__slot))
{
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 526. Is it undefined if a function in the standard changes
// in parameters?
if (&this->_M_extract((*__slot)->_M_v) != &__k)
{
_Node* __p = *__slot;
*__slot = __p->_M_next;
_M_deallocate_node(__p);
--_M_element_count;
++__result;
}
else
{
__saved_slot = __slot;
__slot = &((*__slot)->_M_next);
}
}
if (__saved_slot)
{
_Node* __p = *__saved_slot;
*__saved_slot = __p->_M_next;
_M_deallocate_node(__p);
--_M_element_count;
++__result;
}
return __result;
}
// ??? This could be optimized by taking advantage of the bucket
// structure, but it's not clear that it's worth doing. It probably
// wouldn't even be an optimization unless the load factor is large.
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
erase(iterator __first, iterator __last)
{
while (__first != __last)
__first = this->erase(__first);
return __last;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
typename _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy,
__chc, __cit, __uk>::const_iterator
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
erase(const_iterator __first, const_iterator __last)
{
while (__first != __last)
__first = this->erase(__first);
return __last;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
clear()
{
_M_deallocate_nodes(_M_buckets, _M_bucket_count);
_M_element_count = 0;
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
rehash(size_type __n)
{
_M_rehash(std::max(_M_rehash_policy._M_next_bkt(__n),
_M_rehash_policy._M_bkt_for_elements(_M_element_count
+ 1)));
}
template<typename _Key, typename _Value,
typename _Allocator, typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
bool __chc, bool __cit, bool __uk>
void
_Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
_H1, _H2, _Hash, _RehashPolicy, __chc, __cit, __uk>::
_M_rehash(size_type __n)
{
_Node** __new_array = _M_allocate_buckets(__n);
__try
{
for (size_type __i = 0;__i < _M_bucket_count;++__i)
while (_Node* __p = _M_buckets[__i])
{
std::size_t __new_index = this->_M_bucket_index(__p, __n);
_M_buckets[__i] = __p->_M_next;
__p->_M_next = __new_array[__new_index];
__new_array[__new_index] = __p;
}
_M_deallocate_buckets(_M_buckets, _M_bucket_count);
_M_bucket_count = __n;
_M_buckets = __new_array;
}
__catch(...)
{
// A failure here means that a hash function threw an exception.
// We can't restore the previous state without calling the hash
// function again, so the only sensible recovery is to delete
// everything.
_M_deallocate_nodes(__new_array, __n);
_M_deallocate_buckets(__new_array, __n);
_M_deallocate_nodes(_M_buckets, _M_bucket_count);
_M_element_count = 0;
__throw_exception_again;
}
}
}
}
#endif // _GLIBCXX_TR1_HASHTABLE_H
| [
"[email protected]"
] | |
7f6401d290c66c79daab47657c1186ae63c11113 | 3783865230deac9a7e39eeba19ad571fffa34672 | /Engine/src/core/util/shaders/lamp/LampShader.cpp | 0328637e6e9383b74ee55bccd757b39de6474c47 | [] | no_license | manugildev/opengl-rendering-engine | f18fd2a0a03ad8d92dfc490bf24f337b4ba1f01c | d5f8ba583b1bcd551ca3052c5f8b54a87a06a3ce | refs/heads/master | 2018-11-21T03:44:38.287254 | 2018-10-09T21:22:07 | 2018-10-09T21:22:07 | 109,459,612 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,003 | cpp | #include "LampShader.h"
LampShader *LampShader::create() {
LampShader *p = new LampShader();
p->init();
return p;
}
LampShader::LampShader() : ShaderProgram(VERTEX_FILE, FRAGMENT_FILE) {}
LampShader::~LampShader() {}
void LampShader::bind_attributes() {
ShaderProgram::bind_attribute(0, "vertex_positions");
}
void LampShader::get_all_uniform_locations() {
location_model_mat = get_uniform_location("model_mat");
location_view_mat = get_uniform_location("view_mat");
location_proj_mat = get_uniform_location("proj_mat");
location_object_color = get_uniform_location("object_color");
}
void LampShader::set_model_matrix(glm::mat4 matrix) {
modify_mat4(location_model_mat, matrix);
}
void LampShader::set_view_matrix(glm::mat4 matrix) { modify_mat4(location_view_mat, matrix); }
void LampShader::set_proj_matrix(glm::mat4 matrix) { modify_mat4(location_proj_mat, matrix); }
void LampShader::set_object_color(glm::vec3 object_color) { modify_vec3(location_object_color, object_color); }
| [
"[email protected]"
] | |
ea4c1f815a0e9d467b126543da824a6acdda4ef0 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13863/function13863_schedule_7/function13863_schedule_7_wrapper.cpp | e3b26a62350c8f235b6bc527c5e8e64adab8bcc2 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 926 | cpp | #include "Halide.h"
#include "function13863_schedule_7_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){
Halide::Buffer<int32_t> buf00(65536, 1024);
Halide::Buffer<int32_t> buf0(65536, 1024);
init_buffer(buf0, (int32_t)0);
auto t1 = std::chrono::high_resolution_clock::now();
function13863_schedule_7(buf00.raw_buffer(), buf0.raw_buffer());
auto t2 = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> diff = t2 - t1;
std::ofstream exec_times_file;
exec_times_file.open("../data/programs/function13863/function13863_schedule_7/exec_times.txt", std::ios_base::app);
if (exec_times_file.is_open()){
exec_times_file << diff.count() * 1000000 << "us" <<std::endl;
exec_times_file.close();
}
return 0;
} | [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.